/* CSS Variables - Color Palette & Typography */
:root {
    /* Colors */
    --color-moss: #1e3f2b;        /* Organic deep moss green */
    --color-moss-dark: #12281a;
    --color-moss-light: #356247;
    --color-sage: #95a595;        /* Sage green */
    --color-sage-light: #e0e9e4;  /* Softer, greener tint */
    --color-sand: #fdfbf7;        /* Soft warm sand, slightly shifted to green tint */
    --color-sand-dark: #f0ebe1;
    --color-amber: #d4a373;       /* Soft golden amber (Accent) */
    --color-amber-hover: #c49260;
    
    --color-text-main: #2a2a2a;
    --color-text-muted: #4a5750;  /* slightly greener text */
    --color-white: #ffffff;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 120px 0;
    
    /* Effects - 3D & Premium */
    --radius-xl: 40px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    /* Deep 3D Shadows */
    --shadow-soft: 0 10px 30px rgba(44, 74, 59, 0.08);
    --shadow-glass: 0 25px 50px -12px rgba(44, 74, 59, 0.25);
    --shadow-hover: 0 35px 60px -15px rgba(26, 44, 35, 0.4);
    --shadow-3d: 0 30px 60px -10px rgba(26, 44, 35, 0.5), 0 0 20px rgba(129, 154, 132, 0.2);
    
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    background-color: var(--color-sand);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}



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

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.section-padding { padding: var(--section-padding); }
.text-center { text-align: center; }

.bg-sand { background-color: var(--color-sand); }
.bg-moss { background-color: var(--color-moss); color: var(--color-white); }
.text-white { color: var(--color-white); }
.text-moss { color: var(--color-moss); }
.text-amber { color: var(--color-amber); }
.text-muted { color: var(--color-text-muted); }
.text-sage-light { color: var(--color-sage-light); }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }

.section-header {
    max-width: 700px;
    margin: 0 auto 64px;
}

.serif-title {
    font-family: var(--font-serif);
    color: var(--color-moss);
    line-height: 1.2;
    font-weight: 500;
}
.bg-moss .serif-title { color: var(--color-white); }

.section-header h2 { font-size: 2.75rem; }
.serif-title-sm { font-family: var(--font-serif); font-size: 1.5rem; color: var(--color-moss); font-weight: 500; margin-bottom: 16px; }
.serif-title-xs { font-family: var(--font-serif); font-size: 1.25rem; color: var(--color-moss); font-weight: 600; margin-bottom: 4px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(145deg, var(--color-amber), var(--color-amber-hover));
    color: var(--color-moss-dark);
    box-shadow: 0 10px 20px rgba(196, 146, 96, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.6);
    border: 1px solid #b37e4c;
    text-shadow: 0 1px 1px rgba(255,255,255,0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #e3b88b, var(--color-amber));
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(196, 146, 96, 0.5), inset 0 2px 2px rgba(255, 255, 255, 0.8);
}

.btn-primary:hover::before {
    left: 100%;
}

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

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

.btn-large {
    padding: 20px 56px;
    font-size: 1.05rem;
}

.btn-block { width: 100%; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-moss);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    -webkit-transform: translateZ(1000px);
    transform: translateZ(1000px);
}

.navbar .btn-outline {
    background: linear-gradient(180deg, #2a4c38 0%, #173222 100%);
    border: 1px solid #3d634b;
    color: #e5c375; /* Cor da logo */
    box-shadow: 
        0 6px 0 #0d1e14,
        0 10px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
    text-shadow: 0 2px 2px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: 1px;
    transform: translateY(0);
    transition: all 0.2s ease;
}

.navbar .btn-outline:hover {
    background: linear-gradient(180deg, #325a42 0%, #1c3b28 100%);
    color: #f3d99e; /* Dourado levemente mais claro no hover */
    border-color: #4a7559;
    box-shadow: 
        0 8px 0 #0d1e14,
        0 15px 25px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.navbar .btn-outline:active {
    background: linear-gradient(180deg, #173222 0%, #2a4c38 100%);
    transform: translateY(4px);
    box-shadow: 
        0 2px 0 #0d1e14,
        0 4px 8px rgba(0, 0, 0, 0.3),
        inset 0 4px 8px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Main Navigation */
.main-nav ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-amber);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-amber);
}

.nav-link:hover::after {
    width: 100%;
}

@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-serif);
    color: #e5c375; /* Vibrant premium gold */
    text-shadow: 0 2px 5px rgba(0,0,0,0.25);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-mark {
    font-size: 2.9rem;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 1;
    margin-bottom: -2px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-left: 3px;
    line-height: 1;
    font-variant: small-caps;
}

/* Glassmorphism & 3D Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: 0.7s;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card-dark {
    background: rgba(26, 44, 35, 0.65);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(129, 154, 132, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-3d);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 1);
}

.card-highlight {
    background: linear-gradient(145deg, #fdfbf7 0%, #f0ebe1 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), inset 0 2px 2px rgba(255, 255, 255, 0.8);
    border: 1px solid var(--color-amber);
}

.card-highlight .serif-title,
.card-highlight .text-moss {
    color: var(--color-moss) !important;
}

.card-highlight .price-label,
.card-highlight .price-sub {
    color: var(--color-moss-dark) !important;
    font-weight: 700;
}

.premium-hover {
    transition: var(--transition);
}
.premium-hover:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 1);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.floating { animation: float 7s ease-in-out infinite; }
.floating-slow { animation: float-slow 12s ease-in-out infinite; }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-left.active, .reveal-right.active { transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* 3D Images */
.image-box { perspective: 1000px; }
.rounded-image {
    border-radius: var(--radius-xl);
    object-fit: cover;
    width: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}
.image-box:hover .rounded-image {
    transform: rotateX(2deg) rotateY(-2deg) scale(1.03);
}

.shadow-xl {
    box-shadow: 0 40px 80px -20px rgba(26, 44, 35, 0.5), 0 0 40px rgba(255,255,255,0.2) inset;
}

/* Decorative Backgrounds (More Green, Opaque/Transparent) */
.bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(129, 154, 132, 0.2) 0%, rgba(129, 154, 132, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.decorative-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    opacity: 0.6;
}
.blur-green-1 { top: -100px; right: -100px; width: 500px; height: 500px; background: rgba(129, 154, 132, 0.4); }
.blur-green-2 { bottom: 100px; left: -100px; width: 600px; height: 600px; background: rgba(68, 110, 90, 0.3); }
.blur-amber { top: 30%; right: 10%; width: 400px; height: 400px; background: rgba(212, 163, 115, 0.15); }
.blur-moss { bottom: -200px; right: 20%; width: 700px; height: 700px; background: rgba(44, 74, 59, 0.25); }

/* Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split-layout.reverse .text-box { order: 1; }
.split-layout.reverse .image-box { order: 2; }
.padding-lg { padding: 56px; }

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    background-color: var(--color-sand);
    position: relative;
    overflow: hidden;
}

.hero-bg-accent {
    position: absolute;
    top: -20%; right: -10%; width: 70vw; height: 130%;
    background: radial-gradient(circle, rgba(129, 154, 132, 0.3) 0%, rgba(234, 240, 236, 0) 70%);
    z-index: 0;
    border-radius: 50%;
    filter: blur(60px);
    -webkit-filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: var(--color-moss);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--color-moss);
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(44,74,59,0.1);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 550px;
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    border-radius: 160px 40px 160px 40px;
    box-shadow: var(--shadow-3d);
    border: 4px solid rgba(255,255,255,0.4);
}

.glass-decoration {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(44,74,59,0.15);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.seal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
}

.seal-title {
    font-family: var(--font-serif);
    color: var(--color-moss);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.seal-subtitle {
    font-size: 0.7rem;
    color: var(--color-moss);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Clinical Conditions */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.condition-item {
    padding: 48px 40px;
}

.condition-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgba(129, 154, 132, 0.25); /* Greenish translucent number */
    line-height: 1;
    margin-bottom: -15px;
    font-style: italic;
    font-weight: 600;
}

.condition-item ul {
    margin-top: 24px;
}

.condition-item li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--color-text-muted);
    font-size: 1rem;
}
.condition-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 2px;
    background-color: var(--color-moss-light);
    border-radius: 2px;
}

/* Quote Section */
.quote-text {
    font-size: 3rem;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.quote-text .text-amber {
    font-style: italic;
    color: var(--color-sage-light);
}

/* Timeline */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.step-card {
    padding: 48px 32px;
    text-align: center;
}

.step-number-elegant {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-moss-light);
    margin-bottom: 24px;
    text-shadow: 0 5px 15px rgba(44,74,59,0.1);
}

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

/* Social Proof List */
.elegant-list-item {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}
.list-line {
    width: 3px;
    background: linear-gradient(to bottom, var(--color-moss), var(--color-sage-light));
    border-radius: 3px;
    margin-top: 6px;
    margin-bottom: 6px;
}
.text-muted-sm {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Pricing Section */
.pricing-card {
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    text-align: center;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.elegant-checks li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.elegant-checks li::before {
    content: '✓';
    color: var(--color-sage-light);
    font-weight: bold;
    font-size: 1.3rem;
}

.pricing-action {
    padding: 56px;
    text-align: left;
}

.price-label {
    display: block;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.price-value {
    font-size: 1.75rem;
    color: var(--color-moss);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.price-value .currency {
    font-size: 1.5rem;
    font-weight: 600;
}
.price-value .amount {
    font-size: 4rem;
    text-shadow: 0 10px 20px rgba(44,74,59,0.1);
}

/* FAQ */
.accordion {
    max-width: 850px;
    margin: 0 auto;
}
.accordion-item {
    margin-bottom: 20px;
    border: none;
}
.accordion-header {
    width: 100%;
    padding: 32px 40px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-moss);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-primary);
}
.accordion-header .icon {
    position: relative;
    width: 18px;
    height: 18px;
}
.accordion-header .icon::before,
.accordion-header .icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-moss-light);
    transition: var(--transition);
}
.accordion-header .icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.accordion-header .icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.accordion-header[aria-expanded="true"] .icon::after { transform: rotate(90deg); opacity: 0; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
.accordion-content p {
    padding: 0 40px 32px;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Footer 3D Realistic Opaque */
.footer {
    background: linear-gradient(145deg, #2c4a3b 0%, #172a20 100%);
    box-shadow: inset 0 20px 50px rgba(0, 0, 0, 0.4), 0 -10px 30px rgba(26, 44, 35, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 100px 0 60px;
}
@media (max-width: 1024px) {
    .split-layout, .hero-container, .pricing-card { grid-template-columns: 1fr; gap: 40px; }
    .split-layout .image-box { order: -1; }
    .split-layout.reverse .image-box { order: -1; }
    .split-layout.reverse .text-box { order: 2; }
    
    .hero { padding-top: 140px; padding-bottom: 80px; }
    .hero-content h1 { font-size: 3.5rem; }
    
    .steps-wrapper { grid-template-columns: repeat(2, 1fr); }
    .pricing-card { padding: 40px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    
    /* Navbar Mobile Fixes */
    .nav-container { height: 75px; padding: 0 16px; }
    .logo-mark { font-size: 2.2rem; }
    .logo-text { font-size: 1rem; letter-spacing: 1.5px; }
    .navbar .btn-outline { 
        padding: 10px 16px; 
        font-size: 0.75rem; 
        box-shadow: 
            0 4px 0 #0d1e14,
            0 8px 12px rgba(0, 0, 0, 0.4),
            inset 0 1px 1px rgba(255, 255, 255, 0.15);
    }
    .navbar .btn-outline:active {
        transform: translateY(2px);
        box-shadow: 
            0 2px 0 #0d1e14,
            0 4px 8px rgba(0, 0, 0, 0.3),
            inset 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    .steps-wrapper { grid-template-columns: 1fr; }
    .section-header h2, .quote-text { font-size: 2rem; }
    .hero-content h1 { font-size: 2.25rem; line-height: 1.15; margin-bottom: 16px; }
    .hero-content p { font-size: 1.05rem; }
    .badge { padding: 10px 16px; font-size: 0.8rem; line-height: 1.4; margin-bottom: 24px; }
    
    .pricing-card { padding: 32px 20px; gap: 32px; }
    .pricing-action { padding: 32px 20px; }
    .pricing-content h2 { font-size: 1.85rem; word-break: break-word; line-height: 1.25; }
    .pricing-includes { display: block !important; width: 100%; }
    .elegant-checks li { font-size: 1rem; align-items: flex-start; gap: 12px; }
    
    .btn-large { padding: 16px 32px; font-size: 1rem; }
    .price-value .amount { font-size: 3rem; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(26, 44, 35, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(129, 154, 132, 0.3);
    box-shadow: var(--shadow-3d);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

.cookie-banner.show {
    bottom: 30px;
}

.cookie-banner p {
    color: var(--color-sand);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-banner a {
    color: var(--color-amber);
    text-decoration: none;
    border-bottom: 1px solid var(--color-amber);
    transition: var(--transition);
}

.cookie-banner a:hover {
    color: var(--color-amber-hover);
    border-bottom-color: var(--color-amber-hover);
}

.cookie-banner .btn {
    white-space: nowrap;
    padding: 12px 32px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        bottom: -250px;
        width: 95%;
    }
    .cookie-banner.show {
        bottom: 16px;
    }
    .cookie-banner .btn {
        width: 100%;
    }
}
