@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===========================
   DESIGN SYSTEM — TOKENS
   =========================== */
:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #4ade80;
    --primary-ultra-light: #86efac;
    --bg-dark: #000c07;
    --bg-surface: #041d11;
    --bg-card: rgba(10, 45, 28, 0.4);
    --bg-card-hover: rgba(10, 45, 28, 0.6);
    --text-white: #ffffff;
    --text-gray: #94a3b8;
    --text-body: #c8d4e0;
    --glow: 0 0 20px rgba(34, 197, 94, 0.3);
    --glow-strong: 0 0 40px rgba(34, 197, 94, 0.4), 0 0 80px rgba(34, 197, 94, 0.15);
    --glow-subtle: 0 0 60px rgba(34, 197, 94, 0.08);
    --border: 1px solid rgba(255, 255, 255, 0.08);
    --border-glow: 1px solid rgba(34, 197, 94, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.5s var(--ease-out-expo);
}

/* ===========================
   RESET & BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
}

h1 span {
    color: var(--primary);
    text-shadow: var(--glow);
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    background-size: 200% 100%;
    animation: gradientFlow 2s ease infinite;
    z-index: 10000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5), 0 0 20px rgba(34, 197, 94, 0.2);
}

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

/* ===========================
   FLOATING NAVBAR — REMOVED
   =========================== */


/* ===========================
   PARTICLE CANVAS
   =========================== */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* ===========================
   SCROLL REVEAL ANIMATIONS
   =========================== */
.reveal {
    opacity: 0;
    transition: opacity 0.9s var(--ease-out-expo),
                transform 0.9s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal.reveal-left {
    transform: translateX(-60px);
}

.reveal.reveal-right {
    transform: translateX(60px);
}

.reveal.reveal-up {
    transform: translateY(50px);
}

.reveal:not(.reveal-left):not(.reveal-right):not(.reveal-up) {
    transform: translateY(30px);
}

.reveal.revealed {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* ===========================
   SECTION TAGS (Labels)
   =========================== */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.18);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag i {
    font-size: 0.8rem;
}

.section-header .section-title {
    margin-bottom: 0;
}

/* ===========================
   PREMIUM BUTTONS
   =========================== */
.btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background-color: var(--primary);
    color: #000;
    padding: 18px 40px;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-elastic);
    box-shadow: var(--glow);
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
}

.btn:hover {
    background-color: var(--primary-light);
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.5), 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Button glow effect */
.btn-glow-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(34, 197, 94, 0.3),
        transparent,
        transparent
    );
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Premium button variant with shimmer + ripple */
.btn-premium {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    border-radius: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary) 0%, #15803d 50%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: btnGradientShift 4s ease infinite;
    color: #000;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35), 0 0 0 0 rgba(34, 197, 94, 0);
    transition: all 0.4s var(--ease-elastic);
    z-index: 1;
}

.btn-premium:hover {
    box-shadow: var(--glow-strong);
}

.btn-premium:active {
    transform: scale(0.97) !important;
}

.btn-premium .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-premium .btn-content i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-premium:hover .btn-content i {
    transform: scale(1.2) rotate(-5deg);
}

/* Shimmer sweep effect */
.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    z-index: 3;
    animation: shimmerSweep 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerSweep {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

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

/* Pulse ring (for final CTA) */
.btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    border: 2px solid var(--primary);
    animation: pulseRing 2s ease-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulseRing {
    0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.25, 1.6);
    }
}

/* Ripple on click */
.btn-ripple {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
    z-index: 5;
}

@keyframes rippleEffect {
    to {
        transform: scale(40);
        opacity: 0;
    }
}

/* Larger button variants */
.btn-lg {
    padding: 22px 56px;
    font-size: 1.2rem;
    border-radius: 18px;
}

.btn-xl {
    padding: 24px 60px;
    font-size: 1.25rem;
    border-radius: 20px;
}

/* ===========================
   LAYOUT
   =========================== */
section {
    padding: 110px 0;
    position: relative;
}

.bg-alt {
    background-color: var(--bg-surface);
}

.section-title {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.glass {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass:hover {
    border-color: rgba(34, 197, 94, 0.12);
    box-shadow: var(--glow-subtle);
}

/* ===========================
   HERO — FULLSCREEN BACKGROUND
   =========================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png');
    background-size: cover;
    background-position: center center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background:
        linear-gradient(to right,
            rgba(0, 12, 7, 0.88) 0%,
            rgba(0, 12, 7, 0.7) 20%,
            rgba(0, 12, 7, 0.3) 40%,
            transparent 60%
        ),
        linear-gradient(to top, var(--bg-dark) 0%, transparent 25%);
}

/* Geometric shapes for hero */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(34, 197, 94, 0.08);
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 100px;
    left: 30%;
    animation-delay: -7s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 25%;
    animation-delay: -14s;
    border-radius: 30%;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    25% { opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.3; }
    75% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: none;
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    margin: 0;
}

.hero-text {
    max-width: 420px;
}

/* Hero elements are always visible — no entry animation */
.hero-logo,
.hero-title,
.hero-subtitle,
.cta-wrapper {
    opacity: 1;
    transform: none;
}

/* Only scroll indicator animates in */
.scroll-indicator {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
}

.scroll-indicator.animate-in {
    opacity: 1;
    transform: translateX(-50%) translateY(0) !important;
}

.hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 18px 0;
    font-weight: 800;
}

.title-highlight {
    color: var(--primary);
    text-shadow: var(--glow);
    position: relative;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.7;
}

.hero-logo {
    max-height: 55px;
    width: auto;
    margin-top: 15px;
    margin-bottom: 25px;
    display: block;
}

/* Trust bar under CTA */
.cta-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding-bottom: 0;
}

.trust-avatars {
    display: flex;
    gap: 4px;
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: trustPulse 2s ease-in-out infinite;
}

.trust-dot:nth-child(2) { animation-delay: 0.3s; opacity: 0.7; }
.trust-dot:nth-child(3) { animation-delay: 0.6s; opacity: 0.4; }

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

.trust-text {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(30px) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
    transition: opacity 0.5s ease, transform 0.8s var(--ease-out-expo) !important;
}

.scroll-indicator.animate-in {
    transform: translateX(-50%) translateY(0) !important;
    opacity: 1;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 3px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===========================
   STATS BANNER
   =========================== */
.stats-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(4, 29, 17, 0.95), rgba(0, 12, 7, 0.95));
    border-top: 1px solid rgba(34, 197, 94, 0.08);
    border-bottom: 1px solid rgba(34, 197, 94, 0.08);
    position: relative;
    overflow: hidden;
}

.stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(34, 197, 94, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(34, 197, 94, 0.2), transparent);
}

/* ===========================
   CHECKLIST
   =========================== */
.check-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.check-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.check-item:hover {
    transform: translateX(10px);
}

.check-item:hover::before {
    opacity: 1;
}

.check-icon-wrap {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.15);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    z-index: 1;
}

.check-item:hover .check-icon-wrap {
    background: rgba(34, 197, 94, 0.18);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.25);
    border-color: rgba(34, 197, 94, 0.3);
    transform: scale(1.1);
}

.check-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

.check-item p {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.7;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ===========================
   MOTIVO CARDS (Benefits)
   =========================== */
.section-title .highlight {
    color: var(--primary);
    font-style: italic;
    position: relative;
}

.motivo-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.motivo-card {
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, rgba(10, 45, 28, 0.5), rgba(0, 12, 7, 0.7));
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo),
                box-shadow 0.6s var(--ease-out-expo),
                border-color 0.4s ease;
    will-change: transform;
}

.motivo-card:hover {
    box-shadow: 0 25px 70px rgba(34, 197, 94, 0.12), 0 0 40px rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.25);
}

.motivo-card.reverse {
    flex-direction: row-reverse;
}

.motivo-img-area {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.img-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 12, 7, 0.2), transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.motivo-img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
    transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
}

.motivo-card:hover .motivo-img-area img {
    transform: scale(1.08);
}

.motivo-text {
    flex: 1;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.motivo-badge {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 6px 16px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    width: fit-content;
    transition: all 0.3s ease;
}

.motivo-card:hover .motivo-badge {
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.motivo-text h3 {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.motivo-text p {
    font-size: 1.08rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 12px;
    font-weight: 400;
}

/* ===========================
   MID-PAGE CTA
   =========================== */
.mid-cta {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mid-cta-text {
    font-size: 1.4rem;
    color: var(--text-body);
    margin-bottom: 30px;
    font-weight: 400;
}

/* ===========================
   PROOF / TESTIMONIALS
   =========================== */
.proof-quote-text {
    max-width: 900px;
    margin: 0 auto 70px;
    font-size: 1.45rem;
    line-height: 2.15;
    color: var(--text-body);
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.02em;
    word-spacing: 0.08em;
}

.proof-quote-text strong {
    color: var(--text-white);
    font-weight: 600;
}

.proof-quote-text em {
    color: var(--primary);
    font-style: italic;
    font-weight: 500;
}

/* Slider */
.proof-slider {
    padding: 20px 0 60px;
    overflow: visible !important;
}

.proof-slider .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.4s ease;
}

.proof-slider .swiper-slide-active {
    transform: scale(1.05);
    z-index: 10;
}

.proof-slider .swiper-slide img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.proof-slider .swiper-slide-active img {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.15);
}

/* Swiper navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
    background: rgba(0, 12, 7, 0.8);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    border: 1px solid rgba(34, 197, 94, 0.15);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: 0.3;
    width: 10px;
    height: 10px;
    transition: all 0.4s var(--ease-out-expo);
}

.swiper-pagination-bullet-active {
    opacity: 1;
    box-shadow: var(--glow);
    transform: scale(1.3);
    width: 28px;
    border-radius: 6px;
}

/* ===========================
   MENTOR
   =========================== */
.mentor-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.mentor-image {
    flex: 1;
}

.mentor-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: var(--border-glow);
    box-shadow: var(--glow);
    transition: box-shadow 0.5s ease, transform 0.6s var(--ease-out-expo);
    will-change: transform;
}

.mentor-frame:hover {
    box-shadow: var(--glow-strong);
}

.mentor-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.8s var(--ease-out-expo);
}

/* Mentor name tag overlay */
.mentor-name-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px 20px;
    background: linear-gradient(to top, rgba(0, 12, 7, 0.95), rgba(0, 12, 7, 0.6), transparent);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 3;
}

.mentor-name-tag strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: var(--text-white);
    font-weight: 700;
}

.mentor-name-tag span {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.mentor-bio {
    flex: 1.5;
}

.mentor-bio .section-header {
    margin-bottom: 30px;
}

.mentor-bio p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    font-weight: 400;
}

.mentor-bio strong {
    color: var(--text-white);
    font-weight: 600;
}

.mentor-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-top: var(--border);
    position: relative;
}

.mentor-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
}

.mentor-footer h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
#final-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-wrap {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 50px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(10, 45, 28, 0.5), rgba(0, 20, 12, 0.85));
    border: 1px solid rgba(34, 197, 94, 0.12);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), var(--glow-subtle);
}

.final-cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
    animation: glowRotate 12s linear infinite;
    pointer-events: none;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
}

.final-cta-wrap h2 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.final-cta-wrap p {
    font-size: 1.2rem;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Urgency bar */
.final-cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    animation: urgencyBlink 1.5s ease-in-out infinite;
}

@keyframes urgencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.final-cta-urgency span {
    font-size: 0.82rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: var(--border);
    color: var(--text-gray);
    font-size: 0.9rem;
    background: var(--bg-dark);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.15), transparent);
}

/* ===========================
   RESPONSIVE — TABLET (992px)
   =========================== */
@media (max-width: 992px) {
    .hero-text {
        max-width: 380px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-overlay {
        background:
            linear-gradient(to right,
                var(--bg-dark) 0%,
                rgba(0, 12, 7, 0.95) 25%,
                rgba(0, 12, 7, 0.85) 40%,
                rgba(0, 12, 7, 0.6) 60%,
                rgba(0, 12, 7, 0.3) 80%
            ),
            linear-gradient(to top, var(--bg-dark) 0%, transparent 25%);
    }
    .mentor-content {
        flex-direction: column;
        text-align: center;
    }
    .section-title-left {
        text-align: center;
    }
    .btn-xl {
        padding: 20px 40px;
        font-size: 1.1rem;
    }
    .stats-grid {
        gap: 20px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-divider {
        display: none;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* ===========================
   RESPONSIVE — MOBILE (768px)
   =========================== */
@media (max-width: 768px) {
    /* === HERO MOBILE === */
    #hero {
        height: auto;
        min-height: auto;
        padding: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 55vw;
        min-height: 280px;
        max-height: 400px;
        background-position: 65% 15%;
        background-size: cover;
        transform: none !important;
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 12, 7, 0.1) 20%,
            rgba(0, 12, 7, 0.35) 40%,
            rgba(0, 12, 7, 0.65) 60%,
            rgba(0, 12, 7, 0.9) 80%,
            var(--bg-dark) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    .hero-overlay {
        display: none;
    }

    .hero-shapes {
        display: none;
    }

    .hero-content {
        position: relative;
        padding: 0 24px 40px;
        margin-top: -60px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.55rem;
        line-height: 1.3;
        margin: 12px 0;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 0.95rem;
        color: var(--text-body);
    }

    .hero-logo {
        max-height: 50px;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .cta-wrapper .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    .particle-canvas {
        display: none;
    }

    /* === ANIMATIONS MOBILE === */
    .reveal.reveal-left {
        transform: translateX(-30px);
    }
    .reveal.reveal-right {
        transform: translateX(30px);
    }
    .reveal.reveal-up {
        transform: translateY(30px);
    }
    .reveal:not(.reveal-left):not(.reveal-right):not(.reveal-up) {
        transform: translateY(20px);
    }

    /* === SECTIONS MOBILE === */
    section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.7rem;
        margin-bottom: 40px;
        padding: 0 4px;
    }

    .section-title-left {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .glass {
        padding: 28px 20px;
        border-radius: var(--radius-md);
    }

    /* === STATS MOBILE === */
    .stats-banner {
        padding: 35px 0;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    /* === CHECKLIST MOBILE === */
    .check-item {
        gap: 14px;
        padding: 10px 12px;
    }
    .check-item p {
        font-size: 1rem;
        line-height: 1.6;
    }
    .check-icon-wrap {
        width: 36px;
        height: 36px;
    }
    .check-item i {
        font-size: 1rem;
    }

    /* === MOTIVO CARDS MOBILE === */
    .motivo-card,
    .motivo-card.reverse {
        flex-direction: column;
    }
    .motivo-img-area {
        flex: 0 0 auto;
        max-height: 220px;
    }
    .motivo-img-area img {
        min-height: 200px;
    }
    .motivo-text {
        padding: 24px 20px;
    }
    .motivo-text h3 {
        font-size: 1.3rem;
    }
    .motivo-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* === MID CTA MOBILE === */
    .mid-cta {
        margin-top: 50px;
        padding-top: 40px;
    }
    .mid-cta-text {
        font-size: 1.15rem;
    }

    /* === PROOF QUOTE MOBILE === */
    .proof-quote-text {
        font-size: 1.15rem;
        line-height: 2;
        margin-bottom: 50px;
        padding: 0 8px;
    }

    /* === SWIPER MOBILE === */
    .swiper-slide {
        padding: 0 6px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important;
    }

    /* === MENTOR MOBILE === */
    .mentor-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        margin-bottom: 50px;
    }

    .mentor-frame {
        aspect-ratio: 4/5;
        border-radius: var(--radius-lg);
        max-width: 100%;
    }

    .mentor-frame img {
        object-position: 60% 20%;
    }

    .mentor-bio p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }

    .mentor-bio .section-header {
        text-align: center;
    }

    .mentor-footer {
        padding: 40px 16px;
    }
    .mentor-footer h3 {
        font-size: 1.3rem;
        line-height: 1.5;
    }

    /* === BUTTONS MOBILE === */
    .btn-premium {
        padding: 16px 28px;
        font-size: 0.95rem;
        border-radius: 14px;
        width: 100%;
        max-width: 380px;
    }
    .btn-lg {
        padding: 18px 32px;
        font-size: 1rem;
    }
    .btn-xl {
        padding: 18px 24px;
        font-size: 0.9rem;
    }

    /* === FINAL CTA MOBILE === */
    #final-cta {
        padding: 70px 0;
    }
    .final-cta-wrap {
        padding: 50px 20px;
        border-radius: var(--radius-lg);
    }
    .final-cta-wrap h2 {
        font-size: 1.6rem;
    }
    .final-cta-wrap p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Nav mobile */
    .floating-nav {
        top: 10px;
        width: calc(100% - 24px);
    }
    .nav-inner {
        padding: 10px 16px;
    }
    .nav-cta {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
    .nav-logo {
        height: 26px;
    }
}

/* ===========================
   VERY SMALL SCREENS (480px)
   =========================== */
@media (max-width: 480px) {
    .hero-bg {
        height: 60vw;
        min-height: 240px;
        background-position: 60% 10%;
    }

    .hero-content {
        margin-top: -40px;
        padding: 0 16px 30px;
    }

    .hero-title {
        font-size: 1.35rem;
    }

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

    .proof-quote-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .motivo-text h3 {
        font-size: 1.2rem;
    }

    .final-cta-wrap h2 {
        font-size: 1.4rem;
    }

    .btn-premium {
        padding: 14px 20px;
        font-size: 0.88rem;
    }

    .stats-grid {
        gap: 12px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-item {
        padding: 6px 10px;
    }
}

/* ===========================
   TOUCH / MOBILE INTERACTION
   =========================== */
@media (hover: none) {
    .check-item:hover {
        transform: none;
    }
    .salary-item:hover {
        transform: none;
    }
    .motivo-card:hover {
        transform: none;
    }
    .motivo-card:hover .motivo-img-area img {
        transform: none;
    }
    .btn:hover,
    .btn-premium:hover {
        transform: none;
    }
    .btn:active,
    .btn-premium:active {
        transform: scale(0.97);
    }
    .motivo-card:active {
        border-color: rgba(34, 197, 94, 0.3);
    }
    /* Disable 3D tilt on touch */
    .tilt-card {
        transform: none !important;
    }
}

.text-center {
    text-align: center;
}

/* ===========================
   SALARY LIST (kept for compat)
   =========================== */
.salary-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.salary-item {
    font-size: 1.05rem;
    color: var(--text-white);
    padding: 10px 18px;
    background: rgba(34, 197, 94, 0.06);
    border-left: 3px solid var(--primary);
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
    font-weight: 400;
}

.salary-item:hover {
    background: rgba(34, 197, 94, 0.12);
    transform: translateX(6px);
    border-left-color: var(--primary-light);
}

.salary-item .flag {
    margin-right: 8px;
    font-size: 1.2rem;
}

.salary-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* ===========================
   CUSTOM SELECTION
   =========================== */
::selection {
    background: rgba(34, 197, 94, 0.3);
    color: var(--text-white);
}

::-moz-selection {
    background: rgba(34, 197, 94, 0.3);
    color: var(--text-white);
}

/* ===========================
   CUSTOM SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(34, 197, 94, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(34, 197, 94, 0.4);
}
