/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #FFDE00; /* Kuning Cerah */
    --primary-hover: #E5C700;
    --dark-color: #111111;    /* Hitam Kontras */
    --light-color: #F9F9F9;   /* Abu-abu Terang */
    --text-muted: #666666;
    --white: #ffffff;
    --transition-premium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 40px 80px rgba(0, 0, 0, 0.12), 0 15px 30px rgba(0, 0, 0, 0.04);
}

body {
    background-color: var(--white);
    color: var(--dark-color);
    overflow-x: hidden;
    position: relative;
}

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

.section-padding {
    padding: 120px 0;
}

/* ==========================================
   BACKGROUND DECORATIVE PATTERNS
   ========================================== */
.premium-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 50px 50px;
    background-image: linear-gradient(to right, rgba(17, 17, 17, 0.012) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(17, 17, 17, 0.012) 1px, transparent 1px);
    pointer-events: none;
    z-index: -3;
}

.premium-bg-dots {
    position: absolute;
    top: 5%;
    left: 2%;
    width: 250px;
    height: 400px;
    background-image: radial-gradient(rgba(17, 17, 17, 0.025) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -2;
}

.premium-blur-glow-left {
    position: absolute;
    top: 35%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 222, 0, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.premium-blur-glow-right {
    position: absolute;
    top: 15%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 222, 0, 0.14) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
}

/* Abstract Waves (Area Kuning Hero) */
.abstract-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.wave-ring {
    position: absolute;
    border: 1px solid rgba(17, 17, 17, 0.035);
    border-radius: 50%;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
}

.ring-1 { width: 350px; height: 350px; animation: pulseWave 7s infinite linear; }
.ring-2 { width: 650px; height: 650px; animation: pulseWave 10s infinite linear 1.5s; }
.ring-3 { width: 950px; height: 950px; animation: pulseWave 13s infinite linear 3s; }

@keyframes pulseWave {
    0% { transform: translate(-50%, -50%) scale(0.85); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.25); opacity: 0; }
}

/* ==========================================
   COMPONENTS (BUTTONS & BADGES)
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-premium);
    cursor: pointer;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 222, 0, 0.35);
}

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

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(17, 17, 17, 0.12);
}

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

.btn-dark:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 222, 0, 0.25);
}

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

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

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.badge {
    background-color: var(--dark-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

/* ==========================================
   HEADER NAVBAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
    transition: var(--transition-premium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span { color: var(--primary-hover); }

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    transition: var(--transition-premium);
    position: relative;
    font-size: 0.95rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition-premium);
}

.nav-links a:hover::after { width: 100%; }
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: var(--dark-color); transition: 0.3s; }

/* ==========================================
   1. HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 8% 80px 8%;
    background: linear-gradient(135deg, #fff 57%, var(--primary-color) 57%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 630px;
    z-index: 5;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    background-color: var(--dark-color);
    color: var(--primary-color);
    padding: 0 14px;
    display: inline-block;
    border-radius: 6px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.65;
}

/* Quick Benefits */
.quick-benefits-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.benefit-pill {
    background-color: rgba(17, 17, 17, 0.04);
    color: var(--dark-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-premium);
    border: 1px solid rgba(17, 17, 17, 0.01);
}

.benefit-pill i { color: #00E676; font-size: 0.9rem; }
.benefit-pill:hover { background-color: var(--dark-color); color: var(--white); transform: translateY(-2px); }

/* CTA Pricing Highlight Link */
.hero-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.hero-buttons { display: flex; gap: 16px; }

.hero-pricing-highlight { display: flex; flex-direction: column; }
.price-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); font-weight: 700; }
.price-value { font-size: 1.8rem; font-weight: 800; color: var(--dark-color); line-height: 1.1; }
.price-unit { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); }

/* Hero Statistics Row */
.hero-stats-container {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    padding-top: 35px;
    margin-top: 15px;
}

.stat-item { transition: var(--transition-premium); }
.stat-item h3 { font-size: 2.6rem; font-weight: 800; color: var(--dark-color); line-height: 1; letter-spacing: -1px; }
.stat-item p { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 8px; margin-bottom: 0; font-weight: 700; }
.stat-item:hover { transform: translateY(-3px); }
.stat-item:hover h3 { color: var(--primary-hover); }
.stat-divider { width: 1px; height: 45px; background-color: rgba(17, 17, 17, 0.1); }

/* Social Proof Metric */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    background-color: rgba(17, 17, 17, 0.02);
    padding: 12px 20px;
    border-radius: 14px;
    display: inline-flex;
    border: 1px solid rgba(17, 17, 17, 0.01);
}

.stars-row { display: flex; align-items: center; gap: 4px; }
.stars-row i { color: #FFB300; font-size: 0.9rem; }
.rating-number { font-weight: 800; font-size: 0.95rem; margin-left: 6px; color: var(--dark-color); }
.social-proof-text { font-size: 0.85rem !important; color: var(--text-muted) !important; margin-bottom: 0 !important; font-weight: 600; }

/* Product Canvas Card (Premium Upgrade) */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    perspective: 1000px;
}

.premium-card-upgrade {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 45px;
    border-radius: 28px;
    width: 375px; 
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.35), 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    animation: floatPremium 5.5s infinite ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes floatPremium {
    0%, 100% { transform: translateY(0) rotate(0.5deg); }
    50% { transform: translateY(-12px) rotate(-0.5deg); }
}

.card-glow-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 222, 0, 0.07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.premium-card-upgrade:hover {
    transform: translateY(-4px) scale(1.025) rotate(0deg) !important;
    box-shadow: 0 50px 100px rgba(255, 222, 0, 0.18), 0 20px 45px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 222, 0, 0.3);
}

.wifi-wave {
    background-color: var(--primary-color);
    color: var(--dark-color);
    width: 75px;
    height: 75px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 35px;
    animation: pulse 2.5s infinite;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 222, 0, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(255, 222, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 222, 0, 0); }
}

.premium-card-upgrade h3 { font-size: 1.6rem; margin-bottom: 12px; font-weight: 800; position: relative; z-index: 2; }
.premium-card-upgrade p { position: relative; z-index: 2; }
.status-ready { color: #00FF66; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.pulse-dot { width: 8px; height: 8px; background-color: #00FF66; border-radius: 50%; display: inline-block; animation: blink 1.5s infinite; }
@keyframes blink { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
.specs { margin-top: 35px; display: flex; gap: 25px; font-size: 0.95rem; opacity: 0.9; position: relative; z-index: 2; }
.specs span i { color: var(--primary-color); margin-right: 6px; }

/* ==========================================
   2. TRUST INDICATOR SECTION
   ========================================== */
.trust-indicator {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 45px 0;
    position: relative;
    z-index: 10;
}

.trust-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-badge {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-premium);
}

.trust-badge i { color: var(--primary-color); font-size: 1.1rem; }
.trust-badge:hover {
    background-color: rgba(255, 255, 255, 0.09);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 222, 0, 0.15);
}

/* ==========================================
   3. KEUNGGULAN LAYANAN SECTION
   ========================================== */
.section-header h2 { font-size: 2.6rem; font-weight: 800; margin-bottom: 15px; letter-spacing: -1px; }
.section-header .line { width: 60px; height: 5px; background-color: var(--primary-color); margin: 0 auto 25px auto; border-radius: 2px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto 60px auto; font-size: 1.05rem; line-height: 1.6; }

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

.keunggulan-card {
    background-color: var(--light-color);
    padding: 45px 35px;
    border-radius: 24px;
    transition: var(--transition-premium);
    border: 1px solid rgba(17, 17, 17, 0.02);
}

.keunggulan-card:hover {
    background-color: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

.k-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    transition: transform 0.3s ease;
}

.keunggulan-card:hover .k-icon {
    transform: scale(1.1) rotate(-5deg);
}

.keunggulan-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.keunggulan-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }

/* ==========================================
   4. CARA KERJA PENYEWAAN SECTION
   ========================================== */
.cara-kerja { background-color: var(--light-color); }

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.timeline-item {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.01);
    position: relative;
    transition: var(--transition-premium);
    border: 1px solid rgba(0,0,0,0.01);
}

.timeline-item:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

.timeline-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.timeline-item h3 { margin-top: 10px; font-size: 1.25rem; margin-bottom: 12px; font-weight: 700; }
.timeline-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.5; }

/* ==========================================
   5. TESTIMONI PENGGUNA SECTION
   ========================================== */
.slider-container {
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    box-sizing: border-box;
}

.stars-rating {
    margin-bottom: 20px;
    color: #FFB300;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-slide p {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-slide h4 {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.slider-dots { display: flex; justify-content: center; gap: 10px; margin-top: 25px; }
.dot { width: 10px; height: 10px; background-color: rgba(0,0,0,0.1); border-radius: 50%; cursor: pointer; transition: var(--transition-premium); }
.dot.active { background-color: var(--dark-color); width: 26px; }

/* ==========================================
   6. PAKET HARGA SECTION
   ========================================== */
.pricing { background-color: var(--light-color); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.pricing-card {
    background: var(--white);
    border: 2px solid rgba(17, 17, 17, 0.03);
    border-radius: 28px;
    padding: 55px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-premium);
}

.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-premium); }
.pricing-card.popular { border-color: var(--dark-color); background-color: rgba(255, 222, 0, 0.02); }

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--primary-color);
    padding: 6px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--dark-color); font-weight: 700; }
.price { font-size: 2.8rem; font-weight: 800; color: var(--dark-color); margin-bottom: 15px; letter-spacing: -1px; }
.price span { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.price-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 40px; }

/* ==========================================
   7. FAQ SECTION
   ========================================== */
.faq-wrapper { max-width: 850px; margin: 0 auto; }
.faq-item { background: var(--white); border-bottom: 1px solid rgba(17, 17, 17, 0.08); margin-bottom: 15px; border-radius: 12px; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 24px; cursor: pointer; transition: var(--transition-premium); }
.faq-question h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark-color); }
.faq-icon { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); color: var(--dark-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); padding: 0 24px; }
.faq-answer p { color: var(--text-muted); line-height: 1.65; padding-bottom: 24px; font-size: 0.98rem; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--primary-hover); }

/* ==========================================
   CTA RENTAL COMPONENT (Asli Kelompok 8)
   ========================================== */
.cta-card { background-color: var(--primary-color); padding: 90px 40px; border-radius: 36px; box-shadow: 0 40px 80px rgba(255, 222, 0, 0.18); }
.cta-card h2 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.cta-card p { font-size: 1.25rem; max-width: 700px; margin: 0 auto 45px auto; line-height: 1.6; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
.feedback-points { text-align: center; }
.feedback-points h4 { margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.9rem; font-weight: 700; }
.tags { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.tags span { background-color: rgba(17, 17, 17, 0.05); padding: 12px 24px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: var(--transition-premium); }
.tags span:hover { background-color: var(--dark-color); color: var(--white); }

/* ==========================================
   8. FOOTER
   ========================================== */
footer { background-color: var(--dark-color); color: var(--white); padding: 50px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.95rem; }
.footer-content p { margin: 0; }
.footer-content strong { color: var(--primary-color); }

/* ==========================================
   MICRO SCROLL INTERACTIONS
   ========================================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in { animation: fadeInUpgrade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.slide-in-right { animation: slideInRightUpgrade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

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

@keyframes slideInRightUpgrade {
    from { opacity: 0; transform: translate3d(40px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* ==========================================
   9 & 10. RESPONSIVE LAYOUT BREAKPOINTS
   ========================================== */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 3.3rem; }
    .premium-card-upgrade { width: 345px; padding: 35px; }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        background: linear-gradient(180deg, #fff 59%, var(--primary-color) 59%);
        padding-top: 140px;
        padding-bottom: 100px;
    }
    .hero-shape { display: none; }
    .quick-benefits-container { justify-content: center; }
    .hero-cta-wrapper { justify-content: center; flex-direction: column; gap: 20px; }
    .hero-buttons { justify-content: center; }
    .hero-stats-container { justify-content: center; gap: 20px; }
    .hero-social-proof { justify-content: center; }
    .hero-image { margin-top: 60px; width: 100%; }
    .premium-card-upgrade { width: 100%; max-width: 380px; }
    .target-wrapper { flex-direction: column; gap: 50px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        padding: 40px 0;
        gap: 25px;
    }
    .nav-links.active { left: 0; }
    .menu-toggle { display: block; }
    #mobile-menu.active .bar:nth-child(2) { opacity: 0; }
    #mobile-menu.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    #mobile-menu.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .hero-content h1 { font-size: 2.6rem; }
    .hero-stats-container { flex-wrap: wrap; justify-content: center; gap: 15px 25px; }
    .stat-divider { display: none; }
    .stat-item { text-align: center; min-width: 40%; }
    .trust-logos { gap: 15px; }
    .trust-badge { padding: 10px 18px; font-size: 0.9rem; }
    .cta-card h2 { font-size: 2.2rem; }
    footer .footer-content { justify-content: center; text-align: center; }
    footer .footer-content p { width: 100%; }
    .cta-buttons { flex-direction: column; gap: 12px; }
    .btn { width: 100%; justify-content: center; }
}