/* ==========================================================================
   England IPTV - Global Stylesheet
   Palette: sky blue #0EA5E9, navy #0A2540, lavender #BAE6FD, white
   ========================================================================== */

:root {
    --brand: #0EA5E9;
    --brand-dark: #0284C7;
    --brand-light: #7DD3FC;
    --lavender: #BAE6FD;
    --navy: #0A2540;
    --navy-light: #14304f;
    --white: #ffffff;
    --ink: #1a2230;
    --muted: #5b6675;
    --line: #e6e9ee;
    --bg: #ffffff;
    --bg-soft: #f5f6f8;
    --radius: 10px;
    --container: 1200px;
    --shadow: 0 6px 24px rgba(10, 37, 64, .08);
    --font: 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body { overflow-x: hidden; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.2; margin: 0 0 .6em; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
.btn--outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 6px 20px rgba(10, 37, 64, .05);
}

/* Navbar */
.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 24px;
}
.navbar__brand { display: inline-flex; align-items: center; }
.navbar__brand img {
    height: 46px;
    width: auto;
    transition: transform .2s ease;
}
.navbar__brand:hover img { transform: scale(1.03); }
.navbar__logo--light { display: none; }

/* Text wordmark logo (Netflix-style display font) */
.brandmark {
    font-family: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
    font-size: 33px;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
    transition: opacity .2s ease;
}
.brandmark__accent { color: var(--brand); }
.navbar__brand:hover .brandmark { opacity: .85; }
.footer__logo { display: inline-block; margin-bottom: 18px; }
.brandmark--footer { font-size: 30px; }

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar__menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar__menu a {
    display: block;
    position: relative;
    padding: 9px 16px;
    color: var(--navy);
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: .1px;
    transition: color .2s ease;
}
/* Animated underline */
.navbar__menu a::after {
    content: "";
    position: absolute;
    left: 16px; right: 16px; bottom: 6px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}
.navbar__menu a:hover { color: var(--brand); }
.navbar__menu a:hover::after,
.navbar__menu a.is-active::after { transform: scaleX(1); }
.navbar__menu a.is-active { color: var(--brand); }

/* Mobile toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    cursor: pointer;
}
.navbar__toggle span {
    display: block;
    height: 3px;
    width: 26px;
    background: var(--navy);
    border-radius: 3px;
    transition: transform .25s ease, opacity .2s ease;
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
    .navbar { position: relative; }
    .navbar__inner { min-height: 64px; }
    .navbar__brand img { height: 40px; }
    .navbar__toggle { display: flex; }
    .navbar__nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        padding: 6px 20px 18px;
        border-bottom: 3px solid var(--brand);
        box-shadow: 0 18px 30px rgba(10, 37, 64, .16);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .3s ease, opacity .2s ease, visibility .3s;
    }
    .navbar__nav.is-open {
        max-height: calc(100vh - 64px);
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
    }
    .navbar__menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .navbar__menu a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }
    .navbar__menu a::after { display: none; }
    .navbar__menu a.is-active {
        color: var(--brand);
        padding-left: 12px;
        border-left: 3px solid var(--brand);
    }
}

/* ==========================================================================
   PAGE STUB (temporary placeholder styling)
   ========================================================================== */
.page-stub {
    padding: 70px 0;
    min-height: 46vh;
}
.page-stub h1 { font-size: clamp(28px, 5vw, 40px); }
.page-stub .lead { color: var(--muted); font-size: 18px; max-width: 640px; }
.page-stub .badge {
    display: inline-block;
    background: var(--bg-soft);
    color: var(--muted);
    border: 1px solid var(--line);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--navy); }
.btn--ghost:hover { border-color: var(--navy); background: #fff; }
/* Reviews (secondary) button: navy outline on the light hero */
.hero .btn--ghost {
    background: #fff;
    border-color: var(--navy);
    color: var(--navy);
}
.hero .btn--ghost:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 78px);
    min-height: calc(100dvh - 78px);
    display: flex;
    align-items: center;
    padding: 64px 0 80px;
    background: #ffffff;
}
.hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: none;
}

.hero__inner {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

/* Eyebrow */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 4px 14px rgba(10, 37, 64, .06);
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 22px;
}
.hero__stars { display: inline-flex; gap: 1px; }

/* Title + lead */
.hero__title {
    font-size: clamp(31px, 4.7vw, 54px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--navy);
    margin: 0 0 20px;
}
.hero__title .accent {
    color: var(--brand);
    background: linear-gradient(180deg, #38BDF8, #0EA5E9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 32px;
}
.hero__lead strong { color: var(--ink); font-weight: 700; }

/* Actions */
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 32px; }

/* Feature ticks */
.hero__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    list-style: none;
    margin: 0 auto 32px;
    padding: 0;
    max-width: 660px;
}
.hero__features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
}

/* Trust badges - small, logo-focused pills */
.hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 13px;
    box-shadow: 0 3px 10px rgba(10, 37, 64, .05);
}
.trust__logo { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 13.5px; color: var(--navy); }
.trust__num {
    display: inline-flex; align-items: center; gap: 3px;
    font-weight: 700; font-size: 13px; color: var(--navy);
    padding-left: 8px; border-left: 1px solid var(--line);
}

/* ---- Hero visual ---- */
.hero__visual { position: relative; min-height: 380px; }
.hero__screen {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(150deg, #14406b 0%, #0a2540 100%);
    box-shadow: 0 30px 60px rgba(10, 37, 64, .28);
    padding: 16px;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}
.hero__screen-bar { display: flex; gap: 7px; margin-bottom: 14px; }
.hero__screen-bar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .22); }
.hero__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 10px;
    height: calc(100% - 25px);
}
.tile { border-radius: 10px; background: rgba(255, 255, 255, .07); }
.tile--1 { background: linear-gradient(135deg, rgba(206,17,36,.55), rgba(206,17,36,.2)); }
.tile--4 { background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.05)); }
.tile--6 { background: linear-gradient(135deg, rgba(66,133,244,.4), rgba(66,133,244,.12)); }
.hero__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 74px; height: 74px;
    border-radius: 50%;
    background: var(--brand);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 30px rgba(206, 17, 36, .5);
}
.hero__play::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    animation: heroPulse 2.2s ease-out infinite;
}
@keyframes heroPulse {
    0% { transform: scale(.9); opacity: .7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Floating stat cards */
.stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 14px 34px rgba(10, 37, 64, .16);
    border: 1px solid var(--line);
}
.stat strong { display: block; font-size: 16px; color: var(--navy); line-height: 1.1; }
.stat span { font-size: 12.5px; color: var(--muted); }
.stat--channels { top: 26px; left: -26px; }
.stat--quality { bottom: 70px; right: -24px; }
.stat--uptime { bottom: -18px; left: 30px; }
.stat__dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .18);
}

/* ==========================================================================
   HOME — section anchors / placeholders
   ========================================================================== */
.section-anchor { scroll-margin-top: 90px; }
.section-eyebrow {
    display: inline-block;
    color: var(--brand);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.home-placeholder { padding: 72px 0; text-align: center; }
.home-placeholder--soft { background: transparent; }
.home-placeholder h2 { font-size: clamp(24px, 4vw, 36px); }
.home-placeholder p { color: var(--muted); font-size: 17px; max-width: 560px; margin: 8px auto 0; }

@media (max-width: 640px) {
    .home-placeholder { padding: 52px 0; }
    .home-placeholder p { font-size: 15.5px; }
    .section-eyebrow { font-size: 12px; }
}

/* ==========================================================================
   SECTIONS - shared header + Devices grid
   ========================================================================== */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(26px, 4vw, 40px); margin: 0 0 14px; }
.section-sub { color: var(--muted); font-size: 17px; margin: 0; }

.devices__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.device-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.device-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(10, 37, 64, .10);
    border-color: var(--brand-light);
}
.device-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px; height: 62px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: #e0f2fe;
    color: var(--brand);
    transition: background .2s ease, color .2s ease;
}
.device-card:hover .device-card__icon { background: var(--brand); color: #fff; }
.device-card__name { font-weight: 700; font-size: 16px; color: var(--navy); margin: 0 0 4px; }
.device-card__desc { font-size: 13px; color: var(--muted); margin: 0; }

@media (max-width: 900px) { .devices__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
    .section { padding: 56px 0; }
    .section-head { margin-bottom: 32px; }
    .devices__grid { gap: 14px; }
    .device-card { padding: 24px 14px; border-radius: 14px; }
    .device-card__icon { width: 54px; height: 54px; }
}

/* ==========================================================================
   VOD / Entertainment (dark, cinematic)
   ========================================================================== */
.section--dark {
    position: relative;
    overflow: hidden;
    background: radial-gradient(130% 120% at 50% -12%, #123a63 0%, #0a2038 42%, #05101d 100%);
    color: #fff;
}
.section--dark .section-eyebrow { color: var(--brand-light); }
.vod__head { text-align: center; max-width: 820px; margin: 0 auto 44px; }
.vod__title { color: #fff; font-size: clamp(27px, 4.2vw, 44px); line-height: 1.12; margin: 0 0 14px; }
.vod__subtitle {
    color: var(--brand-light);
    font-size: clamp(17px, 2.1vw, 22px);
    font-weight: 600;
    margin: 0 0 18px;
}
.vod__desc { color: #b8c5d9; font-size: 17px; line-height: 1.7; margin: 0 auto; max-width: 730px; }
.vod__desc strong { color: #fff; font-weight: 700; }
.vod__media { position: relative; text-align: center; }
.vod__media::before {
    content: "";
    position: absolute;
    top: 6%; left: 50%;
    transform: translateX(-50%);
    width: 72%; height: 82%;
    background: radial-gradient(closest-side, rgba(14, 165, 233, .30), transparent 75%);
    filter: blur(34px);
    z-index: 0;
}
.vod__media img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1120px;
    height: auto;
    margin: 0 auto;
    display: block;
}
@media (max-width: 560px) {
    .vod__head { margin-bottom: 28px; }
    .vod__desc { font-size: 15.5px; }
}

/* Hero responsive */
@media (max-width: 900px) {
    /* Full-viewport hero on mobile/tablet (header is 64px here) */
    .hero { min-height: calc(100vh - 64px); min-height: calc(100dvh - 64px); padding: 48px 0 56px; }
}
@media (max-width: 560px) {
    .hero { padding: 40px 0 48px; }
    .hero__title { letter-spacing: -.4px; font-size: clamp(26px, 7.6vw, 40px); }
    .hero__lead { font-size: 16px; margin-bottom: 26px; }
    .hero__actions { gap: 12px; margin-bottom: 26px; }
    .hero__actions .btn { flex: 1 1 100%; justify-content: center; padding: 14px 22px; }
    .hero__features { gap: 11px 18px; margin-bottom: 26px; }
    .hero__features li { font-size: 14.5px; }
    .hero__trust { gap: 8px; }
    .trust { padding: 6px 11px; }
}
@media (max-width: 380px) {
    .hero__features { flex-direction: column; align-items: flex-start; width: max-content; max-width: 100%; margin-inline: auto; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--navy);
    color: #b9c3d4;
    margin-top: 60px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding: 56px 20px 40px;
}
.footer__brand img { height: 44px; margin-bottom: 18px; }
.footer__desc { font-size: 14.5px; color: #a7b2c6; margin: 0 0 20px; }

.footer__title {
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer__title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 34px; height: 3px;
    background: var(--brand);
    border-radius: 2px;
}

.footer__links, .footer__contact { list-style: none; margin: 0; padding: 0; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { color: #b9c3d4; font-size: 14.5px; }
.footer__links a:hover { color: #fff; padding-left: 4px; transition: padding .18s ease; }

.footer__contact li { margin-bottom: 14px; }
.footer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b9c3d4;
    font-size: 14px;
}
.footer__contact a:hover { color: #fff; }
.footer__contact svg { color: var(--brand-light); flex-shrink: 0; }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: background .2s ease, transform .12s ease;
}
.footer__social a:hover { background: var(--brand); transform: translateY(-2px); }

.footer__bar {
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13.5px;
}
.footer__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    flex-wrap: wrap;
}
.footer__bar p { margin: 0; color: #93a0b6; }
.footer__legal-inline { display: flex; gap: 18px; }
.footer__legal-inline a { color: #93a0b6; }
.footer__legal-inline a:hover { color: #fff; }

@media (max-width: 900px) {
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bar-inner { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   SITE-WIDE DARK THEME (navy background like the VOD section)
   ========================================================================== */
body {
    background: radial-gradient(130% 100% at 50% -10%, #123a63 0%, #0a2038 45%, #060f1c 100%) fixed;
    background-color: #0a2038;
    color: #cfdbeb;
}
h1, h2, h3, h4 { color: #ffffff; }

/* Header - transparent, blends seamlessly with the hero */
.site-header {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}
.navbar__logo--dark { display: none; }
.navbar__logo--light { display: block; }
.navbar__menu a { color: #cdd9ea; }
.navbar__menu a:hover,
.navbar__menu a.is-active { color: var(--brand-light); }
.navbar__menu a::after { background: var(--brand-light); }
.navbar__toggle span { background: #cdd9ea; }
@media (max-width: 900px) {
    .navbar__nav { background: #0c2440; border-bottom-color: var(--brand); }
    .navbar__menu a { border-bottom-color: rgba(255, 255, 255, .08); color: #e6edf5; }
    .navbar__menu a.is-active { color: var(--brand-light); border-left-color: var(--brand); }
}

/* All sections transparent so the body gradient shows through */
.hero,
.section--soft,
.section--dark,
.home-placeholder--soft { background: transparent; }
.section--soft { background: rgba(255, 255, 255, .025); }

/* Hero text on dark */
.hero__title { color: #ffffff; }
.hero__lead { color: #aebccf; }
.hero__lead strong { color: #ffffff; }
.hero__features li { color: #e6edf5; }
.hero .btn--ghost { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .5); color: #fff; }
.hero .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--navy); }

/* Trust pills on dark */
.trust { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); box-shadow: none; }
.trust__logo, .trust__num { color: #eef3f9; }
.trust__num { border-left-color: rgba(255, 255, 255, .16); }

/* Section header/eyebrow */
.section-eyebrow { color: var(--brand-light); }
.section-sub { color: #aebccf; }

/* Device cards on dark */
.device-card { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .10); }
.device-card:hover { background: rgba(255, 255, 255, .09); border-color: var(--brand); box-shadow: 0 16px 32px rgba(0, 0, 0, .32); }
.device-card__name { color: #ffffff; }
.device-card__desc { color: #9fb0c5; }
.device-card__icon { background: rgba(14, 165, 233, .16); }

/* Placeholder + stub pages */
.home-placeholder p { color: #aebccf; }
.page-stub .lead { color: #aebccf; }
.page-stub .badge { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .12); color: #aebccf; }

/* Footer blends with the page gradient */
.site-footer { background: transparent; border-top: 1px solid rgba(255, 255, 255, .07); }

/* ==========================================================================
   LIVE CHANNELS - single carousel (auto-scroll + manual drag/swipe + dots)
   ========================================================================== */
.cc { position: relative; }
.cc__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;            /* Firefox */
    -ms-overflow-style: none;         /* IE/Edge */
    cursor: grab;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.cc__viewport::-webkit-scrollbar { display: none; }
.cc__viewport.is-dragging { cursor: grabbing; }
.cc__track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding: 6px 2px;
}

.channel {
    flex: 0 0 auto;
    width: 128px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .28);
    transition: transform .2s ease, box-shadow .2s ease;
    user-select: none;
}
.channel:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .4);
}
.channel img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    pointer-events: none;             /* so drag works over images */
}
.channel__ph {
    font-weight: 800;
    font-size: 13px;
    line-height: 1.15;
    color: var(--navy);
    text-align: center;
    pointer-events: none;
}

/* Dots */
.cc__dots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}
.cc__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: width .25s ease, background .25s ease;
}
.cc__dot:hover { background: rgba(255, 255, 255, .5); }
.cc__dot.is-active { width: 24px; background: var(--brand); }

/* Tablet / laptop / mobile sizing */
@media (max-width: 992px) {
    .channel { width: 112px; height: 72px; }
    .cc__track { gap: 16px; }
}
@media (max-width: 640px) {
    .channel { width: 92px; height: 62px; padding: 9px 12px; border-radius: 12px; }
    .channel__ph { font-size: 11.5px; }
    .cc__track { gap: 12px; }
    .cc__dots { margin-top: 20px; }
}

/* ==========================================================================
   PRICING - connection toggle + plan cards (responsive)
   ========================================================================== */
.pricing-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: fit-content;
    margin: 0 auto 36px;
    position: relative;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 5px;
}
.pricing-toggle__slider {
    position: absolute;
    z-index: 0;
    top: 5px; bottom: 5px; left: 5px;
    width: calc(50% - 5px);
    background: var(--brand);
    border-radius: 999px;
    transition: transform .28s ease;
}
.pricing-toggle[data-conn="2"] .pricing-toggle__slider { transform: translateX(100%); }
.pricing-toggle__btn {
    position: relative;
    z-index: 1;
    min-width: 152px;
    border: 0;
    background: transparent;
    color: #cfdbeb;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 24px;
    border-radius: 999px;
    cursor: pointer;
    transition: color .2s ease;
}
.pricing-toggle__btn.is-active { color: #fff; }

/* --- Plan table (rows) --- */
.plan-table { display: flex; flex-direction: column; gap: 14px; }
.prow {
    display: grid;
    grid-template-columns: 1.3fr 1fr 200px;
    align-items: center;
    gap: 26px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 22px 28px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.prow:hover { border-color: rgba(255, 255, 255, .26); }
.prow--featured {
    border: 2px solid transparent;
    background:
        linear-gradient(180deg, #123a5c, #0b2136) padding-box,
        linear-gradient(120deg, #7DD3FC, #0EA5E9) border-box;
    box-shadow: 0 18px 44px rgba(14, 165, 233, .22);
}
/* Info column */
.prow__name { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: #fff; }
.prow__tag {
    background: var(--brand); color: #04121d;
    font-weight: 800; font-size: 10.5px; letter-spacing: .04em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}
.prow__for {
    color: var(--brand-light); font-size: 11.5px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; margin-top: 6px;
}
.prow__bonus { color: #fff; font-weight: 700; font-size: 13px; margin-top: 8px; }
/* Price column */
.prow__amt-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.prow__was { color: #8296ad; text-decoration: line-through; font-size: 15px; font-weight: 600; }
.prow__amt { display: inline-flex; align-items: flex-start; color: #fff; }
.prow__cur { font-size: 18px; font-weight: 700; margin-top: 4px; }
.prow__amt .plan__amt { font-size: 34px; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.prow__mo { color: #9fb0c5; font-size: 13px; margin-top: 6px; }
.prow__mo b { color: #e6edf5; font-weight: 800; }
/* Action column */
.prow__action .btn { width: 100%; justify-content: center; gap: 8px; white-space: nowrap; }

.plan__save {
    background: rgba(34, 197, 94, .15); color: #4ade80;
    border: 1px solid rgba(34, 197, 94, .40);
    font-weight: 800; font-size: 12px; padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.plan__cta { gap: 9px; }
.plan__cta--outline { background: transparent; border-color: var(--brand); color: var(--brand-light); }
.plan__cta--outline:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Shared "everything included" features */
.plan-includes { margin-top: 34px; border-top: 1px solid rgba(255, 255, 255, .10); padding-top: 30px; }
.plan-includes__title {
    text-align: center; color: #fff; font-size: 15px; font-weight: 700;
    letter-spacing: .04em; text-transform: uppercase; margin: 0 0 20px;
}
.plan-includes__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 13px 28px; max-width: 860px; margin: 0 auto;
    list-style: none; padding: 0;
}
.plan-includes__grid li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; color: #dbe4f0; }
.plan-includes__grid li svg { flex: 0 0 auto; margin-top: 1px; color: var(--brand); }

.pricing__note {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 10px 28px; margin: 34px auto 0;
    color: #9fb0c5; font-size: 14px; font-weight: 600;
}
.pricing__note span { display: inline-flex; align-items: center; gap: 6px; }

/* Responsive: stack each row, smaller price on mobile */
@media (max-width: 860px) {
    .prow { grid-template-columns: 1fr; gap: 14px; text-align: center; padding: 24px 20px; }
    .prow__name { justify-content: center; }
    .prow__amt-row { justify-content: center; }
    .prow--featured { order: -1; }
    .plan-includes__grid { grid-template-columns: 1fr 1fr; max-width: 520px; gap: 12px 22px; text-align: left; }
}
@media (max-width: 560px) {
    .prow__amt .plan__amt { font-size: 27px; }     /* smaller price on mobile */
    .prow__cur { font-size: 14px; }
    .prow__was { font-size: 13px; }
    .plan-includes__grid { grid-template-columns: 1fr; max-width: 320px; }
    .pricing-toggle__btn { min-width: 128px; padding: 11px 12px; font-size: 14px; }
}

/* ==========================================================================
   PRICING - desktop comparison table (vs mobile stack)
   ========================================================================== */
.pricing-cmp { display: block; }
.pricing-stack { display: none; }
@media (max-width: 980px) {
    .pricing-cmp { display: none; }
    .pricing-stack { display: block; }
}

.cmp__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .03);
}
.cmp__corner {
    display: flex; align-items: flex-end;
    padding: 26px 24px 24px;
    color: #9fb0c5; font-weight: 700; font-size: 13px;
    letter-spacing: .04em; text-transform: uppercase;
}
.cmp__head { padding: 26px 18px 24px; text-align: center; border-left: 1px solid rgba(255, 255, 255, .08); }
.cmp__head.cmp--f { background: rgba(14, 165, 233, .10); box-shadow: inset 0 3px 0 var(--brand); }
.cmp__plan { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 19px; font-weight: 800; color: #fff; }
.cmp__tag { background: var(--brand); color: #04121d; font-weight: 800; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; }
.cmp__conn { color: var(--brand-light); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: 5px; }
.cmp__price { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin: 14px 0 2px; flex-wrap: wrap; }
.cmp__was { color: #8296ad; text-decoration: line-through; font-size: 13px; font-weight: 600; }
.cmp__amt { display: inline-flex; align-items: flex-start; color: #fff; }
.cmp__cur { font-size: 16px; font-weight: 700; margin-top: 3px; }
.cmp__amt .plan__amt { font-size: 30px; font-weight: 800; line-height: 1; letter-spacing: -1px; }
.cmp__mo { color: #9fb0c5; font-size: 12.5px; margin-bottom: 16px; }
.cmp__mo b { color: #e6edf5; font-weight: 800; }
.cmp__order { width: 100%; justify-content: center; gap: 8px; }

.cmp__feat {
    display: flex; align-items: center;
    padding: 14px 24px;
    font-size: 14px; color: #dbe4f0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}
.cmp__cell {
    display: flex; align-items: center; justify-content: center;
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-left: 1px solid rgba(255, 255, 255, .06);
    color: var(--brand);
}
.cmp__cell.cmp--f { background: rgba(14, 165, 233, .07); }
.cmp__no { color: #5a6b82; font-weight: 700; }

/* Mobile plan cards - styled, all features visible, banner tags */
.plan-cards { display: flex; flex-direction: column; gap: 18px; max-width: 460px; margin: 0 auto; }
.mplan {
    position: relative;
    display: flex; flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
}
.mplan--featured {
    border: 2px solid transparent;
    background:
        linear-gradient(180deg, #123a5c, #0b2136) padding-box,
        linear-gradient(120deg, #7DD3FC, #0EA5E9) border-box;
    box-shadow: 0 20px 46px rgba(14, 165, 233, .26);
    order: -1;                          /* Best Value first */
}
.mplan__banner {
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    color: #04121d;
    font-weight: 800; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
    text-align: center; padding: 10px;
}
.mplan__body { padding: 26px 22px; text-align: center; }
.mplan__name { font-size: 22px; font-weight: 800; color: #fff; }
.mplan .prow__for { margin-top: 6px; }
.mplan__price { display: flex; align-items: baseline; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.mplan .prow__amt .plan__amt { font-size: 30px; }     /* smaller price on mobile */

.mplan__feats {
    list-style: none; padding: 0; text-align: left;
    margin: 22px 0 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex; flex-direction: column; gap: 12px;
}
.mplan__feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; color: #dbe4f0; line-height: 1.4; }
.mplan__feats li svg { color: var(--brand); flex: 0 0 auto; margin-top: 1px; }
.mplan__feats .plan__bonus { margin-top: 4px; padding-top: 14px; border-top: 1px dashed rgba(255, 255, 255, .18); color: #fff; font-weight: 700; }
.mplan .plan__cta { width: 100%; justify-content: center; gap: 8px; margin-top: 22px; }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 30px 26px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-light);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .3);
}
.why-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px;
    border-radius: 15px;
    margin-bottom: 18px;
    background: rgba(14, 165, 233, .14);
    color: var(--brand);
}
.why-card:hover .why-card__icon { background: var(--brand); color: #fff; }
.why-card__title { font-size: 18px; color: #fff; margin: 0 0 8px; }
.why-card__desc { color: #aebccf; font-size: 14.5px; line-height: 1.6; margin: 0; }

@media (max-width: 900px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
    .why__grid { grid-template-columns: 1fr; gap: 14px; }
    .why-card { padding: 24px 20px; }
}

/* ==========================================================================
   CLIENT REVIEWS
   ========================================================================== */
.reviews-rating {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 16px; margin: 0 auto 40px;
}
.rating-badge {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 18px 30px; min-width: 210px;
}
.rating-badge__head {
    display: inline-flex; align-items: center; gap: 8px;
    color: #fff; font-weight: 700; font-size: 15.5px;
}
.rating-badge__stars { display: inline-flex; gap: 2px; }
.rating-badge__meta { color: #aebccf; font-size: 13.5px; }
.rating-badge__meta strong { color: #fff; font-size: 15px; }

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.review-card {
    display: flex; flex-direction: column;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-light);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .3);
}
.review-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
    flex: 0 0 auto;
    width: 46px; height: 46px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .5px;
}
.review-card__id { flex: 1 1 auto; min-width: 0; }
.review-card__name { color: #fff; font-weight: 600; font-size: 15px; line-height: 1.3; }
.review-card__loc { color: #8ea3bd; font-size: 13px; margin-top: 2px; }
.review-card__src { flex: 0 0 auto; display: inline-flex; }
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-card__text { color: #cfdbeb; font-size: 14.5px; line-height: 1.65; margin: 0 0 18px; flex: 1 1 auto; }
.review-card__foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 13px; border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 12.5px; color: #8ea3bd;
}
.review-verified { display: inline-flex; align-items: center; gap: 5px; color: #34d07f; font-weight: 500; }

@media (max-width: 900px) {
    .reviews__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .reviews__grid { grid-template-columns: 1fr; gap: 14px; }
    .rating-badge { flex: 1 1 100%; min-width: 0; padding: 16px 20px; }
}

/* ==========================================================================
   HOW TO ORDER
   ========================================================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.step {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025));
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 32px 28px 30px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
/* top accent bar that lights up on hover */
.step::before {
    content: "";
    position: absolute; inset: 0 0 auto 0; height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-light));
    opacity: .5;
    transition: opacity .25s ease;
}
.step:hover {
    transform: translateY(-6px);
    border-color: rgba(125, 211, 252, .4);
    box-shadow: 0 22px 44px rgba(0, 0, 0, .35);
}
.step:hover::before { opacity: 1; }
/* big ghost step number */
.step__no {
    position: absolute; top: 14px; right: 22px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 62px; line-height: 1; letter-spacing: 1px;
    color: rgba(125, 211, 252, .16);
    pointer-events: none;
}
.step__top { margin-bottom: 20px; }
.step__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(180deg, var(--brand), var(--brand-dark));
    color: #fff;
    box-shadow: 0 10px 24px rgba(14, 165, 233, .35);
}
.step__title { color: #fff; font-size: 19px; margin: 0 0 10px; }
.step__desc { color: #aebccf; font-size: 14.5px; line-height: 1.65; margin: 0; }

/* unified box: delivery time + CTA button together */
.order-cta {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 20px 28px;
    max-width: 760px; margin: 40px auto 0;
    padding: 22px 26px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(14, 165, 233, .16), rgba(14, 165, 233, .05));
    border: 1px solid rgba(14, 165, 233, .4);
    box-shadow: 0 0 0 5px rgba(14, 165, 233, .05), 0 18px 40px rgba(14, 165, 233, .16);
}
.order-cta__info { display: flex; align-items: center; gap: 16px; }
.order-cta__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--brand), var(--brand-dark));
    color: #fff;
    box-shadow: 0 6px 16px rgba(14, 165, 233, .45);
    animation: delivery-pulse 2.4s ease-in-out infinite;
}
@keyframes delivery-pulse {
    0%, 100% { box-shadow: 0 6px 16px rgba(14, 165, 233, .45); }
    50%      { box-shadow: 0 6px 24px rgba(14, 165, 233, .85); }
}
.order-cta__text { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.order-cta__label {
    font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--brand-light);
}
.order-cta__value { color: #eaf4fb; font-size: 16px; }
.order-cta__value strong { color: #fff; font-weight: 800; }
.order-cta__btn { flex: 0 0 auto; }

@media (prefers-reduced-motion: reduce) { .order-cta__icon { animation: none; } }

@media (max-width: 860px) {
    .steps { grid-template-columns: 1fr; gap: 16px; max-width: 460px; margin: 0 auto; }
    .step { padding: 28px 24px; }
}
@media (max-width: 620px) {
    .order-cta { flex-direction: column; text-align: center; padding: 24px 20px; }
    .order-cta__btn { width: 100%; justify-content: center; }
}
@media (max-width: 460px) {
    .order-cta__info { flex-direction: column; text-align: center; gap: 12px; }
    .order-cta__text { text-align: center; }
    .order-cta__value { font-size: 14.5px; }
}

/* ==========================================================================
   SEO CONTENT
   ========================================================================== */
/* alternating image + text rows */
.seo-rows { display: flex; flex-direction: column; gap: 60px; margin-bottom: 60px; }
.seo-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 52px;
}
.seo-row--reverse .seo-row__media { order: -1; }
.seo-row__title { color: #fff; font-size: 26px; line-height: 1.2; margin: 0 0 16px; }
.seo-row__text p {
    color: #cfdbeb; font-size: 15.5px; line-height: 1.8; margin: 0 0 16px;
}
.seo-row__text p strong { color: #fff; font-weight: 700; }
.seo-row__text p em { color: var(--brand-light); font-style: normal; font-weight: 600; }
.seo-row__text a { color: var(--brand-light); text-decoration: none; border-bottom: 1px solid rgba(125, 211, 252, .35); transition: color .2s ease, border-color .2s ease; }
.seo-row__text a:hover { color: #fff; border-color: #fff; }

.seo__list { list-style: none; margin: 20px 0 26px; padding: 0; display: grid; gap: 12px; }
.seo__list li { display: flex; align-items: flex-start; gap: 10px; color: #dbe6f2; font-size: 15px; line-height: 1.45; }
.seo__list li svg { color: var(--brand); flex: 0 0 auto; margin-top: 1px; }
.seo__list li a { color: var(--brand-light); text-decoration: none; border-bottom: 1px solid rgba(125, 211, 252, .35); }
.seo__list li a:hover { color: #fff; border-color: #fff; }

/* media frame */
.seo-row__media { position: relative; }
.seo-row__media::before {
    content: ""; position: absolute; inset: -6%;
    background: radial-gradient(60% 60% at 50% 45%, rgba(14, 165, 233, .3), transparent 70%);
    filter: blur(24px); z-index: 0;
}
.seo-row__media img {
    position: relative; z-index: 1;
    width: 100%; height: auto; display: block;
    border-radius: 20px;
}
/* real photo - dark rounded frame */
.seo-row__media--photo img {
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .45);
    object-fit: cover;
}
/* cut-out / white-background promo images - clean light panel */
.seo-row__media--light {
    display: flex; align-items: center; justify-content: center;
}
.seo-row__media--light img {
    background: radial-gradient(circle at 50% 35%, #ffffff, #e8f0f9);
    padding: 22px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, .4);
}

.seo__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 44px;
}
.seo-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 26px 24px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.seo-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-light);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .3);
}
.seo-card__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 54px; height: 54px; margin-bottom: 16px;
    border-radius: 14px;
    background: rgba(14, 165, 233, .14);
    color: var(--brand);
}
.seo-card:hover .seo-card__icon { background: var(--brand); color: #fff; }
.seo-card__title { color: #fff; font-size: 17.5px; margin: 0 0 9px; }
.seo-card__desc { color: #aebccf; font-size: 14px; line-height: 1.6; margin: 0; }
.seo__cards:last-child { margin-bottom: 0; }

@media (max-width: 860px) {
    .seo-row { grid-template-columns: 1fr; gap: 26px; }
    .seo-row__media { order: -1 !important; max-width: 520px; margin: 0 auto; width: 100%; }
    .seo-row__title { font-size: 23px; }
    .seo__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .seo__cards { grid-template-columns: 1fr; gap: 14px; }
}

/* ==========================================================================
   CHECKOUT
   ========================================================================== */
.container--narrow { max-width: 720px; }

.checkout__head { margin-bottom: 30px; }
.checkout__back {
    display: inline-flex; align-items: center; gap: 6px;
    color: #aebccf; font-size: 14px; font-weight: 600; text-decoration: none;
    margin-bottom: 16px; transition: color .2s ease;
}
.checkout__back:hover { color: var(--brand-light); }
.checkout__title { color: #fff; font-size: clamp(28px, 4vw, 40px); margin: 0 0 8px; }
.checkout__sub { color: #aebccf; font-size: 15.5px; line-height: 1.6; max-width: 640px; margin: 0; }
.checkout__sub strong { color: #fff; }

.checkout__grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: start;
    gap: 26px;
}
.checkout__main { display: flex; flex-direction: column; gap: 22px; }

/* cards */
.co-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 26px 24px;
}
.co-card__title {
    display: flex; align-items: center; gap: 12px;
    color: #fff; font-size: 19px; margin: 0 0 20px;
}
.co-step {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px; flex: 0 0 auto;
    border-radius: 50%; background: linear-gradient(180deg, var(--brand), var(--brand-dark));
    color: #fff; font-size: 14px; font-weight: 800;
}

/* plan radios */
.co-plans { display: flex; flex-direction: column; gap: 12px; }
.co-plan {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, transform .15s ease;
    position: relative;
}
.co-plan:hover { border-color: rgba(125, 211, 252, .5); }
.co-plan input { position: absolute; opacity: 0; pointer-events: none; }
.co-plan.is-selected {
    border-color: var(--brand);
    background: rgba(14, 165, 233, .1);
    box-shadow: 0 0 0 1px var(--brand) inset;
}
.co-plan__check {
    width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .3);
    position: relative; transition: border-color .2s ease;
}
.co-plan.is-selected .co-plan__check { border-color: var(--brand); }
.co-plan.is-selected .co-plan__check::after {
    content: ""; position: absolute; inset: 4px; border-radius: 50%; background: var(--brand);
}
.co-plan__body { flex: 1 1 auto; min-width: 0; }
.co-plan__name { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 8px; color: #fff; font-weight: 700; font-size: 16px; }
.co-plan__dur { white-space: nowrap; }
.co-plan__tag {
    font-size: 10.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
    color: #04121f; background: var(--brand-light); padding: 2px 8px; border-radius: 999px;
}
.co-plan__meta { display: block; color: #8ea3bd; font-size: 13px; margin-top: 3px; }
.co-plan__price { color: #fff; font-size: 18px; font-weight: 800; flex: 0 0 auto; }

/* connections */
.co-conn { margin-top: 22px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.co-conn__label { color: #dbe6f2; font-weight: 600; font-size: 15px; }
.co-conn__hint { display: block; color: #8ea3bd; font-size: 12.5px; font-weight: 400; margin-top: 2px; }
.co-conn__opts { display: inline-flex; background: rgba(0, 0, 0, .25); border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; padding: 4px; }
.co-conn__opt { position: relative; }
.co-conn__opt input { position: absolute; opacity: 0; pointer-events: none; }
.co-conn__opt span {
    display: block; padding: 8px 16px; border-radius: 999px;
    color: #aebccf; font-size: 13.5px; font-weight: 600; cursor: pointer; white-space: nowrap;
    transition: color .2s ease;
}
.co-conn__opt.is-on span { background: var(--brand); color: #fff; }

/* fields */
.co-field { margin-bottom: 18px; }
.co-field:last-child { margin-bottom: 0; }
.co-field label { display: block; color: #dbe6f2; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.co-optional { color: #8ea3bd; font-weight: 400; }
.co-field input, .co-field textarea {
    width: 100%; padding: 13px 15px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 11px;
    color: #fff; font-size: 15px; font-family: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.co-field textarea { resize: vertical; min-height: 88px; }
.co-field input::placeholder, .co-field textarea::placeholder { color: #6c7f96; }
.co-field input:focus, .co-field textarea:focus {
    outline: none; border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, .18);
}
.co-field input.is-invalid, .co-field textarea.is-invalid { border-color: #f0616d; }
.co-hint { display: block; color: #8ea3bd; font-size: 12.5px; margin-top: 6px; }
.co-error { display: block; color: #ff8a94; font-size: 13px; margin-top: 6px; }

/* summary */
.checkout__aside { position: sticky; top: 92px; }
.co-summary {
    background: linear-gradient(180deg, rgba(14, 165, 233, .12), rgba(255, 255, 255, .04));
    border: 1px solid rgba(14, 165, 233, .3);
    border-radius: 18px;
    padding: 24px 22px;
}
.co-summary__title { color: #fff; font-size: 18px; margin: 0 0 16px; }
.co-summary__row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 0; color: #aebccf; font-size: 14.5px;
}
.co-summary__row b { color: #fff; font-weight: 700; }
.co-summary__feats {
    list-style: none; margin: 14px 0; padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: grid; gap: 9px;
}
.co-summary__feats li { display: flex; align-items: flex-start; gap: 9px; color: #cfdbeb; font-size: 13.5px; line-height: 1.45; }
.co-summary__feats svg { color: var(--brand); flex: 0 0 auto; margin-top: 1px; }
.co-summary__total {
    display: flex; align-items: center; justify-content: space-between;
    margin: 16px 0 18px; color: #fff;
}
.co-summary__total span { font-size: 15px; }
.co-summary__total em { display: block; color: #8ea3bd; font-size: 12px; font-style: normal; font-weight: 400; }
.co-summary__total b { font-size: 30px; font-weight: 800; letter-spacing: -.5px; }
.co-summary__btn { width: 100%; justify-content: center; gap: 9px; }

.co-trust { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 10px; }
.co-trust li { display: flex; align-items: flex-start; gap: 9px; color: #aebccf; font-size: 12.8px; line-height: 1.4; }
.co-trust svg { color: #34d07f; flex: 0 0 auto; margin-top: 1px; }
.co-help { text-align: center; color: #8ea3bd; font-size: 13.5px; margin: 16px 0 0; }
.co-help a { color: var(--brand-light); text-decoration: none; font-weight: 600; }
.co-help a:hover { color: #fff; }

/* selected plan (compact) + Change */
.co-selected {
    display: flex; align-items: center; flex-wrap: wrap; gap: 12px 14px;
    padding: 16px 18px; border-radius: 14px;
    border: 1px solid var(--brand); background: rgba(14, 165, 233, .1);
    box-shadow: 0 0 0 1px var(--brand) inset;
}
.co-selected__check {
    width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand); color: #fff;
}
.co-selected__info { flex: 1 1 150px; min-width: 0; }
.co-selected__name { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 8px; color: #fff; font-weight: 700; font-size: 16px; }
.co-selected__meta { display: block; color: #9fb3c8; font-size: 13px; margin-top: 3px; }
.co-selected__meta b { color: #cfdbeb; font-weight: 600; }
.co-selected__price { color: #fff; font-weight: 800; font-size: 19px; flex: 0 0 auto; }
.co-change {
    flex: 0 0 auto; background: transparent; border: 1px solid rgba(255, 255, 255, .25);
    color: var(--brand-light); font-size: 13px; font-weight: 600;
    padding: 8px 15px; border-radius: 999px; cursor: pointer; transition: all .2s ease;
}
.co-change:hover { border-color: var(--brand); color: #fff; background: rgba(14, 165, 233, .15); }
.co-plans[hidden] { display: none; }
.co-plans:not([hidden]) { margin-top: 14px; }

/* international phone input */
.co-tel {
    position: relative; display: flex; align-items: stretch;
    background: rgba(0, 0, 0, .22); border: 1px solid rgba(255, 255, 255, .16); border-radius: 11px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.co-tel:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14, 165, 233, .18); }
.co-tel.is-invalid { border-color: #f0616d; }
.co-tel__btn {
    display: inline-flex; align-items: center; gap: 6px; padding: 0 4px 0 14px; flex: 0 0 auto;
    background: transparent; border: none;
    color: #fff; cursor: pointer; font-size: 15px; border-radius: 11px 0 0 11px;
}
.co-tel__flag { font-size: 19px; line-height: 1; }
.co-tel__dial { font-weight: 600; }
.co-tel__chev { color: #8ea3bd; }
.co-field .co-tel__input {
    flex: 1 1 auto; min-width: 0; width: auto; padding: 13px 15px 13px 8px;
    background: transparent; border: none; border-radius: 0;
    color: #fff; font-size: 15px; font-family: inherit; box-shadow: none;
}
.co-field .co-tel__input::placeholder { color: #6c7f96; }
.co-field .co-tel__input:focus { outline: none; box-shadow: none; }
.co-tel__menu {
    position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
    background: #0d2438; border: 1px solid rgba(255, 255, 255, .16); border-radius: 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .55); overflow: hidden;
}
.co-tel__search-wrap { padding: 10px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.co-tel__search {
    width: 100%; padding: 9px 12px; background: rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .14); border-radius: 8px; color: #fff; font-size: 14px;
}
.co-tel__search::placeholder { color: #6c7f96; }
.co-tel__search:focus { outline: none; border-color: var(--brand); }
.co-tel__list { list-style: none; margin: 0; padding: 6px; max-height: 244px; overflow-y: auto; }
.co-tel__item { display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px; cursor: pointer; }
.co-tel__item:hover { background: rgba(14, 165, 233, .16); }
.co-tel__item-flag { font-size: 18px; flex: 0 0 auto; }
.co-tel__item-name { flex: 1 1 auto; color: #dbe6f2; font-size: 14px; }
.co-tel__item-dial { color: #8ea3bd; font-size: 13.5px; flex: 0 0 auto; }

/* place-order button (below the form) */
.co-place__btn { width: 100%; justify-content: center; gap: 9px; font-size: 17px; padding: 16px 22px; }
.co-place__note { display: flex; align-items: center; justify-content: center; gap: 7px; color: #8ea3bd; font-size: 13px; margin: 14px 0 0; }
.co-place__note svg { color: #34d07f; flex: 0 0 auto; }

@media (max-width: 900px) {
    .checkout__grid { grid-template-columns: 1fr; }
    .checkout__aside { position: static; order: 2; }
}

/* ---- checkout success ---- */
.checkout-done { text-align: center; }
.cdone__badge {
    width: 84px; height: 84px; margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: #fff;
    background: linear-gradient(180deg, #22c55e, #16a34a);
    box-shadow: 0 14px 34px rgba(34, 197, 94, .4);
}
.cdone__title { color: #fff; font-size: clamp(26px, 4vw, 36px); margin: 0 0 12px; }
.cdone__sub { color: #cfdbeb; font-size: 16px; line-height: 1.7; margin: 0 auto 26px; max-width: 560px; }
.cdone__sub strong { color: #fff; }
.cdone__wa { justify-content: center; gap: 10px; }
.cdone__card {
    text-align: left; max-width: 460px; margin: 34px auto 0;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px; overflow: hidden;
}
.cdone__card-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; background: rgba(255, 255, 255, .04);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: #fff; font-weight: 700; font-size: 14.5px;
}
.cdone__ref { color: var(--brand-light); font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; font-size: 16px; }
.cdone__list { list-style: none; margin: 0; padding: 8px 20px 16px; }
.cdone__list li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.cdone__list li span { color: #8ea3bd; font-size: 14px; flex: 0 0 auto; }
.cdone__list li b { color: #fff; font-size: 14.5px; text-align: right; word-break: break-word; }
.cdone__list-total { border-bottom: none !important; margin-top: 4px; }
.cdone__list-total span { color: #cfdbeb !important; font-weight: 600; }
.cdone__list-total b { color: var(--brand-light) !important; font-size: 20px !important; font-weight: 800; }
.cdone__help { color: #8ea3bd; font-size: 14px; margin: 26px 0 0; }
.cdone__help a { color: var(--brand-light); text-decoration: none; font-weight: 600; }
.cdone__back { display: inline-block; margin-top: 18px; color: #aebccf; font-size: 14px; text-decoration: none; }
.cdone__back:hover { color: #fff; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact .section-head { margin-bottom: 30px; }
.contact .section-head h1 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin: 0 0 10px; line-height: 1.15; }
.contact .section-head .section-sub a { color: var(--brand-light); text-decoration: none; border-bottom: 1px solid rgba(125, 211, 252, .35); }
.contact .section-head .section-sub a:hover { color: #fff; border-color: #fff; }

.contact__grid {
    display: grid; grid-template-columns: 340px 1fr;
    gap: 26px; align-items: start;
}
.contact__methods { display: flex; flex-direction: column; gap: 14px; }

.contact-method {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 18px; border-radius: 16px;
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
    text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-method:hover { transform: translateY(-3px); border-color: var(--brand-light); box-shadow: 0 16px 34px rgba(0, 0, 0, .3); }
.contact-method__icon {
    width: 48px; height: 48px; flex: 0 0 auto; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.contact-method--wa .contact-method__icon { background: #25D366; }
.contact-method--tg .contact-method__icon { background: #29A9EB; }
.contact-method--mail .contact-method__icon { background: linear-gradient(180deg, var(--brand), var(--brand-dark)); }
.contact-method__body { flex: 1 1 auto; min-width: 0; }
.contact-method__label { display: block; color: #9fb3c8; font-size: 12.5px; font-weight: 600; }
.contact-method__value { display: block; color: #fff; font-weight: 700; font-size: 15.5px; margin-top: 2px; word-break: break-word; }
.contact-method__go { color: #64798f; flex: 0 0 auto; }
.contact-method:hover .contact-method__go { color: var(--brand-light); }

.contact-hours {
    margin-top: 6px; padding: 18px; border-radius: 16px;
    background: rgba(14, 165, 233, .08); border: 1px solid rgba(14, 165, 233, .22);
    display: grid; gap: 12px;
}
.contact-hours__row { display: flex; align-items: flex-start; gap: 10px; color: #cfdbeb; font-size: 13.8px; line-height: 1.45; }
.contact-hours__row svg { color: var(--brand-light); flex: 0 0 auto; margin-top: 1px; }
.contact-hours__row b { color: #fff; }

.contact__form-lead { color: #aebccf; font-size: 14.5px; margin: -8px 0 20px; }
.contact-form__btn { width: 100%; justify-content: center; gap: 9px; margin-top: 4px; }
.contact-form__note { text-align: center; color: #8ea3bd; font-size: 12.8px; margin: 12px 0 0; }

/* select styled like the inputs */
.co-field select {
    width: 100%; padding: 13px 40px 13px 15px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .16); border-radius: 11px;
    color: #fff; font-size: 15px; font-family: inherit; cursor: pointer;
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238ea3bd'%3E%3Cpath d='m7 10 5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; background-size: 20px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.co-field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14, 165, 233, .18); }
.co-field select.is-invalid { border-color: #f0616d; }
.co-field select option { color: #0a1a2b; }

/* success banner */
.contact-alert {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 20px; margin-bottom: 26px; border-radius: 14px;
    background: rgba(34, 197, 94, .12); border: 1px solid rgba(34, 197, 94, .4);
}
.contact-alert__icon {
    width: 40px; height: 40px; flex: 0 0 auto; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #22c55e; color: #fff;
}
.contact-alert__body { color: #cfe9d6; font-size: 14.5px; line-height: 1.55; }
.contact-alert__body strong { color: #fff; display: block; margin-bottom: 2px; }
.contact-alert__wa {
    display: inline-block; margin-top: 8px; color: #fff; font-weight: 700; text-decoration: none;
    background: #25D366; padding: 8px 16px; border-radius: 999px; font-size: 13.5px;
}
.contact-alert__wa:hover { background: #1da851; }

/* seo block */
.contact-seo { max-width: 860px; margin: 48px auto 0; text-align: center; }
.contact-seo h2 { color: #fff; font-size: 24px; margin: 0 0 14px; }
.contact-seo p { color: #aebccf; font-size: 15px; line-height: 1.8; margin: 0 0 14px; }
.contact-seo p strong { color: #fff; }
.contact-seo a { color: var(--brand-light); text-decoration: none; border-bottom: 1px solid rgba(125, 211, 252, .35); }
.contact-seo a:hover { color: #fff; border-color: #fff; }

@media (max-width: 860px) {
    .contact__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.section-head h1 { color: #fff; font-size: clamp(28px, 4.5vw, 44px); margin: 0 0 12px; line-height: 1.12; }

.about-intro { padding-bottom: 40px; }
.about-story-sec { padding-top: 44px; padding-bottom: 44px; }
.about-values { padding-top: 44px; }

.about-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px;
}
.about-stat {
    text-align: center; padding: 28px 18px; border-radius: 16px;
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
    transition: transform .2s ease, border-color .2s ease;
}
.about-stat:hover { transform: translateY(-4px); border-color: var(--brand-light); }
.about-stat__num {
    display: block; font-family: 'Bebas Neue', sans-serif; font-size: 46px; line-height: 1;
    color: var(--brand-light); letter-spacing: 1px;
}
.about-stat__label { display: block; color: #aebccf; font-size: 14px; margin-top: 8px; }

.about-cta-sec { padding-top: 20px; }
.about-cta {
    text-align: center; max-width: 820px; margin: 0 auto; padding: 48px 32px; border-radius: 24px;
    background: linear-gradient(180deg, rgba(14, 165, 233, .16), rgba(14, 165, 233, .05));
    border: 1px solid rgba(14, 165, 233, .3);
    box-shadow: 0 0 0 5px rgba(14, 165, 233, .05), 0 22px 50px rgba(14, 165, 233, .16);
}
.about-cta__title { color: #fff; font-size: clamp(24px, 3.5vw, 34px); margin: 0 0 12px; }
.about-cta__sub { color: #cfdbeb; font-size: 16px; line-height: 1.6; margin: 0 auto 26px; max-width: 560px; }
.about-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.about-cta .btn--ghost { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .5); color: #fff; }
.about-cta .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--navy); }

@media (max-width: 680px) {
    .about-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
    .about-stat__num { font-size: 40px; }
}
@media (max-width: 480px) {
    .about-cta { padding: 36px 20px; }
    .about-cta__actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */
.faq-wrap { max-width: 820px; margin: 0 auto; }

.faq-search {
    position: relative; margin-bottom: 30px;
}
.faq-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #6c7f96; }
.faq-search input {
    width: 100%; padding: 15px 18px 15px 46px;
    background: rgba(0, 0, 0, .22); border: 1px solid rgba(255, 255, 255, .16); border-radius: 12px;
    color: #fff; font-size: 15.5px; font-family: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-search input::placeholder { color: #6c7f96; }
.faq-search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14, 165, 233, .18); }

.faq-group { margin-bottom: 32px; }
.faq-group[hidden] { display: none; }
.faq-group__title {
    color: var(--brand-light); font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; margin: 0 0 14px; padding-left: 4px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s ease, background .2s ease;
}
.faq-item[hidden] { display: none; }
.faq-item[open] { border-color: rgba(125, 211, 252, .4); background: rgba(14, 165, 233, .07); }
.faq-item:hover { border-color: rgba(125, 211, 252, .3); }

.faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 18px 20px; cursor: pointer; list-style: none;
    color: #fff; font-size: 16px; font-weight: 600; line-height: 1.4;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q__text { flex: 1 1 auto; }
.faq-chev { color: var(--brand-light); flex: 0 0 auto; transition: transform .25s ease; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }

.faq-a { padding: 0 20px 20px; }
.faq-a p { color: #aebccf; font-size: 15px; line-height: 1.7; margin: 0; }
.faq-a a { color: var(--brand-light); text-decoration: none; border-bottom: 1px solid rgba(125, 211, 252, .35); }
.faq-a a:hover { color: #fff; border-color: #fff; }
.faq-a strong { color: #fff; }
.faq-item[open] .faq-a { animation: faq-reveal .25s ease; }
@keyframes faq-reveal { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.faq-noresults { text-align: center; color: #aebccf; font-size: 15px; padding: 20px; }
.faq-noresults a { color: var(--brand-light); text-decoration: none; font-weight: 600; }

.faq-cta {
    text-align: center; max-width: 760px; margin: 48px auto 0; padding: 40px 28px; border-radius: 22px;
    background: linear-gradient(180deg, rgba(14, 165, 233, .14), rgba(14, 165, 233, .04));
    border: 1px solid rgba(14, 165, 233, .28);
}
.faq-cta__title { color: #fff; font-size: 26px; margin: 0 0 10px; }
.faq-cta p { color: #cfdbeb; font-size: 15.5px; line-height: 1.6; margin: 0 auto 22px; max-width: 480px; }
.faq-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.faq-cta .btn--ghost { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .5); color: #fff; }
.faq-cta .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--navy); }

@media (max-width: 480px) {
    .faq-cta__actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   INSTALLATION GUIDE
   ========================================================================== */
.guide .section-head { margin-bottom: 28px; }
.guide .section-head .section-sub a { color: var(--brand-light); text-decoration: none; border-bottom: 1px solid rgba(125,211,252,.35); }

/* already have a player */
.guide-players {
    max-width: 900px; margin: 0 auto 18px; padding: 24px 26px; border-radius: 18px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
}
.guide-players__head { display: flex; align-items: center; gap: 10px; color: #34d07f; margin-bottom: 10px; }
.guide-players__head h2 { color: #fff; font-size: 19px; margin: 0; }
.guide-players > p { color: #aebccf; font-size: 15px; line-height: 1.6; margin: 0 0 16px; }
.guide-players__chips { display: flex; flex-wrap: wrap; gap: 9px; }
.guide-chip {
    display: inline-block; padding: 8px 15px; border-radius: 999px;
    background: rgba(14,165,233,.12); border: 1px solid rgba(14,165,233,.3);
    color: #dbe6f2; font-size: 13.5px; font-weight: 600;
}
.guide-chip--more { background: transparent; border-style: dashed; color: #8ea3bd; }

/* free activation note */
.guide-free {
    display: flex; align-items: flex-start; gap: 14px;
    max-width: 900px; margin: 0 auto 34px; padding: 18px 22px; border-radius: 16px;
    background: linear-gradient(180deg, rgba(34,197,94,.14), rgba(34,197,94,.05));
    border: 1px solid rgba(34,197,94,.35);
}
.guide-free__icon {
    width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #22c55e; color: #fff;
}
.guide-free div { color: #cfe9d6; font-size: 14.5px; line-height: 1.6; }
.guide-free strong { color: #fff; }
.guide-free a { color: #7df0a8; text-decoration: none; border-bottom: 1px solid rgba(125,240,168,.4); }

/* tabs */
.guide-tabs {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 24px;
    scrollbar-width: none;
}
.guide-tabs::-webkit-scrollbar { display: none; }
.guide-tab {
    display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto;
    padding: 11px 18px; border-radius: 999px; cursor: pointer;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
    color: #aebccf; font-size: 14px; font-weight: 600; font-family: inherit;
    transition: all .2s ease; white-space: nowrap;
}
.guide-tab:hover { border-color: var(--brand-light); color: #fff; }
.guide-tab.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.guide-tab svg { flex: 0 0 auto; }

/* panels */
.guide-panel { display: none; }
.guide-panel.is-active { display: block; animation: faq-reveal .25s ease; }
.guide-panel__title { color: #fff; font-size: 22px; margin: 0 0 22px; }
.guide-panel__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }

/* steps */
.gsteps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.gstep { display: flex; gap: 14px; }
.gstep__n {
    width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, var(--brand), var(--brand-dark));
    color: #fff; font-weight: 800; font-size: 15px; box-shadow: 0 6px 14px rgba(14,165,233,.35);
}
.gstep__c { flex: 1 1 auto; padding-top: 3px; }
.gstep__c h3 { color: #fff; font-size: 16.5px; margin: 0 0 6px; }
.gstep__opt { color: #8ea3bd; font-weight: 400; font-size: 13px; }
.gstep__c p { color: #aebccf; font-size: 14.5px; line-height: 1.6; margin: 0; }
.gstep__c strong { color: #fff; }
.gstep__c em { color: var(--brand-light); font-style: normal; }
.gstep__list { margin: 10px 0 0; padding-left: 18px; display: grid; gap: 7px; }
.gstep__list li { color: #aebccf; font-size: 14px; line-height: 1.55; }
.gstep__list li::marker { color: var(--brand-light); }
.gcode {
    display: inline-block; padding: 2px 12px; border-radius: 8px; margin: 0 2px;
    background: rgba(14,165,233,.18); border: 1px solid rgba(14,165,233,.4);
    color: #fff; font-weight: 800; letter-spacing: 2px; font-family: 'Bebas Neue', sans-serif; font-size: 19px;
}

/* screenshot */
.gshot { margin: 0; position: sticky; top: 92px; }
.gshot img {
    width: 100%; height: auto; border-radius: 14px;
    border: 1px solid rgba(255,255,255,.14); box-shadow: 0 22px 50px rgba(0,0,0,.45);
    background: #0a1a2b;
}
.gshot figcaption { text-align: center; color: #8ea3bd; font-size: 13px; margin-top: 10px; }

/* activation callout */
.guide-activate {
    display: flex; align-items: flex-start; gap: 14px; margin-top: 26px;
    padding: 18px 20px; border-radius: 14px;
    background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.35);
}
.guide-activate__icon {
    width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: #25D366; color: #fff;
}
.guide-activate__body { color: #cfe9d6; font-size: 14.5px; line-height: 1.6; }
.guide-activate__body strong { color: #fff; }
.guide-activate__title { display: block; color: #fff; font-weight: 700; margin-bottom: 3px; }
.guide-activate__btn {
    display: inline-block; margin-top: 10px; padding: 9px 18px; border-radius: 999px;
    background: #25D366; color: #fff; font-weight: 700; font-size: 13.5px; text-decoration: none;
}
.guide-activate__btn:hover { background: #1da851; }

/* help cta */
.guide-help {
    text-align: center; max-width: 760px; margin: 44px auto 0; padding: 40px 28px; border-radius: 22px;
    background: linear-gradient(180deg, rgba(14,165,233,.14), rgba(14,165,233,.04));
    border: 1px solid rgba(14,165,233,.28);
}
.guide-help h2 { color: #fff; font-size: 25px; margin: 0 0 10px; }
.guide-help p { color: #cfdbeb; font-size: 15.5px; line-height: 1.6; margin: 0 auto 22px; max-width: 480px; }
.guide-help__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.guide-help .btn--ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.5); color: #fff; }
.guide-help .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--navy); }

@media (max-width: 780px) {
    .guide-panel__grid { grid-template-columns: 1fr; gap: 24px; }
    .gshot { position: static; order: -1; max-width: 440px; margin: 0 auto; }
}
@media (max-width: 480px) {
    .guide-help__actions .btn { width: 100%; justify-content: center; }
}

/* ---- checkout success: extra polish ---- */
.cdone__ref-pill {
    display: inline-block; margin-bottom: 14px; padding: 6px 16px; border-radius: 999px;
    background: rgba(14,165,233,.14); border: 1px solid rgba(14,165,233,.35);
    color: var(--brand-light); font-family: 'Bebas Neue', sans-serif; letter-spacing: 1.5px; font-size: 15px;
}
.cdone__email {
    display: inline-flex; align-items: center; gap: 8px;
    margin: 0 auto 24px; padding: 10px 18px; border-radius: 12px;
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
    color: #aebccf; font-size: 14px;
}
.cdone__email svg { color: var(--brand-light); flex: 0 0 auto; }
.cdone__email strong { color: #fff; }

.cdone__steps {
    text-align: left; max-width: 460px; margin: 34px auto 0;
    display: flex; flex-direction: column; gap: 0; position: relative;
}
.cdone__step { display: flex; gap: 14px; padding-bottom: 22px; position: relative; }
.cdone__step:not(:last-child)::before {
    content: ""; position: absolute; left: 15px; top: 32px; bottom: 0; width: 2px;
    background: rgba(255,255,255,.14);
}
.cdone__step-dot {
    width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%; z-index: 1;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18);
    color: #8ea3bd; font-weight: 800; font-size: 14px;
}
.cdone__step.is-done .cdone__step-dot { background: #22c55e; border-color: #22c55e; color: #fff; }
.cdone__step-c { padding-top: 4px; }
.cdone__step-t { display: block; color: #fff; font-weight: 700; font-size: 15px; }
.cdone__step-d { display: block; color: #9fb3c8; font-size: 13.5px; line-height: 1.5; margin-top: 2px; }

/* ==========================================================================
   ADMIN DASHBOARD
   ========================================================================== */
body.admin { background: #0a1420; }
.admin-top { position: sticky; top: 0; z-index: 20; background: rgba(9,20,33,.92); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-top__inner { max-width: 1240px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin-brand { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; font-size: 22px; color: #fff; text-decoration: none; }
.admin-brand span { color: var(--brand-light); }
.admin-brand em { font-style: normal; font-size: 12px; letter-spacing: 2px; color: #64798f; vertical-align: middle; margin-left: 4px; }
.admin-nav { display: flex; gap: 6px; }
.admin-nav a { padding: 8px 14px; border-radius: 8px; color: #aebccf; text-decoration: none; font-size: 14px; font-weight: 600; }
.admin-nav a:hover { color: #fff; background: rgba(255,255,255,.05); }
.admin-nav a.is-active { color: #fff; background: rgba(14,165,233,.18); }

.admin-main { padding: 26px 0 60px; }
.admin-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.admin-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.admin-head h1 { color: #fff; font-size: 26px; margin: 0 0 4px; }
.admin-head p { color: #8ea3bd; font-size: 14px; margin: 0; }
.admin-live { display: inline-flex; align-items: center; gap: 8px; color: #34d07f; font-size: 13px; font-weight: 600; background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); padding: 7px 14px; border-radius: 999px; }
.admin-live__dot { width: 8px; height: 8px; border-radius: 50%; background: #34d07f; box-shadow: 0 0 0 0 rgba(52,208,127,.6); animation: admin-pulse 2s infinite; }
@keyframes admin-pulse { 0% { box-shadow: 0 0 0 0 rgba(52,208,127,.5); } 70% { box-shadow: 0 0 0 8px rgba(52,208,127,0); } 100% { box-shadow: 0 0 0 0 rgba(52,208,127,0); } }

.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.kpi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 18px 18px; }
.kpi__label { display: block; color: #8ea3bd; font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.kpi__value { display: block; color: #fff; font-size: 30px; font-weight: 800; line-height: 1.1; margin: 6px 0 2px; letter-spacing: -.5px; }
.kpi__sub { display: block; color: #64798f; font-size: 12px; }

.admin-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px 22px; margin-bottom: 20px; }
.admin-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.admin-card__head h2 { color: #fff; font-size: 16px; margin: 0; }
.admin-card__hint { color: #64798f; font-size: 12.5px; }

/* chart */
.chart { display: flex; align-items: flex-end; gap: 6px; height: 180px; padding-top: 10px; }
.chart__col { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.chart__bar { width: 100%; max-width: 40px; background: linear-gradient(180deg, var(--brand-light), var(--brand)); border-radius: 6px 6px 0 0; position: relative; min-height: 3px; transition: opacity .2s; }
.chart__bar span { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 11px; color: #aebccf; }
.chart__bar:hover { opacity: .85; }
.chart__label { font-size: 11px; color: #64798f; white-space: nowrap; }

.admin-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* breakdown bars */
.brk { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.brk__name { flex: 0 0 42%; color: #dbe6f2; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brk__name--mono { font-family: ui-monospace, monospace; font-size: 12.5px; color: #cfdbeb; }
.brk__track { flex: 1 1 auto; height: 8px; background: rgba(255,255,255,.06); border-radius: 999px; overflow: hidden; }
.brk__fill { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-light)); border-radius: 999px; }
.brk__val { flex: 0 0 auto; color: #fff; font-size: 13px; font-weight: 700; min-width: 40px; text-align: right; }
.brk-empty { color: #64798f; font-size: 13.5px; padding: 8px 0; }
.brk-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.brk-chip { font-size: 12.5px; color: #aebccf; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); padding: 5px 12px; border-radius: 999px; }
.brk-chip b { color: #fff; margin-left: 4px; }

/* table */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th { text-align: left; color: #8ea3bd; font-weight: 600; font-size: 11.5px; text-transform: uppercase; letter-spacing: .5px; padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.1); white-space: nowrap; }
.admin-table td { color: #cfdbeb; padding: 11px 12px; border-bottom: 1px solid rgba(255,255,255,.05); }
.admin-table tr:hover td { background: rgba(255,255,255,.02); }
.admin-table .mono { font-family: ui-monospace, monospace; font-size: 12.5px; }
.admin-table .muted { color: #7f93a8; }
.admin-table .nowrap { white-space: nowrap; }
.tag-bot { display: inline-block; font-size: 10.5px; font-weight: 700; color: #f0a020; background: rgba(240,160,32,.14); border: 1px solid rgba(240,160,32,.3); padding: 1px 7px; border-radius: 999px; margin-left: 4px; }

@media (max-width: 900px) {
    .kpi-grid { grid-template-columns: 1fr 1fr; }
    .admin-cols { grid-template-columns: 1fr; }
}

/* ---- admin: user + logout ---- */
.admin-user { color: #8ea3bd; font-size: 13px; font-weight: 600; padding: 8px 4px 8px 12px; border-left: 1px solid rgba(255,255,255,.1); margin-left: 6px; }
.admin-logout { display: inline; }
.admin-logout button { background: transparent; border: 1px solid rgba(255,255,255,.16); color: #aebccf; font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 8px; cursor: pointer; font-family: inherit; }
.admin-logout button:hover { border-color: #f0616d; color: #ff8a94; }

/* ---- admin login ---- */
body.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(120% 100% at 50% -10%, #123a63, #0a2038 45%, #060f1c) fixed; padding: 24px; }
.login-wrap { width: 100%; max-width: 400px; }
.login-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 20px;
    padding: 38px 32px 34px; text-align: center; box-shadow: 0 30px 70px rgba(0,0,0,.45); }
.login-brand { font-family: 'Bebas Neue', sans-serif; letter-spacing: 1.5px; font-size: 30px; color: #fff; }
.login-brand span { color: var(--brand-light); }
.login-sub { color: #64798f; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.login-lock { width: 56px; height: 56px; margin: 24px auto 16px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, var(--brand), var(--brand-dark)); color: #fff; box-shadow: 0 10px 24px rgba(14,165,233,.4); }
.login-title { color: #fff; font-size: 22px; margin: 0 0 4px; }
.login-hint { color: #8ea3bd; font-size: 13.5px; margin: 0 0 22px; }
.login-error { background: rgba(240,97,109,.12); border: 1px solid rgba(240,97,109,.4); color: #ff9aa3;
    font-size: 13.5px; padding: 11px 14px; border-radius: 10px; margin-bottom: 18px; text-align: left; }
.login-form { text-align: left; }
.login-form .co-field { margin-bottom: 16px; }
.login-btn { width: 100%; justify-content: center; gap: 8px; margin-top: 4px; }
.login-foot { text-align: center; color: #5a6b7d; font-size: 12.5px; margin: 18px 0 0; }

/* ---- admin: visitors list ---- */
.admin-table--click tbody tr { cursor: pointer; }
.admin-table--click tbody tr:hover td { background: rgba(14,165,233,.08); }
.v-id b { font-family: ui-monospace, monospace; color: #fff; }
.v-count { display: inline-block; min-width: 30px; text-align: center; background: rgba(14,165,233,.16); border: 1px solid rgba(14,165,233,.3); color: #fff; font-weight: 700; font-size: 12.5px; padding: 2px 10px; border-radius: 999px; }
.v-arrow { color: #64798f; text-align: right; }
.admin-table--click tbody tr:hover .v-arrow { color: var(--brand-light); }

.admin-pager { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 6px; color: #8ea3bd; font-size: 13.5px; }
.admin-pager a { color: #cfdbeb; text-decoration: none; padding: 8px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; font-weight: 600; }
.admin-pager a:hover { border-color: var(--brand-light); color: #fff; }
.admin-pager a.is-disabled { opacity: .35; pointer-events: none; }

/* ---- admin: visitor detail ---- */
.admin-back { display: inline-block; color: #8ea3bd; text-decoration: none; font-size: 14px; font-weight: 600; margin-bottom: 18px; }
.admin-back:hover { color: var(--brand-light); }
.visitor-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.visitor-flag { width: 62px; height: 62px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; font-size: 32px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; }
.visitor-head h1 { color: #fff; font-size: 24px; margin: 0 0 3px; }
.visitor-head p { color: #8ea3bd; font-size: 14px; margin: 0; }

.visitor-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.vm { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 14px 16px; }
.vm__label { display: block; color: #8ea3bd; font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.vm__value { display: block; color: #fff; font-size: 17px; font-weight: 700; margin-top: 4px; }

.journey { position: relative; padding-left: 6px; }
.journey__item { display: flex; gap: 16px; padding-bottom: 20px; position: relative; }
.journey__item:not(:last-child)::before { content: ""; position: absolute; left: 6px; top: 16px; bottom: 0; width: 2px; background: rgba(255,255,255,.1); }
.journey__dot { width: 14px; height: 14px; flex: 0 0 auto; margin-top: 3px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(14,165,233,.14); z-index: 1; }
.journey__c { flex: 1 1 auto; min-width: 0; }
.journey__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.journey__path { font-family: ui-monospace, monospace; color: #fff; font-size: 14.5px; font-weight: 600; word-break: break-all; }
.journey__time { color: #64798f; font-size: 12.5px; white-space: nowrap; }
.journey__meta { color: #8ea3bd; font-size: 13px; margin-top: 3px; }
.journey__src { color: var(--brand-light); font-weight: 600; }

@media (max-width: 900px) {
    .visitor-meta { grid-template-columns: 1fr 1fr; }
}

/* ---- admin: tabs / clear / flash / modal ---- */
.admin-head__actions { display: flex; align-items: center; gap: 12px; }
.admin-clear { background: transparent; border: 1px solid rgba(240,97,109,.4); color: #ff8a94; font-size: 13px; font-weight: 600; padding: 8px 15px; border-radius: 8px; cursor: pointer; font-family: inherit; }
.admin-clear:hover { background: rgba(240,97,109,.14); border-color: #f0616d; }
.admin-flash { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.4); color: #7df0a8; font-size: 14px; padding: 12px 18px; border-radius: 12px; margin-bottom: 18px; }

.admin-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.admin-tab { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); color: #aebccf;
    font-size: 13.5px; font-weight: 600; text-decoration: none; transition: all .2s ease; }
.admin-tab:hover { border-color: var(--brand-light); color: #fff; }
.admin-tab.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.admin-tab__count { font-size: 12px; background: rgba(0,0,0,.22); padding: 1px 9px; border-radius: 999px; }
.admin-tab.is-active .admin-tab__count { background: rgba(255,255,255,.25); }

/* modal */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.modal[hidden] { display: none; }
.modal__backdrop { position: fixed; inset: 0; background: rgba(4,10,18,.72); backdrop-filter: blur(3px); }
.modal__box { position: relative; z-index: 1; width: 100%; max-width: 760px; margin: auto;
    background: #0e1e30; border: 1px solid rgba(255,255,255,.14); border-radius: 18px;
    box-shadow: 0 40px 90px rgba(0,0,0,.6); padding: 28px 28px 24px; }
.modal__close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: #aebccf; font-size: 22px; line-height: 1; cursor: pointer; }
.modal__close:hover { color: #fff; border-color: #f0616d; }
.modal__loading { color: #8ea3bd; text-align: center; padding: 40px 0; }
.modal .visitor-head { margin-bottom: 18px; }
.modal .journey { max-height: 46vh; overflow-y: auto; padding-right: 6px; }

/* journey partial - shared bits */
.visitor-name { color: #fff; font-size: 21px; margin: 0 0 3px; }
.visitor-loc { color: #8ea3bd; font-size: 14px; margin: 0; }
.visitor-isp { color: #64798f; font-size: 13px; margin: 3px 0 0; }
.journey-head { display: flex; align-items: baseline; justify-content: space-between; margin: 6px 0 16px; }
.journey-head h3 { color: #fff; font-size: 16px; margin: 0; }
.journey-head span { color: #64798f; font-size: 12.5px; }

/* ---- admin: nav badge, status pills, orders/messages ---- */
.nav-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; margin-left: 5px; border-radius: 999px; background: #f0616d; color: #fff; font-size: 11px; font-weight: 800; vertical-align: middle; }

.st { display: inline-block; font-size: 11.5px; font-weight: 700; padding: 2px 10px; border-radius: 999px; white-space: nowrap; }
.st-green { background: rgba(34,197,94,.14); border: 1px solid rgba(34,197,94,.35); color: #34d07f; }
.st-red   { background: rgba(240,97,109,.14); border: 1px solid rgba(240,97,109,.35); color: #ff8a94; }
.st-blue  { background: rgba(14,165,233,.16); border: 1px solid rgba(14,165,233,.35); color: var(--brand-light); }
.st-amber { background: rgba(240,160,32,.14); border: 1px solid rgba(240,160,32,.35); color: #f5b74a; margin-left: 6px; }
.st-grey  { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); color: #9fb3c8; }
.admin-table .sub { display: block; color: #64798f; font-size: 12px; }
.admin-table .clip { color: #9fb3c8; max-width: 320px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-table tr.is-unread td:first-child { box-shadow: inset 3px 0 0 var(--brand); }
.admin-table tr.is-unread td { background: rgba(14,165,233,.05); }
.admin-tab--warn.is-active { background: #f0a020; border-color: #f0a020; }

.admin-flash--err { background: rgba(240,97,109,.12); border-color: rgba(240,97,109,.4); color: #ff9aa3; }

/* order/message detail */
.order-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.order-head h1 { color: #fff; font-size: 24px; margin: 0 0 4px; display: flex; align-items: center; gap: 12px; }
.order-head p { color: #8ea3bd; font-size: 13.5px; margin: 0; }
.order-head__total { font-size: 30px; font-weight: 800; color: var(--brand-light); }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }

.kv { margin: 0; display: grid; gap: 0; }
.kv > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.kv dt { color: #8ea3bd; font-size: 13.5px; margin: 0; }
.kv dd { color: #fff; font-size: 13.5px; margin: 0; text-align: right; word-break: break-word; }
.kv dd a { color: var(--brand-light); text-decoration: none; }
.kv dd .sub { display: block; color: #64798f; font-size: 12px; font-weight: 400; }

.order-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn-act { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16); color: #cfdbeb; font-size: 13.5px; font-weight: 600; padding: 10px 16px; border-radius: 10px; cursor: pointer; font-family: inherit; }
.btn-act:hover { border-color: var(--brand-light); color: #fff; }
.btn-act--green { border-color: rgba(34,197,94,.4); color: #7df0a8; }
.btn-act--green:hover { background: rgba(34,197,94,.14); border-color: #22c55e; }
.btn-act--red { border-color: rgba(240,97,109,.4); color: #ff8a94; }
.btn-act--red:hover { background: rgba(240,97,109,.14); border-color: #f0616d; }
.btn-act--blue { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-act--blue:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn-act--full { width: 100%; text-align: center; padding: 13px; font-size: 15px; margin-top: 6px; }

.order-form-hint { color: #8ea3bd; font-size: 13.5px; line-height: 1.55; margin: 0 0 16px; }
.order-form-hint b { color: #fff; }
.order-form .co-field { margin-bottom: 14px; }
.of-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.order-preview { display: flex; align-items: center; justify-content: space-between; background: rgba(14,165,233,.08); border: 1px solid rgba(14,165,233,.24); border-radius: 10px; padding: 12px 16px; margin: 6px 0 14px; }
.order-preview__label { color: #aebccf; font-size: 13px; }
.order-preview__val { color: #fff; font-weight: 800; font-size: 18px; }
.order-hostinfo { color: #64798f; font-size: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); line-height: 1.6; }

.msg-body { margin-top: 16px; padding: 16px; background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: #dbe6f2; font-size: 14.5px; line-height: 1.7; white-space: pre-line; }
.order-form textarea { min-height: 180px; }

@media (max-width: 900px) { .order-grid { grid-template-columns: 1fr; } .of-row { grid-template-columns: 1fr; } }

/* ---- admin: delete button + detail top row ---- */
.admin-detail-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.admin-detail-top .admin-back { margin-bottom: 0; }
.btn-act--danger { border-color: rgba(240,97,109,.5); color: #ff8a94; }
.btn-act--danger:hover { background: #f0616d; border-color: #f0616d; color: #fff; }

/* ---- admin: settings ---- */
.co-field textarea.mono-area { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 13px; line-height: 1.5; }
.settings-save { max-width: 320px; margin: 0 0 40px auto; }

.block-picker { }
.block-search { width: 100%; padding: 12px 15px; background: rgba(0,0,0,.22); border: 1px solid rgba(255,255,255,.16);
    border-radius: 11px; color: #fff; font-size: 14.5px; font-family: inherit; margin-bottom: 14px; }
.block-search:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14,165,233,.18); }
.block-search::placeholder { color: #6c7f96; }
.block-list { max-height: 340px; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
    padding: 6px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; }
.block-item { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; cursor: pointer; transition: background .15s ease; }
.block-item:hover { background: rgba(255,255,255,.04); }
.block-item input { width: 17px; height: 17px; flex: 0 0 auto; accent-color: #f0616d; cursor: pointer; }
.block-item input:checked ~ .block-name { color: #ff9aa3; }
.block-flag { font-size: 18px; flex: 0 0 auto; }
.block-name { flex: 1 1 auto; color: #dbe6f2; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.block-code { color: #64798f; font-size: 12.5px; font-family: ui-monospace, monospace; }
.block-count { color: #8ea3bd; font-size: 13px; margin: 12px 0 0; }
.block-count span { color: #ff8a94; font-weight: 700; }

@media (max-width: 720px) { .block-list { grid-template-columns: 1fr; } }

/* ==========================================================================
   ADMIN: BLOG
   ========================================================================== */
.post-cell { display: flex; align-items: center; gap: 12px; }
.post-thumb { width: 52px; height: 38px; flex: 0 0 auto; border-radius: 7px; object-fit: cover; background: rgba(255,255,255,.06); }
.post-thumb--empty { display: inline-flex; align-items: center; justify-content: center; color: #64798f; border: 1px solid rgba(255,255,255,.12); }
.post-cell .sub { display: block; color: #64798f; font-size: 12px; margin-top: 2px; }
.post-link { color: var(--brand-light); text-decoration: none; font-size: 13px; font-weight: 600; margin-left: 14px; }
.post-link:hover { color: #fff; }
.post-del { display: inline; margin-left: 14px; }
.post-del button { background: none; border: none; color: #ff8a94; font-size: 13px; font-weight: 600; cursor: pointer; font-family: inherit; padding: 0; }

.post-editor { display: grid; grid-template-columns: 1fr 340px; gap: 20px; align-items: start; }
.post-side { display: flex; flex-direction: column; gap: 20px; }
.post-cover-preview { width: 100%; border-radius: 10px; margin-bottom: 12px; border: 1px solid rgba(255,255,255,.12); }
.co-field input[type=file] { color: #aebccf; font-size: 13px; padding: 10px; }
@media (max-width: 900px) { .post-editor { grid-template-columns: 1fr; } }

/* ==========================================================================
   PUBLIC BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.blog-card:hover { transform: translateY(-5px); border-color: var(--brand-light); box-shadow: 0 18px 40px rgba(0,0,0,.35); }
.blog-card__media { display: block; aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, #123a5c, #0b2136); position: relative; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; font-size: 26px; color: rgba(255,255,255,.5); }
.blog-card__ph b { color: var(--brand-light); margin-left: 6px; }
.blog-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1 1 auto; }
.blog-card__meta { color: #8ea3bd; font-size: 12.5px; margin-bottom: 8px; }
.blog-card__title { font-size: 18px; line-height: 1.35; margin: 0 0 10px; }
.blog-card__title a { color: #fff; text-decoration: none; }
.blog-card__title a:hover { color: var(--brand-light); }
.blog-card__excerpt { color: #aebccf; font-size: 14px; line-height: 1.6; margin: 0 0 14px; flex: 1 1 auto; }
.blog-card__more { color: var(--brand-light); text-decoration: none; font-weight: 600; font-size: 14px; }
.blog-empty { text-align: center; color: #aebccf; padding: 40px 0; }
.blog-pager-simple { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }

/* single post */
.blog-back { display: inline-block; color: #8ea3bd; text-decoration: none; font-weight: 600; font-size: 14px; margin-bottom: 20px; }
.blog-back:hover { color: var(--brand-light); }
.blog-post__meta { color: #8ea3bd; font-size: 13.5px; margin-bottom: 10px; }
.blog-post__title { color: #fff; font-size: clamp(28px, 4vw, 42px); line-height: 1.15; margin: 0 0 14px; }
.blog-post__lead { color: #cfdbeb; font-size: 18px; line-height: 1.6; margin: 0 0 24px; }
.blog-post__cover { border-radius: 18px; overflow: hidden; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.12); }
.blog-post__cover img { width: 100%; display: block; }
.blog-post__body { color: #cfdbeb; font-size: 16.5px; line-height: 1.85; }
.blog-post__body > *:first-child { margin-top: 0; }
.blog-post__body h1, .blog-post__body h2, .blog-post__body h3 { color: #fff; line-height: 1.3; margin: 34px 0 14px; }
.blog-post__body h1 { font-size: 28px; } .blog-post__body h2 { font-size: 24px; } .blog-post__body h3 { font-size: 20px; }
.blog-post__body p { margin: 0 0 18px; }
.blog-post__body a { color: var(--brand-light); text-decoration: underline; }
.blog-post__body ul, .blog-post__body ol { margin: 0 0 18px; padding-left: 24px; }
.blog-post__body li { margin-bottom: 8px; }
.blog-post__body img { max-width: 100%; height: auto; border-radius: 12px; margin: 18px 0; }
.blog-post__body blockquote { border-left: 3px solid var(--brand); margin: 22px 0; padding: 4px 0 4px 20px; color: #dbe6f2; font-style: italic; }
.blog-post__body strong { color: #fff; }

.blog-cta { text-align: center; margin: 44px 0 0; padding: 36px 28px; border-radius: 20px; background: linear-gradient(180deg, rgba(14,165,233,.14), rgba(14,165,233,.04)); border: 1px solid rgba(14,165,233,.3); }
.blog-cta h2 { color: #fff; font-size: 24px; margin: 0 0 8px; }
.blog-cta p { color: #cfdbeb; font-size: 15px; margin: 0 auto 20px; max-width: 460px; }

.blog-related { margin-top: 60px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 40px; }
.blog-related__title { color: #fff; font-size: 22px; margin: 0 0 24px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---- admin: detail top bar + danger button ---- */
.admin-detail-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.admin-detail-top .admin-back { margin-bottom: 0; }
.btn-act--danger { border-color: rgba(240,97,109,.45); color: #ff8a94; }
.btn-act--danger:hover { background: rgba(240,97,109,.16); border-color: #f0616d; color: #fff; }

/* blog post: tables + first image treatment */
.blog-post__body table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; overflow: hidden; }
.blog-post__body thead th { background: rgba(14,165,233,.14); color: #fff; text-align: left; padding: 12px 16px; font-size: 13.5px; }
.blog-post__body tbody td { padding: 12px 16px; border-top: 1px solid rgba(255,255,255,.08); color: #cfdbeb; }
.blog-post__body tbody tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.blog-post__body img { width: 100%; border-radius: 14px; margin: 24px 0; border: 1px solid rgba(255,255,255,.1); }

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */
.err { text-align: center; padding-top: 60px; padding-bottom: 80px; }
.err__code {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(120px, 26vw, 260px); line-height: .9;
    background: linear-gradient(180deg, var(--brand-light), var(--brand-dark));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: 4px; margin-bottom: 6px; filter: drop-shadow(0 12px 40px rgba(14,165,233,.35));
}
.err__title { color: #fff; font-size: clamp(24px, 4vw, 36px); margin: 0 0 12px; }
.err__sub { color: #aebccf; font-size: 16px; line-height: 1.7; max-width: 500px; margin: 0 auto 28px; }
.err__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 40px; }
.err__actions .btn--ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.5); color: #fff; }
.err__actions .btn--ghost:hover { background: #fff; border-color: #fff; color: var(--navy); }
.err__links-label { display: block; color: #64798f; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.err__links-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.err__links-row a {
    padding: 9px 18px; border-radius: 999px; background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.14); color: #cfdbeb; font-size: 14px; font-weight: 500;
    text-decoration: none; transition: all .2s ease;
}
.err__links-row a:hover { background: rgba(14,165,233,.16); border-color: var(--brand); color: #fff; transform: translateY(-2px); }
.err__help { color: #8ea3bd; font-size: 14px; margin: 32px 0 0; }
.err__help a { color: var(--brand-light); text-decoration: none; font-weight: 600; }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal .section-eyebrow { display:block; }
.legal__title { color:#fff; font-size:clamp(28px,4vw,40px); line-height:1.15; margin:8px 0 6px; }
.legal__updated { color:#8ea3bd; font-size:14px; margin:0 0 30px; }
.legal__body { color:#cfdbeb; font-size:16px; line-height:1.85; }
.legal__body > *:first-child { margin-top:0; }
.legal__body h2 { color:#fff; font-size:22px; line-height:1.3; margin:34px 0 12px; }
.legal__body h3 { color:#fff; font-size:18px; margin:24px 0 10px; }
.legal__body p { margin:0 0 16px; }
.legal__body ul, .legal__body ol { margin:0 0 16px; padding-left:22px; }
.legal__body li { margin-bottom:8px; }
.legal__body a { color:var(--brand-light); text-decoration:none; border-bottom:1px solid rgba(125,211,252,.35); }
.legal__body a:hover { color:#fff; border-color:#fff; }
.legal__body strong { color:#fff; }
.legal__body table { width:100%; border-collapse:collapse; margin:20px 0; border:1px solid rgba(255,255,255,.12); border-radius:12px; overflow:hidden; }
.legal__body th { background:rgba(14,165,233,.14); color:#fff; text-align:left; padding:12px 16px; font-size:14px; }
.legal__body td { padding:12px 16px; border-top:1px solid rgba(255,255,255,.08); }
