/* ═══════════════════════════════════════════════
   CSS VARIABLES & THEME
═══════════════════════════════════════════════ */
:root {
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --accent: #f97316;
    --pink: #ec4899;
    --cyan: #06b6d4;
    --violet: #8b5cf6;

    --grad: linear-gradient(135deg, #f97316 0%, #ec4899 50%, #8b5cf6 100%);
    --grad-text: linear-gradient(90deg, #f97316, #ec4899, #8b5cf6, #06b6d4);
    --grad-hover: linear-gradient(135deg, #fb923c 0%, #f472b6 50%, #a78bfa 100%);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.3s var(--ease-out);
}

[data-theme="dark"] {
    --bg: #07070d;
    --bg2: #0e0e18;
    --bg3: #141422;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.07);
    --border-h: rgba(249, 115, 22, 0.5);
    --text: #f0f0e8;
    --text2: #9090a0;
    --text3: #505060;
    --nav-bg: rgba(7, 7, 13, 0.9);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px rgba(249, 115, 22, 0.15);
    --input-bg: rgba(255, 255, 255, 0.05);
    --prose-bg: rgba(255, 255, 255, 0.03);
}

[data-theme="light"] {
    --bg: #fefcf8;
    --bg2: #ffffff;
    --bg3: #f5f0e8;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.85);
    --border: rgba(0, 0, 0, 0.07);
    --border-h: rgba(249, 115, 22, 0.4);
    --text: #12120e;
    --text2: #52524a;
    --text3: #a3a39a;
    --nav-bg: rgba(254, 252, 248, 0.92);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(249, 115, 22, 0.12);
    --input-bg: rgba(0, 0, 0, 0.04);
    --prose-bg: rgba(0, 0, 0, 0.02);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.4s, color 0.4s;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

ul {
    list-style: none;
}

/* ═══════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 96px 0;
}

.section-sm {
    padding: 64px 0;
}

.text-center {
    text-align: center;
}

.grad-text {
    background: var(--grad-text);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradShift 5s ease infinite;
}

@keyframes gradShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.08);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(0.7);
    }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 48px;
}

/* Fade-in animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 6px 28px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--bg-glass);
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    border-color: var(--border-h);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 38px;
    font-size: 16px;
}

.btn-sm {
    padding: 9px 20px;
    font-size: 13px;
}

.btn-wa {
    background: #25d366;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn-wa:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

#navbar.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.nav-logo-text span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background: rgba(249, 115, 22, 0.07);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-glass);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.theme-btn:hover {
    border-color: var(--accent);
    transform: rotate(20deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1px solid var(--border);
    background: var(--bg-glass);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.hamburger span {
    display: block;
    width: 17px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0 20px;
    border-top: 1px solid var(--border);
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text2);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--accent);
    background: rgba(249, 115, 22, 0.06);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 110px 0 80px;
    background: var(--bg);
}

.hero-bg-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(249, 115, 22, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 45%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.035;
    background-image:
        linear-gradient(var(--text) 1px, transparent 1px),
        linear-gradient(90deg, var(--text) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.08);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 20px;
    animation: fadeSlideDown 0.6s ease both;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 1.5s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 16px;
    color: var(--text);
    animation: fadeSlideDown 0.7s 0.1s ease both;
}

.hero-title br {
    display: block;
}

.hero-punch {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 520px;
    animation: fadeSlideDown 0.7s 0.2s ease both;
}

.hero-punch strong {
    color: var(--text);
}

.price-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    animation: fadeSlideDown 0.7s 0.3s ease both;
}

.price-tag {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-tag .currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-display);
}

.price-tag .amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.price-tag .period {
    font-size: 13px;
    color: var(--text3);
}

.price-old {
    display: flex;
    flex-direction: column;
}

.price-old .original {
    font-size: 1rem;
    color: var(--text3);
    text-decoration: line-through;
}

.price-old .save {
    font-size: 12px;
    font-weight: 700;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(74, 222, 128, 0.25);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    animation: fadeSlideDown 0.7s 0.4s ease both;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text2);
}

.hero-tag iconify-icon {
    color: var(--accent);
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Form */
.hero-form-wrap {
    position: relative;
    animation: fadeSlideDown 0.8s 0.2s ease both;
}

.hero-form-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(249, 115, 22, 0.08);
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad);
}

.form-heading {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    text-align: center;
}

.form-sub {
    font-size: 13px;
    color: var(--text2);
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.5;
}

.form-spots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #f87171;
    font-weight: 600;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 18px;
    text-align: center;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 5px;
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.form-group input::placeholder {
    color: var(--text3);
}

.form-group select option {
    background: var(--bg2);
    color: var(--text);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--grad);
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 4px;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(249, 115, 22, 0.5);
}

.form-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text3);
    margin-top: 12px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
}

.form-success-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #4ade80;
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.6;
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float linear infinite;
    opacity: 0.4;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */
.stats-section {
    padding: 60px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover::before {
    opacity: 0.04;
}

.stat-item:hover {
    border-color: var(--border-h);
    transform: translateY(-4px);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 14px;
    color: var(--text2);
    font-weight: 500;
}

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════
   MARQUEE — COMPANIES
═══════════════════════════════════════════════ */
.marquee-section {
    padding: 64px 0;
    overflow: hidden;
}

.marquee-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 28px;
}

.marquee-track-wrap {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-track-wrap::before,
.marquee-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.marquee-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee-ltr 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-ltr {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.company-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-card);
    margin: 0 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.company-chip:hover {
    border-color: var(--border-h);
    transform: scale(1.03);
}

.company-chip .co-emoji {
    font-size: 1.3rem;
}

.company-chip .co-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.company-chip img {
    width: 120px;
    height: 80px;
    padding: 10px;
    object-fit: contain;
}

/* ═══════════════════════════════════════════════
   CURRICULUM
═══════════════════════════════════════════════ */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.module-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.module-card:hover {
    border-color: var(--border-h);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.module-card:hover::after {
    opacity: 0.03;
}

.module-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.module-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.module-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.module-topics {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.module-topic {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text2);
}

.module-topic::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.module-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* ═══════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-h);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.6rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   BATCHES
═══════════════════════════════════════════════ */
.batches-grid {
    display: grid;
    grid-template-columns: repeat(2, 350px);
    gap: 22px;
    margin-top: 48px;
    justify-content:center;
}

.batch-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 30px 24px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.batch-card.featured {
    border-color: var(--accent);
    background: rgba(249, 115, 22, 0.04);
}

.batch-card.featured::before {
    content: '🔥 Popular';
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--grad);
    color: #fff;
    padding: 3px 12px;
    border-radius: 999px;
}

.batch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.batch-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.batch-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.batch-days {
    font-size: 13px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.batch-time {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}

.batch-detail {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   MENTOR
═══════════════════════════════════════════════ */
.mentor-section {
    background: var(--bg2);
}

.mentor-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 64px;
    align-items: center;
}

.mentor-card-visual {
    position: relative;
}

.mentor-avatar-wrap {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    position: relative;
    overflow: hidden;
    height: 500px;
}

.mentor-avatar-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%);
}

.mentor-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-exp-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--bg2);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

.mentor-exp-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.mentor-exp-label {
    font-size: 11px;
    color: var(--text3);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mentor-name {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.1;
}

.mentor-title {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.mentor-bio {
    font-size: 1rem;
    color: var(--text2);
    line-height: 1.8;
    margin-bottom: 28px;
}

.mentor-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.mentor-stat {
    text-align: center;
}

.mentor-stat-num {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mentor-stat-label {
    font-size: 12px;
    color: var(--text3);
}

.mentor-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--bg3);
    font-size: 13px;
    font-weight: 500;
    color: var(--text2);
    transition: var(--transition);
}

.skill-chip:hover {
    border-color: var(--border-h);
    color: var(--accent);
}

/* ═══════════════════════════════════════════════
   BONUS
═══════════════════════════════════════════════ */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 30px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.bonus-card::before {
    content: 'FREE';
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.bonus-card:hover {
    border-color: var(--border-h);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

.bonus-emoji {
    font-size: 2.8rem;
    margin-bottom: 14px;
    display: block;
}

.bonus-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.bonus-desc {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.6;
}

.bonus-value {
    margin-top: 14px;
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    background: rgba(249, 115, 22, 0.08);
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* ═══════════════════════════════════════════════
   SHOWCASE SLIDER
═══════════════════════════════════════════════ */
.showcase-section {
    background: var(--bg2);
}

.showcase-slider-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
}

.showcase-track {
    display: flex;
    gap: 22px;
    transition: transform 0.5s var(--ease-out);
}

.showcase-card {
    flex: 0 0 340px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.showcase-card:hover {
    border-color: var(--border-h);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.showcase-preview {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.showcase-card:hover .showcase-preview-img {
    transform: scale(1.04);
}

.showcase-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.showcase-card:hover .showcase-preview-overlay {
    opacity: 1;
}

.preview-emoji-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.showcase-body {
    padding: 20px;
}

.showcase-type {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.showcase-desc {
    font-size: 13px;
    color: var(--text2);
    line-height: 1.55;
    margin-bottom: 14px;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(249, 115, 22, 0.25);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.showcase-link:hover {
    background: rgba(249, 115, 22, 0.08);
    transform: translateY(-1px);
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.slider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.slider-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS DUAL MARQUEE
═══════════════════════════════════════════════ */
.testi-row {
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
}

.testi-row::before,
.testi-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testi-row::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.testi-row::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.testi-track {
    display: flex;
    gap: 16px;
    animation: marquee-ltr 35s linear infinite;
    width: max-content;
    padding: 10px 0;
}

.testi-track.reverse {
    animation: marquee-rtl 35s linear infinite;
}

@keyframes marquee-rtl {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.testi-track:hover {
    animation-play-state: paused;
}

.testi-card {
    flex: 0 0 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 22px;
    transition: var(--transition);
}

.testi-card:hover {
    border-color: var(--border-h);
    transform: scale(1.02);
}

.testi-stars {
    color: #facc15;
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    flex-shrink: 0;
    background: var(--grad);
}

.testi-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}

.testi-course {
    font-size: 11px;
    color: var(--text3);
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-banner {
    border-radius: var(--radius-xl);
    padding: 72px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--grad);
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 50%, rgba(255, 255, 255, .2), transparent 55%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-white {
    background: #fff;
    color: #f97316;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    padding: 15px 34px;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-cta-white:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.btn-cta-outline {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 34px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(8px);
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.footer-top {
    padding: 72px 0 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text2);
    line-height: 1.75;
    max-width: 250px;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text2);
    transition: var(--transition);
}

.footer-social:hover {
    border-color: var(--border-h);
    color: var(--accent);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text2);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-nl-sub {
    font-size: 13px;
    color: var(--text2);
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-nl-form {
    display: flex;
    gap: 8px;
}

.footer-nl-input {
    flex: 1;
    padding: 10px 14px;
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
}

.footer-nl-input:focus {
    border-color: var(--accent);
}

.footer-nl-btn {
    padding: 10px 16px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--grad);
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-nl-btn:hover {
    transform: translateY(-1px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    /* justify-content: space-between; */
    padding: 20px 0;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy,
.footer-love {
    font-size: 13px;
    color: var(--text3);
}

.footer-copy a,
.footer-love a {
    color: var(--text2);
    transition: color 0.2s;
}

.footer-copy a:hover,
.footer-love a:hover {
    color: var(--accent);
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.fbadge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text2);
    background: var(--bg-card);
}

/* Scroll To Top */

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--grad);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
#scrollTopBtn:hover {
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    /* Smooth animation */
    opacity: 1;
    transform: translateY(0) scale(1);
    transition:
        opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hide Smoothly */
.whatsapp-btn.hide {
    opacity: 0;
    transform: translateY(40px) scale(0.85);
    pointer-events: none;
}

/* Tooltip */
.wa-tooltip {
    position: absolute;
    right: 60px;
    background: var(--bg2);
    color: var(--text);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);

    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
}

.whatsapp-btn:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(0);
}



/* WHY section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-item:hover {
    border-color: var(--border-h);
    transform: translateX(4px);
}

.why-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.why-title {
    font-family: var(--font-display);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.why-desc {
    font-size: 13.5px;
    color: var(--text2);
    line-height: 1.6;
}

/* Badge pills */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.pill-orange {
    background: rgba(249, 115, 22, 0.12);
    color: var(--accent);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.pill-green {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.pill-blue {
    background: rgba(6, 182, 212, 0.12);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.pill-pink {
    background: rgba(236, 72, 153, 0.12);
    color: var(--pink);
    border: 1px solid rgba(236, 72, 153, 0.2);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .mentor-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mentor-avatar-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .mentor-card-visual {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links,
    .nav-right .btn {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }


    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .batches-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 48px 24px;
        border-radius: var(--radius-lg);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 64px 0;
    }

    .hero-form-card {
        padding: 24px 18px;
    }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .wa-float {
        bottom: 20px;
        right: 20px;
    }

    #scrollTop {
        bottom: 20px;
        right: 80px;
    }

    .hero-badge {
        font-size: 11px;
    }
}



/* =========================================
MODAL
========================================= */

.register-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.35s ease;
}

.register-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Overlay */

.register-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
}

/* Modal Box */

.register-modal-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 600px;

    padding: 20px;

    transform: translateY(40px) scale(.95);
    transition: 0.35s var(--ease-out);
}

.register-modal.active .register-modal-content {
    transform: translateY(0) scale(1);
}

/* Close */

.register-modal-close {
    position: absolute;
    top: 6px;
    right: 6px;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);
    background: var(--bg2);
    color: var(--text);

    border-radius: 50%;
    cursor: pointer;

    font-size: 18px;

    transition: var(--transition);

    z-index: 10;
}

.register-modal-close:hover {
    background: var(--accent);
    color: #fff;
    transform: rotate(90deg);
}

/* Form Card */

.hero-form-card {
    background: var(--bg2);
    border: 1px solid var(--border);

    border-radius: var(--radius-xl);

    padding: 34px;

    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Glow */

.hero-form-card::before {
    content: '';

    position: absolute;
    width: 250px;
    height: 250px;

    background: radial-gradient(circle,
            rgba(249, 115, 22, 0.18),
            transparent 70%);

    top: -100px;
    right: -100px;

    pointer-events: none;
}

/* Rows */

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Group */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;

    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;

    height: 54px;

    padding: 0 16px;

    border-radius: var(--radius-md);

    border: 1px solid var(--border);

    background: var(--input-bg);

    color: var(--text);

    outline: none;

    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

/* Submit */

.form-submit-btn {
    width: 100%;
    height: 56px;

    border: none;
    border-radius: var(--radius-md);

    background: var(--grad);
    color: #fff;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: var(--transition);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    background: var(--grad-hover);
    box-shadow: var(--shadow-glow);
}

/* Success */

.form-success {
    display: none;
    text-align: center;
    padding: 20px 10px;
}

.form-success-icon {
    font-size: 64px;
    margin-bottom: 14px;
}

.form-success h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text);
}

/* Mobile */

@media(max-width:768px) {

    .register-modal-content {
        padding: 14px;
    }

    .hero-form-card {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}

/* =========================================
TOAST
========================================= */

.custom-toast {

    position: fixed;

    top: 24px;
    right: 24px;

    min-width: 300px;
    max-width: 420px;

    padding: 16px 18px;

    background: var(--bg2);

    color: var(--text);

    border: 1px solid var(--border-h);

    border-radius: 16px;

    box-shadow: var(--shadow);

    backdrop-filter: blur(12px);

    z-index: 100000;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);

    transition: .35s ease;
}

.custom-toast.show {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


/* =========================================
SPIN ICON
========================================= */

.spin-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}