/* ============================================================
   Devata Studio — Design System v1.0
   Dark theme • CGBoost red • Academy glassmorphism
   Migrasi dari WordPress (Astra+Elementor) ke custom static
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    /* Brand (referensi CGBoost #ff5959) */
    --brand-red:        #ff5959;
    --brand-red-dark:   #ce4646;
    --brand-red-deep:   #a03636;
    --brand-red-glow:   rgba(255, 89, 89, 0.20);
    --brand-gradient:   linear-gradient(135deg, #ff5959 0%, #ce4646 100%);

    /* Neutrals (dark — blend CGBoost+Academy) */
    --bg-body:          #0f0f11;
    --bg-section:       #141416;
    --bg-card:          #1a1a1e;
    --bg-card-hover:    #222226;
    --bg-glass:         rgba(20, 20, 22, 0.80);
    --bg-input:         #1a1a1e;
    --bg-input-focus:   #222226;

    /* Text */
    --text-heading:     #f6f5f3;
    --text-body:        #b0b7c1;
    --text-muted:       #6a6f78;
    --text-link:        #ff5959;

    /* Overlays */
    --white-80:         rgba(255,255,255,0.80);
    --white-10:         rgba(255,255,255,0.10);
    --white-6:          rgba(255,255,255,0.06);
    --white-3:          rgba(255,255,255,0.03);

    /* Semantic */
    --success:  #4ade80;
    --warning:  #fbbf24;
    --danger:   #ef4444;
    --info:     #60a5fa;

    /* Typography */
    --font-heading: 'Chakra Petch', 'Montserrat', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Spacing */
    --radius-sm:   4px;
    --radius:      8px;
    --radius-lg:   14px;
    --radius-xl:   20px;
    --radius-pill:  50px;
    --container:   1200px;
    --header-h:    72px;

    /* Shadows */
    --shadow:      0 4px 24px rgba(0,0,0,0.30);
    --shadow-lg:   0 12px 48px rgba(0,0,0,0.50);
    --shadow-glow: 0 0 40px var(--brand-red-glow);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 1px var(--white-3);

    /* Transitions */
    --ease:             0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce:      0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out-expo:    0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: var(--text-link); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--brand-red-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}
::selection { background: rgba(255,89,89,0.30); color: #fff; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--white-10); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--white-80); }

/* ── Container ─────────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: var(--white-6);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-heading);
    text-decoration: none;
}
.navbar__logo img {
    height: 36px;
    width: auto;
}
.navbar__logo span { color: var(--brand-red); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-menu a {
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--ease);
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--brand-red);
    transition: width var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-heading);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}
.nav-cta {
    padding: 10px 24px;
    background: var(--brand-gradient);
    color: #fff !important;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform var(--ease), box-shadow var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--brand-red-glow);
    color: #fff !important;
}

/* Mobile menu toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-heading);
    transition: all var(--ease);
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--ease);
    text-decoration: none;
    line-height: 1;
}
.btn-primary {
    background: var(--brand-gradient);
    color: #fff;
    box-shadow: 0 4px 15px var(--brand-red-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,89,89,0.35);
    color: #fff;
}
.btn-secondary {
    background: transparent;
    color: var(--text-heading);
    border: 1px solid var(--white-10);
}
.btn-secondary:hover {
    background: var(--white-6);
    border-color: var(--white-10);
    color: var(--text-heading);
}
.btn-ghost {
    background: transparent;
    color: var(--brand-red);
    padding: 14px 16px;
}
.btn-ghost:hover {
    color: var(--text-heading);
}
.btn-icon {
    width: 20px;
    height: 20px;
}
.btn-sm {
    padding: 10px 22px;
    font-size: 0.8rem;
}

/* ── Section Base ──────────────────────────────────────────── */
.section {
    padding: 100px 0;
}
.section--alt {
    background: var(--bg-section);
}
.section__overline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-red);
    margin-bottom: 16px;
}
.section__overline::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--brand-red);
}
.section__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.section__subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 640px;
    line-height: 1.8;
}
.section__header {
    margin-bottom: 56px;
}
.section__header--center {
    text-align: center;
}
.section__header--center .section__subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ── Hero Section ──────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15,15,17,0.75) 0%,
        rgba(15,15,17,0.60) 40%,
        rgba(15,15,17,0.92) 85%,
        #0f0f11 100%
    ),
    radial-gradient(circle at 65% 35%, rgba(255,89,89,0.12) 0%, transparent 60%);
    z-index: 1;
}

/* ── Page Hero (Subpages) ──────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background-color: var(--bg-body);
    background-image: linear-gradient(180deg, rgba(15,15,17,0.85) 0%, rgba(15,15,17,0.96) 100%), url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center 30%;
    text-align: center;
    border-bottom: 1px solid var(--white-6);
}
.page-hero__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: var(--text-heading);
}
.page-hero__desc {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(255,89,89,0.08);
    border: 1px solid rgba(255,89,89,0.15);
    border-radius: var(--radius-pill);
}
.hero__title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero__title em {
    font-style: normal;
    color: var(--brand-red);
}
.hero__desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 36px;
    max-width: 580px;
}
.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
    position: relative;
    z-index: 2;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--white-6);
    border-bottom: 1px solid var(--white-6);
}
.stats-bar .container {
    display: flex;
    justify-content: center;
    gap: 0;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid var(--white-6);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.stat-number span { color: var(--brand-red); }
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Cards ─────────────────────────────────────────────────── */
.card-grid {
    display: grid;
    gap: 24px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--bg-card);
    border: 1px solid var(--white-6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--ease);
    position: relative;
}
.card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: rgba(255,89,89,0.15);
    box-shadow: var(--shadow-glow);
}
.card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ease-out-expo);
}
.card:hover .card__image img {
    transform: scale(1.05);
}
.card__body {
    padding: 24px;
}
.card__badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-pill);
    background: rgba(255,89,89,0.12);
    color: var(--brand-red);
    margin-bottom: 12px;
}
.card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--brand-red);
}
.card__link svg { width: 16px; height: 16px; }
.card__link:hover { color: var(--text-heading); }

/* ── Feature Cards (icon + text) ───────────────────────────── */
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--white-6);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--ease);
}
.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,89,89,0.15);
    transform: translateY(-4px);
}
.feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,89,89,0.08);
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.feature-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.feature-card__desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── CTA Section (Full Width Seamless) ─────────────────────── */
.section--cta,
section.cta-section,
.section:has(.cta-section) {
    position: relative;
    background: radial-gradient(circle at 50% 40%, rgba(255,89,89,0.08) 0%, rgba(15,15,17,0) 70%), var(--bg-section);
    border-top: 1px solid var(--white-4);
    border-bottom: 1px solid var(--white-4);
}
.cta-section {
    position: relative;
    padding: 20px 0;
    text-align: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
.cta-section::before {
    display: none !important;
}
.cta-section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: var(--text-heading);
}
.cta-section__desc {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 580px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ── Portal Preview ────────────────────────────────────────── */
.preview-showcase {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--white-6);
    box-shadow: var(--shadow-lg);
}
.preview-showcase img {
    width: 100%;
    display: block;
}
.preview-showcase__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-body) 0%, transparent 40%);
    pointer-events: none;
}

/* ── Split Section (Problem → Solution) ────────────────────── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.split-section--reverse {
    direction: rtl;
}
.split-section--reverse > * {
    direction: ltr;
}
.split-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--white-6);
    box-shadow: var(--shadow);
}
.split-visual img {
    width: 100%;
    display: block;
}

/* ── Ecosystem Visual ──────────────────────────────────────── */
.ecosystem {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.ecosystem__step {
    text-align: center;
    position: relative;
    padding: 32px 16px;
}
.ecosystem__step::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-muted);
}
.ecosystem__step:last-child::after { display: none; }
.ecosystem__number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 50%;
    margin: 0 auto 16px;
}
.ecosystem__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: 8px;
}
.ecosystem__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Values Grid ───────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value-icon,
.service-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,89,89,0.08);
    border: 1px solid rgba(255,89,89,0.15);
    border-radius: var(--radius);
}
.service-icon {
    margin-bottom: 20px;
}
.value-icon svg,
.feature-card__icon svg,
.contact-icon svg,
.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--brand-red);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}
.value-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.value-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--white-6);
    padding: 64px 0 32px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer__brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 300px;
    line-height: 1.6;
}
.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer__socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-10);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all var(--ease);
}
.footer__socials a:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}
.footer__col-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-heading);
    margin-bottom: 20px;
}
.footer__links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color var(--ease);
}
.footer__links a:hover { color: var(--brand-red); }
.footer__bottom {
    border-top: 1px solid var(--white-6);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    background: var(--bg-section);
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-10), transparent);
}
.page-hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 16px;
}
.page-hero__desc {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Contact Grid ──────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--white-6);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all var(--ease);
    text-decoration: none;
}
.contact-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,89,89,0.15);
    transform: translateY(-2px);
}
.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,89,89,0.08);
    border-radius: var(--radius);
    font-size: 1.4rem;
}
.contact-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.contact-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Job Cards ─────────────────────────────────────────────── */
.job-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.job-card {
    background: var(--bg-card);
    border: 1px solid var(--white-6);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--ease);
}
.job-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255,89,89,0.15);
}
.job-card__info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.job-card__info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.job-card__tags {
    display: flex;
    gap: 8px;
}
.job-tag {
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    background: var(--white-6);
    color: var(--text-body);
}

/* ── Comparison (Before/After) ─────────────────────────────── */
.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}
.comparison__col {
    background: var(--bg-card);
    border: 1px solid var(--white-6);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.comparison__col--before { border-color: rgba(239,68,68,0.2); }
.comparison__col--after { border-color: rgba(74,222,128,0.2); }
.comparison__divider {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: var(--text-muted);
}
.comparison__label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.comparison__col--before .comparison__label { color: var(--danger); }
.comparison__col--after .comparison__label { color: var(--success); }
.comparison__text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ── Tech Stack ────────────────────────────────────────────── */
.tech-stack {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
}
.tech-badge {
    padding: 8px 20px;
    background: var(--bg-card);
    border: 1px solid var(--white-6);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-body);
}

/* ── Scroll Animations ─────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .ecosystem { grid-template-columns: repeat(2, 1fr); }
    .ecosystem__step::after { display: none; }
    .split-section { grid-template-columns: 1fr; gap: 32px; }
    .split-section--reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .nav-menu { 
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(15,15,17,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 1050;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { font-size: 1.2rem; }
    .hamburger { display: flex; }
    
    .card-grid--3,
    .card-grid--4,
    .card-grid--2 { grid-template-columns: 1fr; }
    
    .stats-bar .container { flex-direction: column; }
    .stat-item { 
        border-right: none; 
        border-bottom: 1px solid var(--white-6);
        padding: 20px;
    }
    .stat-item:last-child { border-bottom: none; }
    
    .footer__grid { grid-template-columns: 1fr; gap: 24px; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    
    .hero__actions { flex-direction: column; align-items: flex-start; }
    
    .values-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    
    .comparison { grid-template-columns: 1fr; gap: 16px; }
    .comparison__divider { 
        justify-content: center;
        transform: rotate(90deg);
    }
    
    .job-card { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ecosystem { grid-template-columns: 1fr 1fr; }
    
    .page-hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero__title { font-size: 2rem; }
    .section__title { font-size: 1.6rem; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .ecosystem { grid-template-columns: 1fr; }
}

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-red { color: var(--brand-red); }
.text-muted { color: var(--text-muted); }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.inline-flex { display: inline-flex; }
.w-full { width: 100%; }
.max-w-lg { max-width: 720px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Media & Video Spotlight Cards ────────────────────────── */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-4 { grid-template-columns: 1fr; }
}

.media-card {
    background: var(--bg-card);
    border: 1px solid var(--white-6);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 89, 89, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.media-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
    display: block;
}
.media-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ease);
}
.media-card:hover .media-card__thumb img {
    transform: scale(1.05);
}
.media-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--ease), background var(--ease);
}
.media-card:hover .media-card__play {
    transform: scale(1.15);
    background: var(--brand-red);
}
.media-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #fff;
    padding: 3px 8px;
    border-radius: 99px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.media-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.media-card__speaker {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 6px;
}
.media-card__title {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.media-card__title a {
    color: var(--text-heading);
    text-decoration: none;
    transition: color var(--ease);
}
.media-card__title a:hover {
    color: var(--brand-red);
}
.media-card__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}
.media-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-red);
    text-decoration: none;
    transition: color var(--ease);
}
.media-card__cta:hover {
    color: var(--text-heading);
}
