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

:root {
    --yellow: #1aab55;
    --peach: #22c55e;
    --beige: #f5f5f0;
    --teal: #1aab55;
    --lavender: #d1fae5;
    --text: #1a1a1a;
    --green: #1aab55;
    --green-light: #22c55e;
    --dark: #f5f5f0;
    --dark-card: #ffffff;
    --dark-border: rgba(26, 171, 85, 0.15);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #f5f5f0;
}

/* Animated Background Blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--yellow);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--lavender);
    bottom: -150px;
    right: -100px;
    animation-delay: 5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--teal);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

/* Sticky Navigation */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-dropdown {
    position: relative;
}

.nav-drop-btn {
    background: none;
    border: 1.5px solid rgba(15,23,42,0.12);
    border-radius: 50px;
    padding: 0.55rem 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.nav-drop-btn:hover,
.nav-dropdown:hover .nav-drop-btn {
    border-color: #1e3a8a;
    color: #1e3a8a;
    background: rgba(30,58,138,0.05);
}

.drop-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .drop-arrow {
    transform: rotate(180deg);
}

.nav-drop-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid rgba(15,23,42,0.1);
    border-radius: 14px;
    padding: 0.5rem;
    min-width: 180px;
    box-shadow: 0 8px 30px rgba(15,23,42,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.2s ease;
    z-index: 100;
}

.nav-dropdown:hover .nav-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-drop-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.15s ease;
}

.nav-drop-menu a:hover {
    background: #f0f6ff;
    color: #1e3a8a;
}

.coming-soon {
    font-size: 0.68rem;
    font-weight: 700;
    background: #e0e7ff;
    color: #4338ca;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.nav-cta {
    background: #1e3a8a;
    color: white;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: #1e40af;
    transform: translateY(-1px);
}

.nav-wa {
    background: #25D366;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}

.nav-wa svg {
    flex-shrink: 0;
}

.nav-wa:hover {
    background: #1ebe5d;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0.4rem;
    }
    .nav-drop-btn {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
    .nav-wa {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        gap: 0.35rem;
    }
    .logo {
        font-size: 1rem;
    }
}

.cta-wa {
    background: #25D366 !important;
    box-shadow: 0 8px 30px rgba(37,211,102,0.35) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
}

.cta-wa:hover {
    background: #1ebe5d !important;
    box-shadow: 0 14px 40px rgba(37,211,102,0.45) !important;
}

/* =============================================
   HERO SECTION — Full Redesign
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

/* Hero background blobs — layered animated gradients */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 171, 118, 0.45) 0%, rgba(255, 243, 196, 0.2) 70%);
    top: -180px;
    left: -120px;
    animation: heroBlob1 18s ease-in-out infinite;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 181, 232, 0.45) 0%, rgba(127, 181, 176, 0.15) 70%);
    top: 10%;
    right: -100px;
    animation: heroBlob2 22s ease-in-out infinite;
}

.hero-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127, 181, 176, 0.4) 0%, transparent 70%);
    bottom: 0;
    left: 30%;
    animation: heroBlob3 16s ease-in-out infinite;
}

.hero-blob-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 243, 196, 0.6) 0%, transparent 70%);
    bottom: 20%;
    right: 25%;
    animation: heroBlob1 24s ease-in-out infinite reverse;
}

@keyframes heroBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(50px, -60px) scale(1.12); }
    66%       { transform: translate(-30px, 40px) scale(0.92); }
}

@keyframes heroBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-60px, 50px) scale(1.1); }
    80%       { transform: translate(40px, -30px) scale(0.9); }
}

@keyframes heroBlob3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(70px, -40px) scale(1.15); }
}

/* Hero content grid */
.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ---- Left: Text side ---- */

/* Animated badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 171, 118, 0.4);
    color: #7a4a1e;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.8rem;
    box-shadow: 0 4px 20px rgba(255, 171, 118, 0.2);
    animation: badgePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.hero-badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--peach);
    box-shadow: 0 0 0 3px rgba(255, 171, 118, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePop {
    from { opacity: 0; transform: scale(0.8) translateY(-10px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 171, 118, 0.3); }
    50%       { box-shadow: 0 0 0 6px rgba(255, 171, 118, 0.15); }
}

/* Headline */
.hero-title {
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.6rem;
    letter-spacing: -0.03em;
    color: var(--text);
    animation: heroFadeUp 0.8s 0.2s ease both;
}

/* Gradient highlight on key words */
.hero-gradient-word {
    background: linear-gradient(135deg, #FF6B35, #FFAB76, #C4B5E8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShimmer 4s ease infinite;
}

@keyframes gradientShimmer {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2.8rem;
    opacity: 0.78;
    max-width: 520px;
    animation: heroFadeUp 0.8s 0.4s ease both;
}

/* CTA button group */
.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
    animation: heroFadeUp 0.8s 0.6s ease both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.cta-primary {
    background: linear-gradient(135deg, #FF6B35, #FFAB76);
    color: white;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 45px rgba(255, 107, 53, 0.45);
}

.cta-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(44, 44, 44, 0.25);
    box-shadow: none;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--teal);
    color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(127, 181, 176, 0.2);
}

.cta-icon {
    font-size: 1.1rem;
}

.cta-button.large {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ---- Right: Phone mockup ---- */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
    animation: heroFadeUp 0.8s 0.5s ease both;
}

/* Phone frame */
.phone-mockup {
    width: 260px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 14px;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.15),
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(127, 181, 176, 0.15);
    position: relative;
    z-index: 2;
    animation: phoneBob 6s ease-in-out infinite;
}

@keyframes phoneBob {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-14px) rotate(1deg); }
}

.phone-screen {
    background: #ECE5DD;
    border-radius: 28px;
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: #075E54;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.phone-header-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--teal), var(--lavender));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.phone-header-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.phone-header-name {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
}

.phone-header-status {
    color: rgba(255,255,255,0.75);
    font-size: 0.65rem;
}

.phone-messages {
    flex: 1;
    padding: 0.75rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
}

.bubble {
    max-width: 82%;
    padding: 0.5rem 0.75rem;
    border-radius: 16px;
    font-size: 0.72rem;
    line-height: 1.4;
    opacity: 0;
    animation: bubbleAppear 0.5s ease forwards;
}

.bubble-in {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    color: #222;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.bubble-out {
    background: #DCF8C6;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    color: #222;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.bubble-sender {
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.bubble-text {
    display: block;
}

.bubble-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}

.bubble-time {
    font-size: 0.58rem;
    color: #999;
}

.bubble-out .bubble-time {
    color: #6fa;
}

.bubble-ticks {
    font-size: 0.6rem;
    color: #25D366;
    letter-spacing: -2px;
}

.bubble-1 { animation-delay: 0.8s; }
.bubble-2 { animation-delay: 1.5s; }
.bubble-3 { animation-delay: 2.2s; }
.bubble-4 { animation-delay: 2.9s; }
.bubble-5 { animation-delay: 3.6s; }

@keyframes bubbleAppear {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.phone-input-bar {
    background: white;
    margin: 0.5rem;
    border-radius: 25px;
    padding: 0.6rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.phone-input-placeholder {
    font-size: 0.72rem;
    color: #aaa;
}

.phone-send-btn {
    width: 28px;
    height: 28px;
    background: #075E54;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
}

/* Orbiting emoji icons */
.orbit-icon {
    position: absolute;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.orbit-1 { top: 5%;  left: 5%;  animation: orbitFloat 5s 0s    ease-in-out infinite; }
.orbit-2 { top: 15%; right: 2%; animation: orbitFloat 6s 1s    ease-in-out infinite; }
.orbit-3 { bottom: 20%; left: 2%; animation: orbitFloat 4.5s 0.5s ease-in-out infinite; }
.orbit-4 { top: 45%; left: 0;  animation: orbitFloat 5.5s 2s  ease-in-out infinite; }
.orbit-5 { bottom: 8%; right: 5%; animation: orbitFloat 7s 1.5s ease-in-out infinite; }

@keyframes orbitFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50%       { transform: translateY(-15px) rotate(15deg) scale(1.1); }
}

/* ---- Scroll Indicator ---- */

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: heroFadeUp 1s 1s ease both;
}

.scroll-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.45;
    color: var(--text);
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
}

.scroll-chevron {
    width: 14px;
    height: 14px;
    border-right: 2px solid rgba(44,44,44,0.4);
    border-bottom: 2px solid rgba(44,44,44,0.4);
    transform: rotate(45deg);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

.scroll-chevron:nth-child(2) {
    animation-delay: 0.2s;
    opacity: 0.5;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0);    opacity: 1; }
    50%       { transform: rotate(45deg) translateY(5px);  opacity: 0.4; }
}

/* ---- Reusable gradient text (kept for other sections) ---- */
.gradient-text {
    background: linear-gradient(135deg, var(--teal), var(--lavender), var(--peach));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Wave Divider */
.wave-divider {
    position: relative;
    width: 100%;
    height: 120px;
    margin-top: -1px;
}

.wave-divider.inverted {
    margin-top: 0;
    margin-bottom: -1px;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Stats Section */
.stats {
    background: var(--yellow);
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    opacity: 0.7;
}

/* =============================================
   WHY JOIN SECTION — Premium Redesign
   ============================================= */

.why-join {
    padding: 9rem 2rem;
    background: linear-gradient(160deg, #fffbf5 0%, #fff8f0 50%, #fffaf6 100%);
    position: relative;
    overflow: hidden;
}

/* Animated blobs — same recipe as hero */
.why-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
}

.why-blob-1 {
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, rgba(255, 171, 118, 0.38) 0%, rgba(255, 243, 196, 0.18) 70%);
    top: -180px;
    left: -140px;
    animation: whyBlob1 20s ease-in-out infinite;
}

.why-blob-2 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(196, 181, 232, 0.38) 0%, rgba(127, 181, 176, 0.12) 70%);
    bottom: -160px;
    right: -120px;
    animation: whyBlob2 24s ease-in-out infinite;
}

.why-blob-3 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255, 243, 196, 0.55) 0%, transparent 70%);
    top: 40%;
    left: 55%;
    animation: whyBlob3 18s ease-in-out infinite;
}

.why-blob-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(127, 181, 176, 0.35) 0%, transparent 70%);
    top: 15%;
    right: 15%;
    animation: whyBlob1 26s ease-in-out infinite reverse;
}

@keyframes whyBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(50px, -55px) scale(1.12); }
    66%       { transform: translate(-25px, 35px) scale(0.9); }
}

@keyframes whyBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    40%       { transform: translate(-55px, 45px) scale(1.1); }
    80%       { transform: translate(35px, -25px) scale(0.92); }
}

@keyframes whyBlob3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(60px, -45px) scale(1.15); }
}

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

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Gradient accent word — warm orange→peach→lavender (matches hero) */
.why-gradient-word {
    background: linear-gradient(135deg, #FF6B35, #FFAB76, #C4B5E8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShimmer 4s ease infinite;
}

.section-subtitle {
    font-size: 1.25rem;
    opacity: 0.68;
    font-weight: 400;
}

/* 3-column equal grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Glassmorphism cards */
.why-card {
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 28px;
    border: 1.5px solid rgba(255, 171, 118, 0.3);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    box-shadow:
        0 4px 24px rgba(255, 171, 118, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    opacity: 1;
    transform: translateY(0);
}

/* Inner top shine */
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
}

/* Subtle warm radial glow behind icon */
.why-card::after {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 171, 118, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0.6;
}

.why-card:hover::after {
    opacity: 1;
}

/* Visible state (animate-in) */
.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover: lift + warm orange/peach glow */
.why-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 171, 118, 0.55);
    box-shadow:
        0 20px 60px rgba(255, 107, 53, 0.18),
        0 8px 30px rgba(255, 171, 118, 0.22),
        0 0 0 1px rgba(255, 171, 118, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

/* Stagger reveal */
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }

/* Icon */
.why-card-icon {
    font-size: 3rem;
    margin-bottom: 1.4rem;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1;
}

.why-card:hover .why-card-icon {
    transform: scale(1.25) rotate(10deg);
}

/* Title */
.why-card h3 {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    letter-spacing: -0.01em;
    color: var(--text);
}

/* Description */
.why-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    opacity: 0.72;
    color: var(--text);
    font-weight: 400;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Topics Section — Editorial Stack */
.topics {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.topics-title { color: white; }
.topics-subtitle { color: rgba(255,255,255,0.65); }
.topics-gradient-word {
    background: linear-gradient(90deg, #FFAB76, #FFF3C4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header-asymmetric {
    max-width: 800px;
    margin-bottom: 4rem;
}

.topics-stack {
    max-width: 900px;
}

.topic-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 1rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    transition: padding 0.25s ease;
}

.topic-row:first-child { border-top: 1px solid rgba(0,0,0,0.1); }

.topic-row:hover .topic-row-title,
.topic-row.open .topic-row-title {
    color: #1e3a8a;
}

.topic-row-left {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topic-row-emoji {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.topic-row-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    transition: color 0.25s ease;
}

.topic-row-arrow {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.4rem;
    color: #1e3a8a;
    opacity: 0.35;
    transition: all 0.3s ease;
    flex-shrink: 0;
    user-select: none;
}

.topic-row.open .topic-row-arrow {
    transform: rotate(90deg);
    opacity: 1;
}

.topic-row-desc {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
    padding-left: 2.6rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.topic-row.open .topic-row-desc {
    max-height: 120px;
    opacity: 1;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .topic-row-title { font-size: 1.2rem; }
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #FFF3C4 0%, #F5E6D3 50%, #C4B5E8 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-quote {
    position: absolute;
    font-size: 20rem;
    font-family: Georgia, serif;
    font-weight: 900;
    opacity: 0.06;
    line-height: 1;
    color: #2C2C2C;
    pointer-events: none;
}
.tq-left { top: -2rem; left: -2rem; }
.tq-right { bottom: -2rem; right: -2rem; }

.testimonials-title { color: #2C2C2C; }
.testimonials-subtitle { color: rgba(44,44,44,0.65); }
.testimonials-gradient-word {
    background: linear-gradient(90deg, #FF8C42, #C4B5E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.testimonial-middle { transform: translateY(-24px); }

.testimonial-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.6);
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}
.testimonial-middle:hover { transform: translateY(-32px); }

.testimonial-deco-quote {
    font-size: 4rem;
    font-family: Georgia, serif;
    font-weight: 900;
    background: linear-gradient(90deg, #FFAB76, #C4B5E8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #2C2C2C;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}
.tav-s { background: linear-gradient(135deg, #FFAB76, #FF8C42); }
.tav-m { background: linear-gradient(135deg, #7FB5B0, #5F9EA0); }
.tav-a { background: linear-gradient(135deg, #C4B5E8, #9B8DC4); }

.testimonial-author {
    font-weight: 700;
    font-size: 1rem;
    color: #2C2C2C;
}
.testimonial-meta {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Final CTA Section */
.final-cta {
    padding: 10rem 2rem;
    background: linear-gradient(135deg, #FF8C42 0%, #FFAB76 40%, #C4B5E8 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-eyebrow {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.cta-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: white;
}

.cta-gradient {
    background: linear-gradient(90deg, #FFF3C4, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.9);
}

.cta-reassurance {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
}

.cta-button-final {
    display: inline-block;
    background: white;
    color: #FF8C42;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 1.2rem 3rem;
    border-radius: 60px;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: ctaPulse 2.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.cta-button-final:hover {
    transform: scale(1.05);
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 10px 60px rgba(255,140,66,0.5), 0 0 0 12px rgba(255,255,255,0.15); }
}

/* Footer */
.footer {
    background: var(--text);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: 0.9rem;
    font-style: italic;
}

/* Animation classes */
.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive - Wider Layout */
@media (max-width: 768px) {
    .hero {
        padding: 7rem 1.5rem 5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-badge {
        margin: 0 auto 1.5rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

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

    .hero-visual {
        height: 380px;
    }

    .phone-mockup {
        width: 220px;
    }

    .phone-screen {
        height: 340px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .topic-wide { grid-column: span 1; }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-middle { transform: translateY(0); }
    .testimonial-middle:hover { transform: translateY(-8px); }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 4.5rem);
    }

    .section-title {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

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

/* ============================================
   LIGHT BLUE, NAVY & WHITE THEME
   ============================================ */

body { background: #f0f6ff; color: #0f172a; }

.blob-1 { background: radial-gradient(circle, rgba(147,197,253,0.45) 0%, transparent 70%); }
.blob-2 { background: radial-gradient(circle, rgba(186,230,253,0.35) 0%, transparent 70%); }
.blob-3 { background: radial-gradient(circle, rgba(165,214,255,0.3) 0%, transparent 70%); }

#navbar { background: transparent; }
#navbar { background: rgba(240,246,255,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(15,23,42,0.07); }
#navbar.scrolled { background: rgba(240,246,255,0.97); box-shadow: 0 2px 16px rgba(15,23,42,0.08); }
.logo { color: #0f172a; }
.nav-drop-btn { color: #475569; border-color: rgba(15,23,42,0.12); }
.nav-cta { background: #1e3a8a; color: #fff; font-weight: 700; }
.nav-cta:hover { background: #1e40af; }
.nav-cta.nav-wa { background: #25D366 !important; color: #fff; }
.nav-cta.nav-wa:hover { background: #1ebe5d !important; }

.hero-blob-1 { background: radial-gradient(circle, rgba(147,197,253,0.6) 0%, transparent 70%); }
.hero-blob-2 { background: radial-gradient(circle, rgba(186,230,253,0.5) 0%, transparent 70%); }
.hero-blob-3 { background: radial-gradient(circle, rgba(224,242,254,0.7) 0%, transparent 70%); }
.hero-blob-4 { background: radial-gradient(circle, rgba(203,213,225,0.5) 0%, transparent 70%); }

.hero-badge { background: rgba(30,58,138,0.08); border-color: rgba(30,58,138,0.25); color: #1e3a8a; }
.hero-badge-dot { background: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.2); }
.hero-title { color: #0f172a; }
.hero-gradient-word {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle { color: #475569; }
.cta-primary { background: linear-gradient(135deg, #1e3a8a, #2563eb); color: #fff; box-shadow: 0 8px 30px rgba(30,58,138,0.3); }
.cta-primary:hover { box-shadow: 0 14px 45px rgba(30,58,138,0.45); }
.cta-secondary { color: #0f172a; border-color: rgba(15,23,42,0.15); }
.cta-secondary:hover { background: rgba(30,58,138,0.06); border-color: #1e3a8a; color: #1e3a8a; }

.phone-mockup { background: #fff; box-shadow: 0 30px 80px rgba(15,23,42,0.12), 0 0 0 1px rgba(15,23,42,0.06); }
.orbit-icon { background: #fff; box-shadow: 0 8px 25px rgba(15,23,42,0.1); }

.stats { background: #fff; border-top: 1px solid rgba(15,23,42,0.08); border-bottom: 1px solid rgba(15,23,42,0.08); }
.stat-number { color: #1e3a8a; }
.stat-label { color: #64748b; }

.why-join { background: #e8f0fe; }
.why-blob-1 { background: radial-gradient(circle, rgba(147,197,253,0.4) 0%, transparent 70%); }
.why-blob-2 { background: radial-gradient(circle, rgba(186,230,253,0.3) 0%, transparent 70%); }
.why-blob-3 { background: radial-gradient(circle, rgba(165,214,255,0.25) 0%, transparent 70%); }
.why-blob-4 { background: radial-gradient(circle, rgba(203,213,225,0.4) 0%, transparent 70%); }
.section-title { color: #0f172a; }
.section-subtitle { color: #64748b; }
.why-gradient-word {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.why-card { background: #fff; border-color: rgba(30,58,138,0.12); box-shadow: 0 4px 20px rgba(15,23,42,0.06); }
.why-card:hover { border-color: rgba(30,58,138,0.3); box-shadow: 0 20px 50px rgba(30,58,138,0.1); }
.why-card h3 { color: #0f172a; }
.why-card p { color: #64748b; }

.topics { background: #f8faff; }
.topics-title { color: #0f172a; }
.topics-gradient-word {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.topic-row { border-bottom-color: rgba(30,58,138,0.1); }
.topic-row:first-child { border-top-color: rgba(30,58,138,0.1); }
.topic-row:hover .topic-row-title { color: #1e3a8a; }
.topic-row-title { color: #0f172a; }
.topic-row-desc { color: #64748b; }
.topic-row-arrow { color: #1e3a8a; }

.testimonials { background: #fff; }
.testimonials-bg-quote { color: rgba(30,58,138,0.08); }
.testimonials-title { color: #0f172a; }
.testimonials-subtitle { color: #64748b; }
.testimonials-gradient-word {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.testimonial-card { background: #f8faff; border: 1px solid rgba(30,58,138,0.08); box-shadow: 0 4px 20px rgba(15,23,42,0.05); }
.testimonial-card:hover { box-shadow: 0 20px 50px rgba(30,58,138,0.1); border-color: rgba(30,58,138,0.2); }
.testimonial-deco-quote {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.testimonial-text { color: #374151; }
.testimonial-author { color: #0f172a; }
.testimonial-meta { color: #94a3b8; }
.tav-s { background: linear-gradient(135deg, #1e3a8a, #2563eb); color: #fff; }
.tav-m { background: linear-gradient(135deg, #0ea5e9, #38bdf8); color: #fff; }
.tav-a { background: linear-gradient(135deg, #6366f1, #818cf8); color: #fff; }

.final-cta { background: linear-gradient(135deg, #e8f0fe 0%, #dbeafe 50%, #bfdbfe 100%); }
.cta-eyebrow { color: #64748b; }
.cta-title { color: #0f172a; }
.cta-gradient {
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cta-subtitle { color: #475569; }
.cta-reassurance { color: #94a3b8; }
.cta-button-final { background: #1e3a8a; color: #fff; }
.cta-button-final:hover { background: #1e40af; }
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(30,58,138,0.25); }
    50% { box-shadow: 0 10px 60px rgba(30,58,138,0.45), 0 0 0 12px rgba(30,58,138,0.08); }
}

.scroll-label { color: #94a3b8; }
.scroll-chevron { border-color: rgba(15,23,42,0.25); }

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    background: #f0f6ff;
}

.faq-title { color: #0f172a; }
.faq-subtitle { color: #64748b; }

.faq-stack {
    max-width: 900px;
    margin-top: 3rem;
}

.faq-row {
    border-bottom: 1px solid rgba(30,58,138,0.1);
    cursor: pointer;
    padding: 1.6rem 0;
}

.faq-row:first-child { border-top: 1px solid rgba(30,58,138,0.1); }

.faq-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.25s ease;
}

.faq-row:hover .faq-question,
.faq-row.open .faq-question { color: #1e3a8a; }

.faq-arrow {
    font-size: 1.2rem;
    color: #1e3a8a;
    opacity: 0.35;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-row.open .faq-arrow {
    transform: rotate(90deg);
    opacity: 1;
}

.faq-answer {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.faq-row.open .faq-answer {
    max-height: 150px;
    opacity: 1;
    margin-top: 0.75rem;
}

.footer { background: #0f172a; }
.footer-brand h3 { color: #60a5fa; }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-bottom { border-color: rgba(255,255,255,0.1); }
.footer-bottom p { color: rgba(255,255,255,0.35); }
