/* ============================================================
   RAVEN MEDYA — Premium CSS v6
   Dark Neon | Clean Structure | No Bugs
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');

/* ---- RESET ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---- CSS VARIABLES ---- */
:root {
    --black: #080808;
    --dark: #111111;
    --card: #161616;
    --purple: #9b30ff;
    --cyan: #00e5ff;
    --white: #ffffff;
    --gray: #888888;
    --border: rgba(255, 255, 255, 0.1);
    --glow-purple: 0 0 40px rgba(155, 48, 255, 0.35);
    --glow-cyan: 0 0 40px rgba(0, 229, 255, 0.35);
    --radius: 12px;
    --font: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- BASE ---- */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ---- CONTAINER ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- GRADIENT TEXT UTILITY ---- */
.g-text {
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 72px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(8, 8, 8, 0.85);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav__logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    transition: color 0.25s ease;
}

.nav__links a:hover,
.nav__links a.active {
    color: var(--white);
}

.nav__cta {
    background: var(--purple);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

.nav__cta:hover {
    box-shadow: var(--glow-purple);
    transform: translateY(-2px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

/* Ambient blobs */
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    pointer-events: none;
}

.hero__blob--purple {
    width: 500px;
    height: 500px;
    background: var(--purple);
    top: -100px;
    right: -100px;
}

.hero__blob--cyan {
    width: 350px;
    height: 350px;
    background: var(--cyan);
    bottom: 50px;
    left: -50px;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--cyan);
    margin-bottom: 28px;
}

.hero__label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--cyan);
}

.hero__title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.0;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero__sub {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 540px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.35s var(--ease);
    white-space: nowrap;
}

.btn--primary {
    background: var(--purple);
    color: var(--white);
}

.btn--primary:hover {
    box-shadow: var(--glow-purple);
    transform: translateY(-3px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
}

.btn--outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 120px 0;
}

.section--dark {
    background: var(--dark);
}

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--purple);
    margin-bottom: 16px;
}

.section__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section__desc {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ============================================================
   SERVICES — FEATURED + SUB GRID
   ============================================================ */
.services-section {
    background: var(--black);
}

/* ---- Full-width Yayıncılık block ---- */
.featured-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    background: linear-gradient(135deg, #130820 0%, #091525 60%, #0d1020 100%);
    border: 1px solid rgba(155, 48, 255, 0.3);
    border-radius: 20px;
    padding: 52px 56px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.featured-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.featured-service::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 48, 255, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.featured-service:hover {
    border-color: rgba(155, 48, 255, 0.5);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.featured-service__left {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex: 1;
}

.featured-service__icon-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(155, 48, 255, 0.15);
    border: 1px solid rgba(155, 48, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin-top: 4px;
}

.featured-service__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 229, 255, 0.07);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 14px;
}

.featured-service__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.featured-service__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.featured-service__text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 28px;
}

/* Feature checklist */
.fs-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-top: 28px;
    margin-bottom: 24px;
}

.fs-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.fs-check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(0, 229, 255, 0.12);
    border: 1px solid rgba(0, 229, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--cyan);
    flex-shrink: 0;
    font-weight: 800;
}

/* Platform badges */
.fs-platforms {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fs-platform-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.fs-platform-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.fs-platform-badge--tiktok {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.fs-platform-badge--amar {
    background: rgba(155, 48, 255, 0.15);
    border: 1px solid rgba(155, 48, 255, 0.35);
    color: var(--purple);
}

/* Stats on the right */
.featured-service__stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
    padding-left: 48px;
    border-left: 1px solid var(--border);
    min-width: 180px;
}

.featured-service__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.featured-service__stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
}

.featured-service__stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

/* ---- "Diğer Hizmetler" separator label ---- */
.sub-services-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    margin-top: 8px;
}

.sub-services-label span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
}

.sub-services-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ---- 4-column equal grid ---- */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .sub-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .featured-service {
        flex-direction: column;
        padding: 36px 28px;
        gap: 32px;
    }

    .featured-service__left {
        flex-direction: column;
        gap: 20px;
    }

    .featured-service__stats {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid var(--border);
        padding-left: 0;
        padding-top: 28px;
        width: 100%;
        justify-content: space-around;
        min-width: unset;
    }
}

@media (max-width: 560px) {
    .sub-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   DİĞER HİZMETLER — Icon + Text List
   ============================================================ */
.other-services-section {
    padding-top: 80px;
}

.other-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.other-service-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 36px 40px;
    border: 1px solid transparent;
    border-bottom-color: var(--border);
    transition: background 0.3s ease, border-color 0.3s ease;
    border-radius: 0;
    position: relative;
}

/* Right column items get a left border */
.other-service-item:nth-child(even) {
    border-left-color: var(--border);
}

.other-service-item:nth-child(3),
.other-service-item:nth-child(4) {
    border-bottom-color: transparent;
}

.other-service-item:hover {
    background: rgba(155, 48, 255, 0.04);
    border-color: rgba(155, 48, 255, 0.15) !important;
}

.other-service-item__icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    border: 1px solid var(--border);
    margin-top: 2px;
    transition: background 0.3s ease;
}

.other-service-item:hover .other-service-item__icon {
    background: rgba(155, 48, 255, 0.1);
    border-color: rgba(155, 48, 255, 0.25);
}

.other-service-item__body {
    flex: 1;
}

.other-service-item__title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.other-service-item__desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.other-service-item__link {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.other-service-item__link:hover {
    gap: 10px;
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .other-service-item:nth-child(even) {
        border-left-color: transparent;
    }

    .other-service-item:nth-child(3) {
        border-bottom-color: var(--border);
    }

    .other-service-item {
        padding: 28px 20px;
    }
}

/* ============================================================
   PLATFORM CARDS — Premium Redesign
   ============================================================ */
.platform-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.platform-card {
    border-radius: 20px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

/* Ambient glow blob in corner */
.platform-card::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.platform-card:hover {
    transform: translateY(-8px);
}

/* ---- TikTok ---- */
.platform-card--tiktok {
    background: linear-gradient(145deg, #0d1117 0%, #0f1520 100%);
    border-color: rgba(0, 229, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.05);
}

.platform-card--tiktok::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan) 0%, var(--purple) 100%);
    border-radius: 0 0 0 20px;
}

.platform-card--tiktok::after {
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 65%);
}

.platform-card--tiktok:hover {
    box-shadow: 0 24px 64px rgba(0, 229, 255, 0.1), 0 0 0 1px rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.22);
}

/* ---- Amar ---- */
.platform-card--amar {
    background: linear-gradient(145deg, #120a1f 0%, #0e0e1a 100%);
    border-color: rgba(155, 48, 255, 0.15);
    box-shadow: inset 0 0 0 1px rgba(155, 48, 255, 0.05);
}

.platform-card--amar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--purple) 0%, var(--cyan) 100%);
    border-radius: 0 0 0 20px;
}

.platform-card--amar::after {
    background: radial-gradient(circle, rgba(155, 48, 255, 0.1) 0%, transparent 65%);
}

.platform-card--amar:hover {
    box-shadow: 0 24px 64px rgba(155, 48, 255, 0.12), 0 0 0 1px rgba(155, 48, 255, 0.25);
    border-color: rgba(155, 48, 255, 0.3);
}

/* Header */
.platform-card__header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.platform-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

/* Badge */
.platform-card__badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
}

/* Name */
.platform-card__name {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    color: var(--white);
}

/* Description */
.platform-card__desc {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.78;
    margin-bottom: 24px;
}

/* Tag chips */
.platform-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.platform-card--tiktok .platform-card__tags span {
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.15);
    color: rgba(0, 229, 255, 0.8);
}

.platform-card--amar .platform-card__tags span {
    background: rgba(155, 48, 255, 0.07);
    border: 1px solid rgba(155, 48, 255, 0.2);
    color: rgba(155, 48, 255, 0.9);
}

.platform-card__tags span {
    font-size: 0.73rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

/* Link */
.platform-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: gap 0.25s var(--ease), opacity 0.25s ease;
}

.platform-card--tiktok .platform-card__link {
    color: var(--cyan);
}

.platform-card--amar .platform-card__link {
    color: var(--purple);
}

.platform-card__link:hover {
    gap: 14px;
    opacity: 1;
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .platform-cards {
        grid-template-columns: 1fr;
    }
}


.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

/* Featured card spans 7 of 12 cols, full height */
.bento-card--featured {
    grid-column: span 7;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #1a0d2e 0%, #0d1a2e 100%);
    border-color: rgba(155, 48, 255, 0.25);
}

/* Pair rows: 4 cards share the remaining 5 cols, split into 3+2 per row */
.bento-card:nth-child(2),
.bento-card:nth-child(4) {
    grid-column: span 3;
}

.bento-card:nth-child(3),
.bento-card:nth-child(5) {
    grid-column: span 2;
}

/* ---- Base card ---- */
.bento-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* Subtle gradient corner glow */
.bento-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(155, 48, 255, 0.18) 0%, transparent 70%);
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(155, 48, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(155, 48, 255, 0.15);
}

/* ---- Number label ---- */
.bento-card__num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: rgba(155, 48, 255, 0.6);
    margin-bottom: 20px;
    font-feature-settings: "tnum";
}

/* ---- Icon (featured) ---- */
.bento-card__icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(155, 48, 255, 0.12);
    border: 1px solid rgba(155, 48, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 28px;
    transition: background 0.3s ease;
}

.bento-card--featured:hover .bento-card__icon-wrap {
    background: rgba(155, 48, 255, 0.22);
}

/* ---- Icon (small) ---- */
.bento-card__icon--sm {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 18px;
}

/* ---- Tag badge ---- */
.bento-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 100px;
    padding: 5px 12px;
    margin-bottom: 16px;
}

.bento-card__tag::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 6px var(--cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ---- Body (featured layout) ---- */
.bento-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ---- Title ---- */
.bento-card__title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.bento-card--featured .bento-card__title {
    font-size: 1.9rem;
    letter-spacing: -1px;
}

/* ---- Text ---- */
.bento-card__text {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 28px;
    flex: 1;
}

/* ---- Link ---- */
.bento-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cyan);
    transition: gap 0.25s var(--ease), color 0.25s ease;
    margin-top: auto;
}

.bento-card--featured .bento-card__link {
    background: linear-gradient(90deg, var(--purple), var(--cyan));
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.85rem;
    justify-content: center;
    width: fit-content;
    letter-spacing: 1px;
    gap: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bento-card--featured .bento-card__link:hover {
    box-shadow: 0 0 32px rgba(155, 48, 255, 0.5);
    transform: translateY(-2px);
}

.bento-card__link:not(.bento-card--featured .bento-card__link):hover {
    gap: 12px;
    color: var(--white);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .bento-card--featured,
    .bento-card:not(.bento-card--featured),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4),
    .bento-card:nth-child(5) {
        grid-column: span 2;
    }
}

@media (max-width: 560px) {
    .bento-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bento-card--featured,
    .bento-card:not(.bento-card--featured),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4),
    .bento-card:nth-child(5) {
        grid-column: span 1;
    }

    .bento-card--featured {
        grid-row: span 1;
    }
}

/* ============================================================
   STATS / NUMBERS
   ============================================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat__number {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.stat__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* ============================================================
   FAQ / SSS
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid var(--border);
    padding: 0;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
    transition: color 0.2s ease;
}

.faq-btn:hover {
    color: var(--cyan);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-item.open .faq-icon {
    border-color: var(--purple);
    color: var(--purple);
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease), padding 0.45s var(--ease);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 28px;
}

/* ============================================================
   BROADCAST PAGE — RECRUIT HERO
   ============================================================ */
.broadcast-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.broadcast-hero .hero__blob--purple {
    top: -50px;
    right: 0;
}

.broadcast-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    counter-reset: step;
}

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: border-color 0.3s ease;
    counter-increment: step;
}

.step-card::before {
    content: "0" counter(step);
    position: absolute;
    top: 28px;
    right: 24px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
}

.step-card:hover {
    border-color: var(--purple);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--purple);
    margin-bottom: 6px;
}

.contact-detail__value {
    font-size: 1rem;
    font-weight: 600;
}

/* Form */
.form-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 18px;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #555;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(155, 48, 255, 0.15);
}

.form-select option {
    background: var(--dark);
    color: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
}

.footer__logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.footer__tagline {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray);
    margin-bottom: 20px;
}

.footer__links a {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 12px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer__links a:hover {
    opacity: 1;
}

.footer__bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray);
    font-size: 0.82rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.fade-up:nth-child(1) {
    transition-delay: 0.05s;
}

.fade-up:nth-child(2) {
    transition-delay: 0.12s;
}

.fade-up:nth-child(3) {
    transition-delay: 0.19s;
}

.fade-up:nth-child(4) {
    transition-delay: 0.26s;
}

/* ============================================================
   PAGE-SPECIFIC HERO PADDING
   ============================================================ */
.page-hero {
    padding: 140px 0 80px;
}

.page-hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.page-hero__sub {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 560px;
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .nav__links {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}