:root {
    --color-primary: #10B981;
    --color-primary-dark: #059669;
    --color-primary-glow: rgba(16, 185, 129, 0.25);
    --color-bg: #0d0f12;
    --color-bg-alt: #14171c;
    --color-bg-card: #1a1d24;
    --color-text: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Outfit', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* =====================
   CUSTOM CURSOR
   ===================== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, background 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(16, 185, 129, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

.cursor-ring.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--color-primary);
    opacity: 0.5;
}

/* =====================
   INTRO SCREEN
   ===================== */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.intro-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Logo */
.intro-logo-wrap {
    position: relative;
    display: inline-block;
}

.intro-logo {
    max-width: 220px;
    height: auto;
    opacity: 0;
    transform: scale(0.6) translateY(30px);
    animation: introLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(16, 185, 129, 0.5));
}

.intro-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    opacity: 0;
    animation: glowPulse 2.5s ease-in-out 0.8s infinite;
    border-radius: 50%;
    pointer-events: none;
}

@keyframes introLogoIn {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(30px);
    }

    60% {
        opacity: 1;
        transform: scale(1.04) translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Tagline words */
.intro-tagline {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.intro-word {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-text);
    opacity: 0;
    transform: translateY(50px) rotateX(-40deg);
    display: inline-block;
    animation: wordReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-word:nth-child(1) {
    animation-delay: 0.9s;
}

.intro-word:nth-child(2) {
    animation-delay: 1.1s;
}

.intro-word:nth-child(3) {
    animation-delay: 1.3s;
}

.intro-accent {
    color: var(--color-primary);
    position: relative;
}

.intro-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    animation: lineGrow 0.6s ease 1.8s forwards;
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-40deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes lineGrow {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* Progress bar */
.intro-progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInSimple 0.5s ease 1.4s forwards;
}

.intro-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary), #6ee7b7);
    border-radius: 2px;
    animation: progressFill 2s ease 1.5s forwards;
    box-shadow: 0 0 8px var(--color-primary-glow);
}

@keyframes progressFill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes fadeInSimple {
    to {
        opacity: 1;
    }
}

/* Curtain exit */
.intro-curtain-top,
.intro-curtain-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--color-bg);
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}

.intro-curtain-top {
    top: 0;
    transform: translateY(-101%);
}

.intro-curtain-bottom {
    bottom: 0;
    transform: translateY(101%);
}

/* When intro exits, curtains slide in from edges, then content drops away */
.intro-screen.exit-curtain .intro-curtain-top {
    transform: translateY(0);
}

.intro-screen.exit-curtain .intro-curtain-bottom {
    transform: translateY(0);
}

.intro-screen.exit-collapse {
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    opacity: 0;
}

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.animate-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.12s;
}

.delay-2 {
    transition-delay: 0.24s;
}

.delay-3 {
    transition-delay: 0.36s;
}

.delay-0 {
    transition-delay: 0s;
}

/* =====================
   CONTAINER
   ===================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
    cursor: none;
    border: 1px solid transparent;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Ripple pseudo-element */
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.07);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: rgba(16, 185, 129, 0.08);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 45px;
    font-size: 1.05rem;
}

/* =====================
   NAVBAR
   ===================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    z-index: 1000;
    transition: var(--transition-fast);
}

nav.scrolled {
    background-color: rgba(13, 15, 18, 0.85);
    padding: 10px 0;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 200px;
    height: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo img:hover {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    transition: var(--transition-fast);
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

/* =====================
   HERO
   ===================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1540497077202-7c8a3999166f?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 15, 18, 0.97) 0%, rgba(13, 15, 18, 0.55) 100%);
}

/* Floating hero particles wrapper */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0;
    animation: floatParticle var(--dur, 6s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    20% {
        opacity: var(--op, 0.4);
    }

    80% {
        opacity: var(--op, 0.4);
    }

    100% {
        transform: translateY(-120vh) scale(0.5);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 40px;
    background: rgba(16, 185, 129, 0.07);
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: 4.8rem;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.05;
}

/* Shimmering text effect */
.text-shine {
    color: var(--color-primary);
    background: linear-gradient(90deg, #10B981 0%, #6ee7b7 40%, #10B981 60%, #059669 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s linear infinite;
}

@keyframes textShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 44px;
    font-weight: 300;
    max-width: 520px;
}

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollHintFade 2s ease 3s both;
}

@keyframes scrollHintFade {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

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

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

    100% {
        opacity: 0;
        transform: translateY(14px);
    }
}

/* =====================
   SECTIONS COMMON
   ===================== */
.section {
    padding: 120px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.section-title span {
    color: var(--color-primary);
}

/* =====================
   STATS
   ===================== */
.stats {
    background-color: var(--color-bg);
    padding: 70px 0;
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.6s ease;
    border-radius: 2px;
}

.stat-item.active::after {
    width: 60%;
}

.stat-item h3 {
    font-size: 3.8rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 800;
    letter-spacing: -2px;
}

.stat-item p {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* =====================
   BENEFITS
   ===================== */
.benefits {
    background-color: var(--color-bg-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--color-bg-card);
    padding: 50px 40px;
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}

/* Animated gradient border on hover */
.card-glow-border {
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, var(--color-primary), transparent 50%, var(--color-primary-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--color-bg-card);
    border-radius: 15px;
    z-index: 0;
}

.benefit-card>* {
    position: relative;
    z-index: 1;
}

.benefit-card:hover .card-glow-border {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(16, 185, 129, 0.08);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-primary);
    transform: scale(0);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-wrapper i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.benefit-card:hover .icon-wrapper::before {
    transform: scale(1);
}

.benefit-card:hover .icon-wrapper i {
    color: #fff;
}

.benefit-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    color: #fff;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* =====================
   PRICING
   ===================== */
.pricing {
    background-color: var(--color-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--color-bg-alt);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid var(--color-border);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
}

.pricing-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.pricing-glow::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(16, 185, 129, 0.05) 25%, transparent 50%);
    animation: cardRotateGlow 8s linear infinite;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover .pricing-glow::before {
    opacity: 1;
}

.pricing-card > *:not(.pricing-glow) {
    position: relative;
    z-index: 1;
}

@keyframes cardRotateGlow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.pricing-card.highlighted {
    background: var(--color-bg-alt);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.15), 0 8px 32px rgba(0,0,0,0.3);
}

.pricing-card.highlighted:hover {
    background: linear-gradient(180deg, #16181d 0%, rgba(16, 185, 129, 0.06) 100%);
    border-color: rgba(16, 185, 129, 0.7);
    box-shadow: 
        0 0 0 1px rgba(16, 185, 129, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.6), 
        0 0 80px rgba(16, 185, 129, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.06);
    transform: translateY(-14px) scale(1.01);
}

/* Border Beam Effect */
.pricing-card.highlighted::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from 0deg at 50% 50%, 
                transparent 0%, 
                transparent 75%, 
                var(--color-primary) 90%,
                #6ee7b7 100%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotateBeam 2.5s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.pricing-card.highlighted:hover::before {
    opacity: 1;
}

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

/* =====================
   POPULAR BADGE — Always visible
   ===================== */
.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #059669 0%, #10B981 50%, #34d399 100%);
    color: #fff;
    padding: 7px 20px 7px 16px;
    border-radius: 30px;
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 4px 20px rgba(16, 185, 129, 0.55),
        0 1px 0 rgba(255,255,255,0.2) inset;
    backdrop-filter: blur(8px);
    z-index: 10;
    animation: badgePulse 2.8s ease-in-out infinite;
    pointer-events: none;
}

/* Star icon before text */
.popular-badge::before {
    content: '★';
    font-size: 0.65rem;
    opacity: 0.9;
    line-height: 1;
    letter-spacing: 0;
}

/* Shimmer sweep */
.popular-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmerBadge 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerBadge {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.55), 0 1px 0 rgba(255,255,255,0.2) inset;
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 6px 30px rgba(16, 185, 129, 0.85), 0 1px 0 rgba(255,255,255,0.2) inset;
        transform: translateX(-50%) scale(1.04);
    }
}

.card-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

.card-header h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-text-muted);
    font-weight: 400;
}

.price {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
}

.price span:first-child {
    font-size: 1.8rem;
    margin-top: 8px;
    margin-right: 4px;
    color: var(--color-text-muted);
}

.price span:last-child {
    font-size: 1rem;
    color: var(--color-text-muted);
    align-self: flex-end;
    margin-bottom: 12px;
    margin-left: 4px;
    font-weight: 400;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-body ul {
    margin-bottom: 40px;
    flex-grow: 1;
}

.card-body li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.card-body li:hover {
    color: var(--color-text);
    transform: translateX(4px);
}

.card-body li i {
    color: var(--color-primary);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.card-body .btn {
    width: 100%;
}

/* =====================
   CTA SECTION
   ===================== */
.cta {
    background: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?q=80&w=2070&auto=format&fit=crop') center/cover fixed;
    position: relative;
    text-align: center;
    padding: 160px 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 15, 18, 0.97) 0%, rgba(16, 185, 129, 0.08) 100%);
}

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

.cta h2 {
    font-size: 3.6rem;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -1px;
    font-weight: 800;
}

.cta h2 span {
    color: var(--color-primary);
}

.cta p {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 44px;
    font-weight: 300;
}

/* =====================
   FOOTER
   ===================== */
footer {
    background-color: #080a0c;
    padding: 80px 0 0;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--color-text-muted);
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-contact h3,
.footer-schedule h3,
.footer-social h3 {
    font-size: 1.05rem;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-contact p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact p:hover {
    color: var(--color-text);
}

.footer-contact p i {
    color: var(--color-primary);
}

.footer-schedule p {
    color: var(--color-text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    max-width: 220px;
}

.footer-schedule p span {
    color: #ffffff;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--color-border);
}

.social-icons a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-5px) rotate(-5deg);
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    border-top: 1px solid var(--color-border);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

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

    .stat-item h3 {
        font-size: 2.8rem;
    }

    .cta h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 15, 18, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        clip-path: circle(0% at 50% 0);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links.active {
        clip-path: circle(150% at 50% 0);
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 2.2rem;
    }

    .price {
        font-size: 3rem;
    }

    .footer-content {
        gap: 40px;
    }

    .hero-scroll-hint {
        display: none;
    }

    .intro-word {
        font-size: 1.8rem;
    }

    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }
}

.footer-schedule {
    display: grid;
    row-gap: 0;
}

.footer-schedule h3 {
    margin-bottom: 25px;
}

.schedule-row {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    align-items: baseline;
}

.schedule-row span:first-child {
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.schedule-row span:last-child {
    color: var(--color-text-muted);
}