/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

:root {
    --primary: #a30b2d;
    --primary-dark: #820824;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: absolute;
    left: 20px;
}

.auth-buttons {
    position: absolute;
    right: 20px;
}

.nav-logo h2 {
    color: var(--primary);
    font-weight: 700;
}

.nav-logo img {
    height: 28px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}



.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 80px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.hero-note {
    color: #64748b;
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.upload-area {
    text-align: center;
    padding: 20px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.upload-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
}

/* Features Preview */
.features-preview {
    padding: 80px 0;
    background: white;
}

.features-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1e293b;
}

/* Pricing Preview */
.pricing-preview {
    padding: 80px 0;
    background: white;
}

.pricing-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1e293b;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e293b;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: #64748b;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-card li {
    padding: 5px 0;
    color: #64748b;
}

.pricing-note {
    text-align: center;
    color: #64748b;
}

.pricing-note a {
    color: var(--primary);
    text-decoration: none;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #f8fafc;
}

.demo-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1e293b;
}

.demo-section > .container > p {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.demo-form {
    max-width: 600px;
    margin: 0 auto;
}

.upload-zone {
    background: white;
    border: 3px dashed #d1d5db;
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-zone:hover {
    border-color: var(--primary);
    background: #f8fafc;
}

.upload-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.upload-zone h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1e293b;
}



.upload-zone small {
    color: #64748b;
    display: block;
    margin-top: 10px;
}

.demo-results {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
    text-align: center;
}

.loading-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 20px;
}

.loading-progress {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 0.5s ease;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Upload Loading Indicator Styles */
.upload-loading-section {
    margin: 20px 0;
    text-align: center;
}

.upload-loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: #64748b;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 15px;
    color: #f1f5f9;
}

.footer-section p,
.footer-section li {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f1f5f9;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Features Page Styles */
.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.features-detail {
    padding: 80px 0;
}

.feature-category {
    margin-bottom: 60px;
}

.feature-category h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
}

.feature-items {
    display: grid;
    gap: 25px;
}

.feature-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(163, 11, 45, 0.1);
}

.feature-item h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-item > p {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.6;
}

.feature-details {
    margin-top: 15px;
}

.feature-details ul {
    list-style: none;
    padding-left: 0;
}

.feature-details li {
    color: #64748b;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.feature-details li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.features-benefits {
    padding: 80px 0;
    background: #f8fafc;
}

.features-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

.objections {
    padding: 80px 0;
}

.objections h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.nav-menu a.active {
    color: var(--primary);
    font-weight: 600;
}

/* Pricing Page Styles */
.pricing-detail {
    padding: 80px 0;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-hero h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-plan {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-plan:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(163, 11, 45, 0.1);
}

.pricing-plan.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.plan-price span {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 400;
}

.plan-description {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 8px 0;
    color: #374151;
    position: relative;
    padding-left: 25px;
}

.plan-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.plan-features li.unavailable {
    color: #9ca3af;
}

.plan-features li.unavailable:before {
    content: "✗";
    color: #ef4444;
}

.plan-button {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
}

.table-header {
    background: #f8fafc;
    padding: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.table-header h3 {
    color: #1e293b;
    font-size: 1.5rem;
    text-align: center;
}

.table-content {
    overflow-x: auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    min-width: 600px;
}

.table-row {
    display: contents;
}

.table-cell {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.table-cell:first-child {
    font-weight: 600;
    color: #374151;
    background: #fafbfc;
}

.table-cell:not(:first-child) {
    justify-content: center;
    text-align: center;
}

.check-mark {
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.x-mark {
    color: #ef4444;
    font-weight: bold;
    font-size: 1.2rem;
}

.enterprise-section {
    background: #f8fafc;
    padding: 60px 0;
    text-align: center;
}

.enterprise-content {
    max-width: 800px;
    margin: 0 auto;
}

.enterprise-section h3 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.enterprise-section p {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.enterprise-feature {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.enterprise-feature h4 {
    color: #1e293b;
    margin-bottom: 8px;
    font-size: 1rem;
}

.enterprise-feature p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.faq-pricing {
    padding: 80px 0;
    background: white;
}

.faq-pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    justify-items: center;
}



.contact-form {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 80vw;
    max-width: 600px;
}

.contact-form h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 30px;
}

/* .form-group {
    margin-bottom: 25px;
} */

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #374151;
    line-height: 1.5;
}

.checkbox-item input[type="checkbox"] {
    width: 0;
    height: 0;
    margin: 0;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    box-sizing: border-box;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-item:hover .checkmark {
    border-color: var(--primary);
}

.form-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.form-success h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.form-success p {
    color: #64748b;
    line-height: 1.6;
}

.use-cases {
    padding: 80px 0;
    background: #f8fafc;
}

.use-cases h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 50px;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.use-case-card h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.use-case-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.use-case-profile {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.quick-contact {
    padding: 80px 0;
    background: white;
}

.quick-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.quick-contact > .container > p {
    text-align: center;
    color: #64748b;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.quick-templates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.template-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.template-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.template-card h3 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.template-content p {
    color: #374151;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.template-text {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 15px;
    font-family: monospace;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #374151;
    white-space: pre-line;
    margin: 15px 0;
}

.copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--primary-dark);
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-document .section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
}

.legal-document .section:last-child {
    border-bottom: none;
}

.legal-document h2 {
    color: #1e293b;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 3px solid var(--primary);
    padding-top: 20px;
}

.legal-document h3 {
    color: #374151;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.legal-document p {
    color: #4b5563;
    margin-bottom: 15px;
    text-align: justify;
}

.legal-document ul {
    margin: 15px 0 15px 30px;
    color: #4b5563;
}

.legal-document li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-document strong {
    color: #1e293b;
    font-weight: 600;
}

.legal-document a {
    color: var(--primary);
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.highlight-box h3 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-box p {
    margin: 0;
    color: #374151;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .upload-zone {
        padding: 40px 20px;
    }
    
    .contact-form {
        width: 95vw;
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features-preview,
    .how-it-works,
    .pricing-preview,
    .demo-section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Authentication Navigation Styles */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.auth-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.auth-buttons .btn-secondary {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.auth-buttons .btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.auth-buttons .btn-primary {
    background: #3b82f6;
    color: white;
    border: 1px solid #3b82f6;
}

.auth-buttons .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
}

.user-info {
    display: none;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    right: 20px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-menu {
    position: relative;
    cursor: pointer;
}



.user-info {
    padding: 6px 8px;
    border-radius: 8px;
}

.user-info:hover {
    background-color: #f8fafc;
}

.user-info:hover .dropdown,
.user-menu:hover .dropdown,
.user-avatar:hover + .user-menu .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 100;
    margin-top: 0.25rem;
}

.dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.dropdown a:hover {
    background-color: #f8fafc;
}

@media (max-width: 768px) {
    .auth-buttons {
        display: none;
    }
    
    .user-info {
        gap: 0.5rem;
    }
    

}

/* Console Features Section */
.console-features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.console-features .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.console-features h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.console-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.console-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: left;
}

.console-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.console-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.console-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.console-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.console-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.console-cta .btn {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    padding: 0.875rem 2rem;
}

.console-cta p {
    color: #64748b;
    margin: 0;
}

@media (max-width: 768px) {
    .console-features {
        padding: 3rem 0;
    }
    
    .console-features h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .console-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .console-card {
        padding: 1.5rem;
    }
    
    .console-cta .btn {
        width: 100%;
    }
}
