/* ========================================
   PROFESSIONAL MICELLAR WATER - COMPLETE
   Built from scratch - No templates, no jitter
   Mobile-first, conversion-optimized
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================================
   VARIABLES
   ======================================== */
:root {
    --primary: #E4A5B8;
    --primary-dark: #D18CA0;
    --accent: #A0C4BC;
    --dark: #2B2B2B;
    --text: #4A4A4A;
    --light: #FFFBF7;
    --bg: #FFF9F4;
    --border: #EFE5DD;
    --success: #B0D4C6;
    --warning: #F4B860;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 15px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 17px;
    }
}

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

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ========================================
   HEADER
   ======================================== */
.header-area {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s var(--ease);
}

.header-area.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-area .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: var(--space-md);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    transition: opacity 0.2s var(--ease);
}

.logo:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.5rem 1rem;
    transition: color 0.2s var(--ease);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary);
    transition: transform 0.2s var(--ease);
}

.nav a:hover::after,
.nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

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

.order-now-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    box-shadow: 0 3px 10px rgba(228, 165, 184, 0.3);
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.order-now-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 165, 184, 0.4);
}

.order-now-button:active {
    transform: scale(0.95);
}

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

.menu-trigger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s var(--ease);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding: calc(70px + 0.5rem) 1rem 2rem;
    background: linear-gradient(135deg, var(--bg) 0%, #FFF5ED 100%);
    position: relative;
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: calc(70px + 1rem) var(--space-sm) var(--space-lg);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 40%, rgba(228, 165, 184, 0.06), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(160, 196, 188, 0.06), transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .hero-content {
        gap: var(--space-xl);
    }
}

.hero-image {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    align-self: start;
}

.main-image {
    background: white;
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-top: 0;
}

.main-image img {
    border-radius: 8px;
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .hero-image {
        margin: 0;
        max-width: 500px;
    }
    
    .main-image img {
        max-height: none;
    }
}

.image-gallery {
    position: relative;
    margin-top: 0;
}

.hero-text {
    align-self: start;
    margin-top: 0;
    padding-top: 0;
}

.main-image img {
    border-radius: 10px;
    width: 100%;
}

.image-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.image-controls button {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: all;
    transition: all 0.2s var(--ease);
}

.image-controls button:hover {
    transform: scale(1.1);
}

.thumbnail-strip {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.thumbnail-strip::-webkit-scrollbar {
    display: none;
}

.thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s var(--ease);
    flex-shrink: 0;
    object-fit: cover;
}

@media (min-width: 768px) {
    .thumb {
        width: 70px;
        height: 70px;
    }
}

.thumb:hover {
    opacity: 0.8;
}

.thumb.active {
    opacity: 1;
    border-color: var(--primary);
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.subheadline {
    font-size: clamp(1.15rem, 3.5vw, 1.35rem);
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.hero-body {
    font-size: 1.0625rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Package Selector */
.package-selector {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 1.25rem;
    margin: 2rem 0;
}

.package-selector h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .package-selector {
        padding: 1.5rem;
    }
}

.package-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .package-options {
        gap: 1rem;
    }
}

.package-option {
    background: white;
    border: 3px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    position: relative;
    min-height: 140px;
}

.package-option:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(228, 165, 184, 0.12);
}

.package-option:active {
    transform: scale(0.98);
}

.package-option.selected {
    border-color: var(--primary);
    background: rgba(228, 165, 184, 0.04);
    box-shadow: 0 4px 15px rgba(228, 165, 184, 0.15);
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.package-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
}

.popular-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.package-price {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0.75rem 0 0.5rem;
    line-height: 1;
}

.package-savings {
    font-size: 1rem;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.package-features {
    font-size: 1rem;
    color: var(--text);
    margin-top: 0.5rem;
}

.package-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
}

.package-option.selected .package-check {
    display: flex;
}

.package-check::after {
    content: '✓';
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
}

.primary-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(228, 165, 184, 0.3);
    transition: all 0.2s var(--ease);
    width: 100%;
    text-align: center;
    display: block;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(228, 165, 184, 0.4);
}

@media (min-width: 768px) {
    .primary-button {
        width: auto;
        display: inline-block;
    }
}

.value-badge {
    background: rgba(160, 196, 188, 0.12);
    color: var(--dark);
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    display: block;
}

@media (min-width: 768px) {
    .value-badge {
        width: auto;
        display: inline-block;
    }
}

/* ========================================
   SECTIONS - COMMON STYLES
   ======================================== */
section {
    padding: 3rem 1rem;
    scroll-margin-top: 80px;
}

@media (min-width: 768px) {
    section {
        padding: var(--space-xl) var(--space-sm);
    }
}

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

section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-md);
    text-align: center;
    line-height: 1.2;
}

.subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    background: rgba(160, 196, 188, 0.15);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem-section {
    background: var(--light);
    text-align: center;
}

.pain-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: var(--space-md);
}

.pain-point {
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.2s var(--ease);
}

.pain-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pain-point h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.pain-point p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ========================================
   SOLUTION/FEATURES SECTION
   ======================================== */
.solution-section {
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: var(--space-md);
}

.feature {
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.2s var(--ease);
}

.feature:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(228, 165, 184, 0.15);
    transform: translateY(-3px);
}

.feature h3 {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.feature p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ========================================
   VALUE COMPARISON
   ======================================== */
.value-comparison {
    background: linear-gradient(135deg, rgba(228, 165, 184, 0.1), rgba(160, 196, 188, 0.1));
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: var(--space-md) auto;
    max-width: 900px;
}

.comparison-side {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    text-align: center;
}

.comparison-side.ours {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(228, 165, 184, 0.2);
}

.comparison-side .label {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1rem;
}

.comparison-side h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.size {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1rem 0;
}

.price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1rem 0;
}

.per-ml {
    color: var(--text);
    font-size: 1rem;
}

.vs {
    display: none;
}

.value-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: var(--space-lg);
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    background: var(--bg);
}

.radio-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: var(--space-lg) 0;
}

.option-card {
    background: white;
    border: 3px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.2s var(--ease);
    position: relative;
    cursor: pointer;
}

.option-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(228, 165, 184, 0.2);
}

.option-card.popular {
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-card label {
    cursor: pointer;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.tag {
    background: rgba(160, 196, 188, 0.15);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag.save {
    background: rgba(176, 212, 198, 0.2);
    color: var(--success);
}

.card-price {
    margin: 1.5rem 0;
}

.card-price .price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}

.price-subtitle {
    font-size: 1rem;
    color: var(--text);
    display: block;
    margin-top: 0.5rem;
}

.savings {
    background: rgba(176, 212, 198, 0.15);
    color: var(--success);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
}

.features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.cta-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 1.25rem 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(228, 165, 184, 0.3);
    transition: all 0.2s var(--ease);
    margin-top: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 165, 184, 0.4);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Urgency widgets */
.urgency-widgets {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: var(--space-lg);
}

.widget {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.countdown-timer {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.timer-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    display: block;
    margin-bottom: 0.5rem;
}

.social-proof .proof-text {
    font-weight: 600;
    color: var(--dark);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.trust-badges .badge {
    color: var(--success);
    font-weight: 600;
}

/* ========================================
   BENEFITS LIST
   ======================================== */
.benefits-section {
    background: var(--light);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: var(--space-md);
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.benefit-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-content ul {
    list-style: none;
    margin-top: 1rem;
}

.benefit-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
}

.benefit-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: var(--space-md);
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    gap: 1.5rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.location {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.stars {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.trust-badges-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: var(--space-lg);
}

.trust-badge {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border);
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    background: var(--light);
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: var(--space-md);
}

.step {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    display: flex;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* ========================================
   FAQ
   ======================================== */
.faq-section {
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    margin: var(--space-md) auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s var(--ease);
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.3s var(--ease);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: var(--text);
    line-height: 1.7;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, #E8C4C4, #D4A5A5);
    color: var(--dark);
    text-align: center;
    padding: var(--space-xl) var(--space-sm);
}

.final-cta h2 {
    color: var(--dark);
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-dark);
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(184, 135, 135, 0.3);
    margin-bottom: 2rem;
}

.final-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 135, 135, 0.4);
}

.guarantee-line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.guarantee-line span {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 3rem var(--space-sm) 1.5rem;
    text-align: center;
}

footer h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

footer p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

footer .footer-button {
    background: white;
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.2s var(--ease);
}

footer .footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: white;
    opacity: 0.9;
    transition: opacity 0.2s var(--ease);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 767px) {
    .menu-trigger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 251, 247, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        z-index: 998;
        transition: left 0.3s var(--ease);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav a {
        font-size: 1.25rem;
        padding: 1rem;
    }
    
    .order-now-button {
        margin-top: 1rem;
    }
    
    .menu-trigger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-trigger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-trigger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-text h1,
    .subheadline,
    .hero-body {
        text-align: center;
    }
    
    .hero-body {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .primary-button,
    .value-badge {
        width: 100%;
        text-align: center;
    }
    
    .benefit-item,
    .step,
    .testimonial {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-number,
    .step-number,
    .avatar {
        margin: 0 auto 1rem;
    }
}

/* Tablet & Up */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .package-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pain-points,
    .value-benefits {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-table {
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    
    .vs {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
        padding: 0 2rem;
    }
    
    .radio-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .urgency-widgets {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-badges-row {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .steps-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   PERFORMANCE & ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}
