 * {
      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 {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.18) 0%, transparent 35%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.15) 0%, transparent 30%),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.12) 0%, transparent 35%),
        linear-gradient(
            135deg,
            #05010d 0%,
            #0b0617 25%,
            #130824 50%,
            #090314 75%,
            #020103 100%
        );
}

/* Large Purple Glow */
.hero-bg::before {
    content: "";
    position: absolute;
    top: -250px;
    left: -150px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: #7c3aed;
    opacity: 0.18;
    filter: blur(150px);
    pointer-events: none;
}

/* Blue-Purple Glow */
.hero-bg::after {
    content: "";
    position: absolute;
    bottom: -300px;
    right: -150px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: #8b5cf6;
    opacity: 0.15;
    filter: blur(180px);
    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);
}

.hero-image {
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 0.6s ease;
}

.hero-img {
    transition:
        transform 0.8s cubic-bezier(.2,.8,.2,1),
        filter 0.8s ease,
        box-shadow 0.8s ease;
}

/* Overlay */
.hero-overlay {
    transition: all 0.6s ease;
}

/* Shine Layer */
.hero-shine {
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 40%,
        rgba(255,255,255,0.15) 50%,
        transparent 60%,
        transparent 100%
    );

    transform: translateX(-150%);
    transition: transform 1s ease;
}

/* Hover Effects */
.hero-image:hover {
    transform: translateY(-10px);
}

.hero-image:hover .hero-img {

    transform:
        scale(1.06)
        rotateX(3deg)
        rotateY(-3deg);

    filter:
        brightness(1.08)
        contrast(1.05);

    box-shadow:
        0 35px 100px rgba(139,92,246,.45),
        0 10px 40px rgba(168,85,247,.25);
}

.hero-image:hover .hero-overlay {
    background:
        linear-gradient(
            to top,
            rgba(5,1,13,.95),
            rgba(139,92,246,.08),
            transparent
        );
}

.hero-image:hover .hero-shine {
    transform: translateX(150%);
}

@keyframes floatingImage {
    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-image {
    animation: floatingImage 6s ease-in-out infinite;
}

.hero-image:hover {
    animation-play-state: paused;
}

/* =========================================
   ANIMATED GRADIENT TEXT
========================================= */

.animated-gradient-text {
    background: linear-gradient(
        90deg,
        #a855f7,
        #d946ef,
        #ec4899,
        #f59e0b,
        #a855f7
    );

    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    animation: gradientMove 6s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}


.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all .9s ease;
}

.reveal-left {
    transform: translateY(50px);
}

.reveal-right {
    transform: translateY(50px);
}

.reveal-left.show,
.reveal-right.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-bg {
    background:
        radial-gradient(circle at top left, rgba(168, 85, 247, 0.18) 0%, transparent 35%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.12) 0%, transparent 30%),
        radial-gradient(circle at bottom left, rgba(236, 72, 153, 0.10) 0%, transparent 35%),
        linear-gradient(
            135deg,
            #05010d 0%,
            #0b0617 25%,
            #130824 50%,
            #090314 75%,
            #020103 100%
        );
}

.hero-image {
    transition: all .4s ease;
}

.hero-image:hover {
    transform: translateY(-8px);
}

.hero-shine {
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,.08) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform .8s ease;
}

.hero-image:hover .hero-shine {
    transform: translateX(100%);
}

/* Desktop Optimization */
@media (min-width: 1024px) {
    .hero-bg {
        min-height: 100vh;
    }

    .hero-image img {
        max-width: 700px;
    }
}

.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all .9s ease;
}

.reveal-left {
    transform: translateX(-80px);
}

.reveal-right {
    transform: translateX(80px);
}

.reveal-left.show,
.reveal-right.show {
    opacity: 1;
    transform: translateX(0);
}
/* ===== 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;
    }
}