 * {
      box-sizing: border-box;
      scroll-behavior: smooth;
    }
    html,
    body {
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }
    body { font-family: 'Inter', sans-serif; }

/* ===== NAVBAR ===== */
#navbar {
    transition: all .35s ease;
}

#navbar .backdrop-blur-xl {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* ===== MOBILE MENU ===== */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

#mobile-menu.open {
    max-height: 500px;
}

/* ===== HERO SECTION ===== */
.hero-bg {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 40%, #dcfce7 70%, #064E3B 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(22, 163, 74, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(134, 239, 172, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

/* ===== GLASSMORPHISM ===== */
.glass-card {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* ===== ANIMATIONS ===== */
.float-anim {
    animation: floatUp 4s ease-in-out infinite;
}

.float-anim-delay {
    animation: floatUp 4s ease-in-out 1.5s infinite;
}

@keyframes floatUp {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.float-card {
    animation: floatCard 5s ease-in-out infinite;
}

.float-card-2 { animation: floatCard 5s ease-in-out 2s infinite; }

    @media (max-width: 640px) {
      .glass-card {
        max-width: calc(100vw - 2rem);
      }

      .green-band {
        height: 48px;
        clip-path: polygon(0 24px, 100% 0, 100% 48px, 0 48px);
      }
    }

/* ===== COUNTER ANIMATION ===== */
.count-anim {
    animation: countUp 0.6s ease forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STAT CARDS ===== */
.stat-card {
    animation: statPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes statPop {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #4bfa00, #064E3B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION PILL ===== */
.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    color: #064E3B;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}

/* ===== HOVER EFFECTS ===== */
.hover-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(22, 163, 74, 0.12);
}

/* ===== STEP CONNECTOR ===== */
.step-connector {
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: linear-gradient(90deg, #064E3B, #064E3B);
}

/* ===== STEP CIRCLE ===== */
.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #064E3B, #064E3B);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

/* ===== ICON RING ===== */
.icon-ring {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== NAVBAR SCROLL ===== */
.navbar-scroll {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ===== FAQ ACCORDION ===== */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-content.open {
    max-height: 300px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.open {
    transform: rotate(45deg);
}

/* ===== BUTTON SHIMMER ===== */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-shimmer:hover::after {
    left: 120%;
}

/* ===== GREEN BAND ===== */
.green-band {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: white;
    clip-path: polygon(0 40px, 100% 0, 100% 80px, 0 80px);
}

/* ===== LEFT PANEL ===== */
.left-panel {
    background: linear-gradient(160deg, #14532d 0%, #064E3B 55%, #064E3B 100%);
    position: relative;
    overflow: hidden;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 65%;
    height: 65%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

/* ===== FORM ELEMENTS ===== */
.input-field {
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-field:focus {
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
    outline: none;
}

.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.error-msg {
    color: #ef4444;
    font-size: 0.72rem;
    margin-top: 4px;
    display: none;
}

.error-msg.show {
    display: block;
}

/* ===== PASSWORD STRENGTH ===== */
.strength-bar {
    height: 4px;
    border-radius: 999px;
    transition: width 0.4s ease, background-color 0.4s ease;
}

/* ===== FORM CONTAINER ===== */
.form-container {
    animation: slideIn 0.5s ease both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STEP DOTS ===== */
.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: background 0.3s;
}

.step-dot.active {
    background: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
    #navbar {
        top: 8px;
    }

    #navbar .max-w-7xl {
        padding-left: 12px;
        padding-right: 12px;
    }

    #mobile-menu {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        border-radius: 0 0 18px 18px;
    }
}