/* ============================================
   POUPA MAIS — Landing Page Styles
   Aesthetic: Refined Wealth / Editorial Finance
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #2f323a;
    --darker: #22242a;
    --green: #0ba360;
    --green-light: #0ed47a;
    --green-dark: #088a4f;
    --green-glow: rgba(11, 163, 96, 0.15);
    --green-glow-strong: rgba(11, 163, 96, 0.3);
    --white: #ffffff;
    --off-white: #f8f9fb;
    --gray-50: #f4f5f7;
    --gray-100: #ebedf0;
    --gray-200: #d1d5db;
    --gray-300: #9ca3af;
    --gray-400: #6b7280;
    --gray-500: #4b5563;
    --gray-600: #374151;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

    --nav-height: 72px;
    --container-max: 1200px;
    --container-padding: 24px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* --- Container --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Reveal Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-quart);
    box-shadow: 0 4px 24px rgba(11, 163, 96, 0.25);
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(11, 163, 96, 0.35);
}

.btn-primary.btn-lg {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-primary.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    border-radius: 60px;
    border: 2px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-quart);
}

.btn-secondary:hover {
    border-color: var(--dark);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: 60px;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: var(--green);
}

.btn-primary-sm {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 60px;
    transition: all 0.3s var(--ease-out-quart);
}

.btn-primary-sm:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--green-glow);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 40px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--darker);
    margin-bottom: 16px;
}

.text-accent {
    color: var(--green);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
    border-bottom-color: var(--gray-100);
    background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--darker);
    font-weight: 400;
}

.nav-logo-icon {
    display: flex;
}

.nav-logo-img {
    width: 115px;
    height: 115px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-500);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
    color: var(--dark);
    background: var(--gray-50);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Language Toggle */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 40px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    transition: all 0.2s;
    line-height: 1;
}

.lang-toggle:hover {
    background: var(--white);
    border-color: var(--gray-200);
    color: var(--dark);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-code {
    letter-spacing: 0.04em;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 16px var(--container-padding) 24px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.nav-mobile a {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-50);
}

.nav-mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.nav-mobile-actions .lang-toggle {
    padding: 8px 16px;
    font-size: 14px;
}

.nav-mobile-actions .lang-flag {
    font-size: 18px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: calc(var(--nav-height) + 80px) 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

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

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--green-glow-strong);
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(11, 163, 96, 0.08);
    bottom: -50px;
    left: 10%;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(34, 36, 42, 0.05);
    top: 30%;
    left: -50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.5vw, 64px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--darker);
    margin-bottom: 24px;
}

.hero-title-accent {
    color: var(--green);
    font-style: italic;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--darker);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray-300);
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
}

/* Hero Visual / Dashboard */
.hero-visual {
    position: relative;
}

.hero-dashboard-wrapper {
    position: relative;
}

.hero-dashboard-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, var(--green-glow-strong), transparent 70%);
    border-radius: 24px;
    z-index: 0;
}

.hero-dashboard-img {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    box-shadow:
        0 4px 8px rgba(0,0,0,0.04),
        0 16px 48px rgba(0,0,0,0.08),
        0 32px 80px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-100);
}

.hero-floating-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
    animation: float 6s ease-in-out infinite;
}

.hero-floating-card-1 {
    top: 12%;
    left: -40px;
    animation-delay: 0s;
}

.hero-floating-card-2 {
    bottom: 16%;
    right: -32px;
    animation-delay: -3s;
}

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

.floating-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon-green { background: var(--green); }
.floating-card-icon-blue { background: #3b82f6; }

.floating-card-label {
    font-size: 12px;
    color: var(--gray-300);
    font-weight: 500;
}

.floating-card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--darker);
    letter-spacing: -0.02em;
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: 120px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 36px 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    background: var(--white);
    transition: all 0.4s var(--ease-out-quart);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    border-color: var(--green-glow-strong);
    box-shadow: 0 8px 40px rgba(11, 163, 96, 0.08);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--green-glow);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--darker);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    line-height: 1.4;
    white-space: nowrap;
}

.feature-badge-beta {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.feature-badge-coming {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.feature-card-desc {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ============================================
   PREVIEW
   ============================================ */
.preview {
    padding: 120px 0;
    background: var(--off-white);
}

.preview-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
}

.preview-browser {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.preview-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.preview-browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
}

.preview-browser-dot:first-child { background: #ff5f57; }
.preview-browser-dot:nth-child(2) { background: #ffbd2e; }
.preview-browser-dot:nth-child(3) { background: #28c840; }

.preview-browser-url {
    margin-left: 12px;
    font-size: 12px;
    color: var(--gray-300);
    font-weight: 500;
    background: var(--white);
    padding: 4px 14px;
    border-radius: 6px;
    border: 1px solid var(--gray-100);
}

.preview-img {
    width: 100%;
    display: block;
}

.preview-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.preview-side-card {
    position: relative;
}

.preview-browser-sm {
    border-radius: 12px;
}

.preview-label {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    text-align: center;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 120px 0;
    background: var(--darker);
    color: var(--white);
}

.how-it-works .section-tag {
    background: rgba(11, 163, 96, 0.2);
    color: var(--green-light);
}

.how-it-works .section-title {
    color: var(--white);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 40px 0;
}

.step-number {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--green);
    opacity: 0.4;
    line-height: 1;
    min-width: 80px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--white);
}

.step-desc {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.65;
}

.step-visual {
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.step-visual img {
    width: 100%;
    display: block;
}

.step-connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    opacity: 0.3;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 36px 32px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    background: var(--white);
    transition: all 0.4s var(--ease-out-quart);
}

.testimonial-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--darker);
}

.testimonial-role {
    font-size: 13px;
    color: var(--gray-300);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 120px 0;
    background: var(--off-white);
}

/* Currency Selector */
.pricing-currency-select {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.currency-btn {
    padding: 8px 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 40px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.currency-btn:hover {
    background: var(--white);
    color: var(--darker);
    border-color: var(--gray-200);
}

.currency-btn.active {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* Billing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}

.pricing-toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-400);
}

.pricing-toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    background: var(--gray-200);
    border-radius: 30px;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.pricing-toggle-switch.annual {
    background: var(--green);
}

.pricing-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.3s var(--ease-out-quart);
}

.pricing-toggle-switch.annual .pricing-toggle-knob {
    transform: translateX(26px);
}

.pricing-toggle-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--green-glow);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

/* Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.pricing-card-free {
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.pricing-card-premium {
    border: 2px solid var(--green);
    box-shadow: 0 8px 48px rgba(11, 163, 96, 0.12);
    transform: scale(1.03);
    z-index: 1;
}

.pricing-popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: var(--green);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    z-index: 2;
}

.pricing-card-header {
    padding: 48px 36px 36px;
    text-align: center;
}

.pricing-card-premium .pricing-card-header {
    background: linear-gradient(180deg, var(--green-glow), transparent);
}

.pricing-plan-name {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-currency {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--darker);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--darker);
    line-height: 1;
    transition: opacity 0.2s;
}

.pricing-period {
    font-size: 16px;
    color: var(--gray-300);
    font-weight: 500;
    transition: opacity 0.2s;
}

.pricing-plan-desc {
    font-size: 15px;
    color: var(--gray-400);
}

.pricing-features {
    list-style: none;
    padding: 0 36px;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-50);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    flex-shrink: 0;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    margin: 0 36px 36px;
    width: calc(100% - 72px);
    justify-content: center;
}

.pricing-card .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    text-align: center;
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 120px 0;
    background: var(--white);
}

.cta-inner {
    text-align: center;
    padding: 80px 60px;
    border-radius: 32px;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--green-glow-strong), transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.cta-inner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(11, 163, 96, 0.1), transparent 70%);
    bottom: -100px;
    left: -50px;
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-inner .btn-primary {
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 0;
    background: var(--off-white);
    border-top: 1px solid var(--gray-100);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.65;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--gray-100);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-300);
}

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

    .hero-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

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

    .preview-gallery {
        grid-template-columns: 1fr;
    }

    .preview-side {
        flex-direction: row;
    }

    .preview-side-card {
        flex: 1;
    }

    .step {
        grid-template-columns: auto 1fr;
    }

    .step-visual {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --nav-height: 64px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .nav-mobile.open {
        display: flex;
    }

    .hero {
        padding: calc(var(--nav-height) + 48px) 0 64px;
    }

    .hero-title {
        font-size: clamp(32px, 8vw, 44px);
    }

    .hero-floating-card {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px 24px;
    }

    .preview-side {
        flex-direction: column;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 32px 0;
    }

    .step-number {
        font-size: 40px;
        min-width: auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

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

    .pricing-card-header {
        padding: 36px 24px 32px;
    }

    .pricing-features {
        padding: 0 24px;
    }

    .pricing-card .btn-primary,
    .pricing-card .btn-secondary {
        margin: 0 24px 32px;
        width: calc(100% - 48px);
    }

    .pricing-toggle {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pricing-amount {
        font-size: 52px;
    }

    .cta-inner {
        padding: 48px 24px;
        border-radius: 20px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        gap: 40px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-badge {
        font-size: 12px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .features,
    .preview,
    .how-it-works,
    .testimonials,
    .pricing,
    .cta {
        padding: 80px 0;
    }

    .btn-primary.btn-lg {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .pricing-amount {
        font-size: 56px;
    }
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    animation: cookieSlideUp 0.5s var(--ease-out-expo) both;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    background: var(--darker);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.cookie-banner-text {
    flex: 1;
    min-width: 0;
}

.cookie-banner-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.cookie-banner-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-200);
    margin: 0;
}

.cookie-link {
    color: var(--green-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-link:hover {
    color: var(--white);
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s var(--ease-out-quart),
                background 0.2s var(--ease-out-quart),
                color 0.2s var(--ease-out-quart);
    white-space: nowrap;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--gray-200);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
}

.cookie-btn-accept {
    background: var(--green);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--green-light);
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px 20px;
    }

    .cookie-banner-actions {
        justify-content: flex-end;
    }

    .cookie-btn {
        flex: 1;
        padding: 11px 16px;
    }
}
