/* Invoices - Modern SaaS Landing Page */

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #0f172a;
    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --success: #10b981;
    --success-light: #d1fae5;
    --success-dark: #047857;
    --error: #ef4444;
    --gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #e0e7ff 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-primary: 0 20px 40px -10px rgba(37, 99, 235, 0.3);
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

/* ==================== Animations ==================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Animation classes */
.animate {
    opacity: 0;
}

.animate.animate-in {
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.animate.fade-up.animate-in {
    animation-name: fadeUp;
}

.animate.fade-in.animate-in {
    animation-name: fadeIn;
}

.animate.scale-in.animate-in {
    animation-name: scaleIn;
}

/* Stagger delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate {
        opacity: 1;
        animation: none !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

/* ==================== Header ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0.75rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--text);
}

nav .nav-lang {
    font-size: 0.8125rem;
    padding: 0.25rem 0.5rem;
    background: var(--bg-alt);
    border-radius: var(--radius);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    background: var(--bg-alt);
}

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

.btn-white:hover {
    background: var(--bg-alt);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    width: 100%;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ==================== Hero Section ==================== */
.hero {
    padding: 8rem 0 4rem;
    background: var(--gradient-hero);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-badge-verifactu {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 2rem;
    color: #047857;
    font-size: 0.875rem;
    font-weight: 600;
}

.verifactu-icon {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    background: var(--border);
}

/* Browser Mockup */
.hero-image {
    position: relative;
}

.app-screenshot {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    max-width: 600px;
}

.app-screenshot img {
    display: block;
    width: 100%;
    height: auto;
}

.browser-mockup {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.browser-mockup:hover {
    transform: translateY(-8px);
    box-shadow:
        0 35px 60px -15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.browser-header {
    padding: 0.75rem 1rem;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.browser-dots span:first-child { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.browser-content {
    background: white;
}

.browser-screenshot {
    display: block;
    width: 100%;
    height: auto;
}

/* Invoice Mock - Realistic invoice detail */
.invoice-mock {
    font-size: 0.8125rem;
    color: #374151;
}

.invoice-mock-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.invoice-mock-company {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.invoice-mock-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.invoice-mock-company-name {
    font-weight: 600;
    color: #111827;
    font-size: 0.9375rem;
}

.invoice-mock-company-info {
    color: #6b7280;
    font-size: 0.75rem;
}

.invoice-mock-meta {
    text-align: right;
}

.invoice-mock-number {
    font-weight: 600;
    color: #111827;
    font-size: 0.9375rem;
}

.invoice-mock-date {
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.invoice-mock-status {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.625rem;
    background: #dcfce7;
    color: #166534;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.invoice-mock-client {
    margin-bottom: 1.25rem;
}

.invoice-mock-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.invoice-mock-client-name {
    font-weight: 600;
    color: #111827;
}

.invoice-mock-client-info {
    color: #6b7280;
    font-size: 0.75rem;
}

.invoice-mock-table {
    margin-bottom: 1rem;
}

.invoice-mock-table-header {
    display: grid;
    grid-template-columns: 1fr 50px 80px 80px;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid #e5e7eb;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    font-weight: 600;
}

.invoice-mock-table-header span:not(:first-child),
.invoice-mock-table-row span:not(:first-child) {
    text-align: right;
}

.invoice-mock-table-row {
    display: grid;
    grid-template-columns: 1fr 50px 80px 80px;
    gap: 0.5rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.invoice-mock-table-row span:first-child {
    color: #111827;
}

.invoice-mock-totals {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 0.5rem;
}

.invoice-mock-totals-row {
    display: flex;
    justify-content: space-between;
    width: 180px;
    padding: 0.375rem 0;
    font-size: 0.8125rem;
}

.invoice-mock-totals-row span:first-child {
    color: #6b7280;
}

.invoice-mock-totals-row span:last-child {
    font-weight: 500;
    color: #374151;
}

.invoice-mock-total {
    border-top: 2px solid #e5e7eb;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
}

.invoice-mock-total span:first-child {
    font-weight: 600;
    color: #111827;
}

.invoice-mock-total span:last-child {
    font-weight: 700;
    color: #111827;
    font-size: 0.9375rem;
}

/* ==================== VERI*FACTU Section ==================== */
.verifactu-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-top: 1px solid #a7f3d0;
    border-bottom: 1px solid #a7f3d0;
}

.verifactu-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.verifactu-intro {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.verifactu-logo-img {
    height: 44px;
    width: auto;
}

.verifactu-tagline {
    color: var(--success-dark);
    font-size: 1rem;
    font-weight: 600;
}

.verifactu-features {
    display: flex;
    gap: 2rem;
}

.verifactu-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-dark);
    font-size: 0.875rem;
    font-weight: 500;
}

.verifactu-feature svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

/* ==================== Section Header ==================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* ==================== Features Section ==================== */
.features {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.features .container {
    position: relative;
    z-index: 1;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.bento-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.bento-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.bento-card.bento-large {
    grid-column: span 2;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
}

.bento-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.bento-card.bento-large h3 {
    font-size: 1.375rem;
}

.bento-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Feature Icons */
.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.feature-icon-lg {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
}

.bento-card:hover .feature-icon {
    background: rgba(37, 99, 235, 0.15);
    transform: scale(1.05);
}

a.bento-card-link {
    text-decoration: none;
    color: inherit;
}

a.bento-card-link:hover {
    border-color: var(--primary);
}

a.bento-card-link:hover .feature-icon {
    background: var(--primary);
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-icon-lg svg {
    width: 28px;
    height: 28px;
}

/* Legacy feature-card (keep for compatibility) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==================== How It Works ==================== */
.how-it-works {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works .container {
    position: relative;
    z-index: 1;
}

/* Timeline Layout */
.steps-timeline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--border) 0%, var(--primary-light) 50%, var(--border) 100%);
    z-index: 0;
}

.steps-timeline .step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.steps-timeline .step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.steps-timeline .step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Legacy steps (keep for compatibility) */
.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}

.step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 1rem;
}

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

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.step-arrow {
    display: flex;
    align-items: center;
    padding-top: 0.75rem;
}

.step-arrow svg {
    width: 32px;
    height: 32px;
    color: var(--border);
}

/* ==================== Testimonials ==================== */
.testimonials {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(200deg, #fff 55%, #f0f7ff 55%);
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9375rem;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* ==================== Pricing Section ==================== */
.pricing {
    padding: 5rem 0;
    background:
        linear-gradient(170deg, #eef2ff 30%, transparent 30%),
        linear-gradient(340deg, transparent 75%, #e0f2fe 75%),
        #f8fafc;
    position: relative;
    overflow: hidden;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-primary);
    transform: scale(1.05);
    padding: 2.5rem;
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 25px 50px -10px rgba(37, 99, 235, 0.35);
}

.pricing-card.featured .price-amount {
    color: var(--primary);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.price-amount-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text);
    font-size: 0.9375rem;
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

/* ==================== Final CTA ==================== */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1d4ed8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

/* ==================== Footer ==================== */
footer {
    background:
        linear-gradient(165deg, transparent 70%, rgba(255,255,255,0.02) 70%),
        var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    color: var(--primary-light);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: var(--text-light);
    max-width: 280px;
}

.footer-links h4 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-lang {
    display: flex;
    gap: 1rem;
}

.footer-lang a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-lang a:hover {
    color: white;
}

/* ==================== Pricing Toggle ==================== */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.toggle-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.toggle-label.active {
    color: var(--text);
    font-weight: 600;
}

.toggle-discount {
    display: inline-block;
    background: var(--success);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    margin-left: 0.25rem;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 28px;
    transition: background 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.pricing-single {
    display: flex;
    justify-content: center;
}

.pricing-single .pricing-card {
    max-width: 400px;
    width: 100%;
}

.pricing-billing {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ==================== Contact Page ==================== */
.contact-page {
    padding: 8rem 0 4rem;
}

.contact-page .container {
    max-width: 600px;
}

.contact-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.contact-page > .container > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-message {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    display: none;
    font-weight: 500;
}

.form-message:not(:empty) {
    display: block;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ==================== 404 Page ==================== */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-page h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h2 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-badge-verifactu {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Bento Grid responsive */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card.bento-large {
        grid-column: span 1;
    }

    .feature-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1.02);
    }

    /* VERI*FACTU bar responsive */
    .verifactu-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .verifactu-intro {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stat-divider {
        display: none;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    /* Bento Grid mobile */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .testimonial-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    /* Steps timeline mobile */
    .steps-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .steps-timeline::before {
        display: none;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step-arrow {
        transform: rotate(90deg);
        padding: 1rem 0;
    }

    /* VERI*FACTU features mobile */
    .verifactu-features {
        flex-direction: column;
        gap: 1rem;
    }

    .final-cta h2 {
        font-size: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }

    nav.nav-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .browser-mockup {
        display: none;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}
