/*
Theme Name: IPTV Landing
Theme URI: https://iptvserviceprovider.net
Description: Custom coded landing page for the IPTV service. Fonts self-hosted. Built with Novamira.
Author: Novamira
Version: 1.0.2
Requires at least: 6.7
Requires PHP: 8.0
Text Domain: iptv-landing
*/

/* ===== Self-hosted fonts ===== */
@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url("assets/fonts/inter-400.woff2") format("woff2");}
@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url("assets/fonts/inter-500.woff2") format("woff2");}
@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/inter-600.woff2") format("woff2");}
@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url("assets/fonts/inter-700.woff2") format("woff2");}
@font-face{font-family:"Sora";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/sora-600.woff2") format("woff2");}
@font-face{font-family:"Sora";font-style:normal;font-weight:700;font-display:swap;src:url("assets/fonts/sora-700.woff2") format("woff2");}
@font-face{font-family:"Sora";font-style:normal;font-weight:800;font-display:swap;src:url("assets/fonts/sora-800.woff2") format("woff2");}

/* =========================================================
       IPTV SERVICE PROVIDER — HOMEPAGE (Premium redesign)
    ========================================================= */

    :root {
        /* Fonts */
        --font-head: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

        /* Text */
        --ink: #0b1020;
        --ink-soft: #3a4256;
        --muted: #5f6b80;
        --muted-2: #8a94a8;

        /* Surfaces */
        --bg: #ffffff;
        --bg-soft: #f6f7fb;
        --bg-soft-2: #eef1f8;
        --line: #e7e9f2;

        /* Dark bands */
        --navy: #0a0e1c;
        --navy-2: #0f1533;
        --navy-3: #151d42;

        /* Brand */
        --brand: #5468ff;
        --brand-strong: #3f52f0;
        --violet: #8b5cf6;
        --cyan: #22d3ee;
        --brand-soft: #eef1ff;
        --green: #12b76a;

        --grad: linear-gradient(135deg, #5468ff 0%, #8b5cf6 100%);
        --grad-2: linear-gradient(135deg, #6d7dff 0%, #a78bfa 100%);
        --grad-cta: linear-gradient(135deg, #5468ff 0%, #7b5cff 55%, #a855f7 100%);

        /* Shadows */
        --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
        --shadow: 0 12px 34px rgba(16, 24, 40, .08);
        --shadow-lg: 0 26px 60px rgba(16, 24, 40, .14);
        --shadow-brand: 0 16px 40px rgba(84, 104, 255, .32);

        --radius: 16px;
        --radius-lg: 22px;
        --container: 1200px;
    }


    /* =========================================================
       RESET
    ========================================================= */

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

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

    button, a, input, select, textarea { font-family: inherit; }

    button { border: 0; background: none; }

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

    img, svg { max-width: 100%; }

    svg {
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    h1, h2, h3 {
        font-family: var(--font-head);
        font-weight: 800;
    }

    section[id] { scroll-margin-top: 90px; }

    .container {
        width: min(var(--container), calc(100% - 48px));
        margin: 0 auto;
    }


    /* =========================================================
       SHARED HELPERS
    ========================================================= */

    .grad-text {
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 14px 7px 12px;
        border-radius: 999px;
        font-family: var(--font-head);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .3px;
        text-transform: uppercase;
        color: var(--brand-strong);
        background: var(--brand-soft);
        border: 1px solid #dee3ff;
    }

    .eyebrow-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--brand);
        box-shadow: 0 0 0 4px rgba(84, 104, 255, .18);
    }

    .eyebrow.on-dark {
        color: #c3ccff;
        background: rgba(122, 140, 255, .12);
        border-color: rgba(140, 155, 255, .25);
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        height: 52px;
        padding: 0 26px;
        border-radius: 12px;
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 700;
        letter-spacing: -.2px;
        cursor: pointer;
        white-space: nowrap;
        transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
    }

    .btn svg { width: 18px; height: 18px; }

    .btn-primary { color: #fff; background: var(--grad-cta); box-shadow: var(--shadow-brand); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(120, 90, 255, .45); }

    .btn-ghost {
        color: #fff;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .2);
        backdrop-filter: blur(6px);
    }
    .btn-ghost:hover { background: rgba(255, 255, 255, .13); transform: translateY(-2px); }

    .btn-dark { color: #fff; background: var(--ink); }
    .btn-dark:hover { background: #1b2440; transform: translateY(-2px); }

    .btn-light { color: var(--ink); background: #fff; box-shadow: var(--shadow); }
    .btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

    .btn-block { width: 100%; }

    .text-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--brand-strong);
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 700;
    }
    .text-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
    .text-link:hover svg { transform: translateX(4px); }


    /* =========================================================
       PROMO BAR
    ========================================================= */

    .promo {
        position: relative;
        z-index: 1100;
        background: var(--grad-cta);
        color: #fff;
        font-size: 13.5px;
    }

    .promo-inner {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        padding: 8px 0;
        text-align: center;
    }

    .promo p { margin: 0; }
    .promo strong { font-weight: 700; }

    .promo a {
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 3px;
        white-space: nowrap;
    }

    .promo-close {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 26px;
        height: 26px;
        border-radius: 7px;
        color: #fff;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        opacity: .85;
        transition: background .2s ease, opacity .2s ease;
    }
    .promo-close:hover { background: rgba(255, 255, 255, .18); opacity: 1; }


    /* =========================================================
       HEADER
    ========================================================= */

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, .8);
        border-bottom: 1px solid transparent;
        backdrop-filter: blur(16px);
        transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
    }

    .site-header.scrolled {
        border-bottom-color: var(--line);
        box-shadow: 0 6px 26px rgba(16, 24, 40, .07);
    }

    .header-inner {
        height: 74px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .brand {
        display: inline-flex;
        align-items: center;
        gap: 11px;
        font-family: var(--font-head);
        font-weight: 800;
        letter-spacing: -.6px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
        color: #fff;
        background: var(--grad);
        box-shadow: var(--shadow-brand);
    }
    .brand-mark svg { width: 22px; height: 22px; }

    .brand-text { font-size: 19px; color: var(--ink); }
    .brand-text span { color: var(--brand); }

    .main-nav {
        display: flex;
        align-items: center;
        gap: 32px;
        margin-left: auto;
        margin-right: 30px;
    }

    .main-nav a {
        position: relative;
        font-family: var(--font-head);
        color: #495064;
        font-size: 14.5px;
        font-weight: 600;
        letter-spacing: -.2px;
        transition: color .2s ease;
    }
    .main-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        border-radius: 2px;
        background: var(--grad);
        transition: width .25s ease;
    }
    .main-nav a:hover { color: var(--ink); }
    .main-nav a:hover::after { width: 100%; }

    .header-cta { height: 44px; padding: 0 20px; font-size: 14px; }

    .mobile-menu-toggle {
        display: none;
        width: 44px;
        height: 44px;
        cursor: pointer;
        padding: 9px;
        border-radius: 10px;
        transition: background .2s ease;
    }
    .mobile-menu-toggle:hover { background: var(--bg-soft); }
    .mobile-menu-toggle span {
        display: block;
        height: 2px;
        width: 22px;
        background: var(--ink);
        margin: 5px auto;
        border-radius: 2px;
        transition: .25s ease;
    }


    /* =========================================================
       HERO
    ========================================================= */

    .hero {
        position: relative;
        overflow: hidden;
        background: var(--navy);
        color: #fff;
    }

    .hero-bg { position: absolute; inset: 0; pointer-events: none; }

    .hero-grid {
        position: absolute;
        inset: 0;
        opacity: .5;
        background-image:
            linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
        background-size: 58px 58px;
        mask-image: radial-gradient(ellipse 80% 60% at 60% 0%, black, transparent 75%);
    }

    .hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); }
    .hero-glow-1 { width: 560px; height: 560px; background: rgba(84, 104, 255, .5); right: -6%; top: -230px; animation: float1 14s ease-in-out infinite; }
    .hero-glow-2 { width: 460px; height: 460px; background: rgba(139, 92, 246, .38); left: -8%; top: 40px; animation: float2 16s ease-in-out infinite; }
    .hero-glow-3 { width: 360px; height: 360px; background: rgba(34, 211, 238, .16); left: 42%; bottom: -220px; animation: float1 18s ease-in-out infinite; }

    @keyframes float1 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-26px, 30px); } }
    @keyframes float2 { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, -24px); } }

    .hero-container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        align-items: center;
        gap: 60px;
        padding-top: 78px;
        padding-bottom: 92px;
    }

    .hero-content { max-width: 640px; }

    .hero .eyebrow { margin-bottom: 24px; }

    .hero h1 {
        margin: 0;
        font-size: clamp(44px, 5.4vw, 74px);
        line-height: 1.03;
        letter-spacing: -2.6px;
    }
    .hero h1 .grad-text {
        background: linear-gradient(120deg, #a5b4ff 0%, #d8b4fe 60%, #93e9ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .hero-desc {
        max-width: 560px;
        margin: 24px 0 30px;
        color: #b9c2d8;
        font-size: 17.5px;
        line-height: 1.72;
    }

    .hero-buttons { display: flex; gap: 13px; align-items: center; flex-wrap: wrap; }

    .hero-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 22px;
        margin-top: 30px;
    }
    .trust-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #cfd6e6;
        font-size: 13px;
        font-weight: 500;
    }
    .trust-chip svg { width: 18px; height: 18px; color: #6ee7b7; flex: 0 0 auto; }


    /* HERO VISUAL */
    .hero-visual {
        position: relative;
        min-height: 480px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .screen-frame {
        position: relative;
        width: min(100%, 560px);
        aspect-ratio: 16 / 10;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 20px;
        background: rgba(255, 255, 255, .06);
        box-shadow: 0 40px 90px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(255, 255, 255, .04);
        transform: perspective(1200px) rotateY(-7deg) rotateX(3deg);
    }
    .screen-frame::after {
        content: "";
        position: absolute;
        width: 46%;
        height: 5px;
        left: 27%;
        bottom: -11px;
        border-radius: 20px;
        background: rgba(120, 130, 255, .35);
        filter: blur(6px);
    }

    .screen-topbar {
        height: 32px;
        padding: 0 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 11px 11px 0 0;
        background: #0b1226;
    }
    .screen-dots { display: flex; gap: 5px; }
    .screen-dots span { width: 6px; height: 6px; border-radius: 50%; background: #47506b; }
    .screen-status { display: flex; align-items: center; gap: 6px; color: #9fb0cc; font-size: 8px; font-weight: 700; letter-spacing: 1px; }
    .live-indicator { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, .25); animation: pulse 1.8s ease-in-out infinite; }
    @keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, .25); } 50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); } }

    .screen-content { height: calc(100% - 32px); display: flex; overflow: hidden; border-radius: 0 0 11px 11px; background: #0d1730; }

    .screen-sidebar {
        width: 64px;
        padding: 16px 12px;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 15px;
        border-right: 1px solid rgba(255, 255, 255, .05);
    }
    .sidebar-logo {
        width: 30px; height: 30px;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 6px;
        border-radius: 8px;
        color: #fff; background: var(--grad);
        font-family: var(--font-head);
        font-size: 9px; font-weight: 800;
    }
    .sidebar-line { width: 28px; height: 5px; border-radius: 10px; background: #29345a; }
    .sidebar-line.active { background: var(--brand); }

    .screen-main { flex: 1; padding: 18px; }
    .screen-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; color: #e7ecf7; font-size: 13px; font-weight: 700; }
    .screen-heading small { color: #7180a0; font-size: 8px; font-weight: 600; }

    .channel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .channel-card { min-width: 0; }
    .channel-image {
        position: relative;
        height: 96px;
        display: flex;
        align-items: flex-end;
        padding: 9px;
        overflow: hidden;
        border-radius: 9px;
    }
    .channel-image::after {
        content: "";
        position: absolute;
        width: 74px; height: 74px;
        right: -12px; top: -22px;
        border-radius: 50%;
        border: 15px solid rgba(255, 255, 255, .08);
    }
    .channel-one { background: linear-gradient(135deg, #3b53c7, #101a38); }
    .channel-two { background: linear-gradient(135deg, #0f9d78, #0c1a2e); }
    .channel-three { background: linear-gradient(135deg, #7c53d6, #171334); }
    .channel-four { background: linear-gradient(135deg, #d08a3c, #241528); }
    .channel-image span { position: relative; z-index: 2; color: rgba(255, 255, 255, .95); font-family: var(--font-head); font-size: 8px; font-weight: 800; letter-spacing: 1px; }
    .channel-card small { display: block; margin-top: 5px; color: #8090ab; font-size: 8px; }

    .floating-stat {
        position: absolute;
        padding: 13px 17px;
        display: flex;
        flex-direction: column;
        gap: 2px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 13px;
        background: rgba(13, 20, 44, .82);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
        backdrop-filter: blur(14px);
    }
    .floating-stat strong { font-family: var(--font-head); color: #fff; font-size: 19px; line-height: 1.1; }
    .floating-stat span { color: #97a3bd; font-size: 9.5px; }
    .floating-stat-one { left: -18px; bottom: 58px; animation: float2 9s ease-in-out infinite; }
    .floating-stat-two { right: -16px; top: 66px; animation: float1 10s ease-in-out infinite; }


    /* =========================================================
       COMPATIBILITY STRIP
    ========================================================= */

    .compat {
        background: var(--navy);
        border-top: 1px solid rgba(255, 255, 255, .06);
        padding: 26px 0;
    }
    .compat-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 26px; }
    .compat-label { color: #7f8bab; font-size: 12px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
    .compat-list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; }
    .compat-pill {
        padding: 7px 15px;
        border-radius: 999px;
        color: #cbd3e6;
        font-size: 13px;
        font-weight: 600;
        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .08);
    }


    /* =========================================================
       STATS
    ========================================================= */

    .stats-section { background: #fff; border-bottom: 1px solid var(--line); }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat-item { padding: 34px 20px; text-align: center; border-right: 1px solid var(--line); }
    .stat-item:first-child { border-left: 1px solid var(--line); }
    .stat-item strong {
        display: block;
        font-family: var(--font-head);
        font-size: 30px;
        font-weight: 800;
        letter-spacing: -1px;
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    .stat-item span { display: block; margin-top: 5px; color: var(--muted); font-size: 13px; font-weight: 500; }


    /* =========================================================
       SECTIONS
    ========================================================= */

    .section { padding: 116px 0; }
    .section-heading { max-width: 680px; margin-bottom: 56px; }
    .section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
    .section-heading .eyebrow { margin-bottom: 18px; }
    .section-heading h2 { margin: 0; color: var(--ink); font-size: clamp(34px, 4vw, 50px); line-height: 1.08; letter-spacing: -1.8px; }
    .section-heading h2 span { color: var(--muted-2); }
    .section-heading p { max-width: 640px; margin: 20px auto 0; color: var(--muted); font-size: 16px; line-height: 1.8; }


    /* =========================================================
       FEATURES
    ========================================================= */

    .service-section { background: #fff; }
    .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .feature-card {
        min-height: 250px;
        padding: 30px;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        background: #fff;
        transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
    }
    .feature-card:hover { transform: translateY(-6px); border-color: #cdd4ff; box-shadow: var(--shadow-lg); }
    .feature-icon {
        width: 50px; height: 50px;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 22px;
        border-radius: 14px;
        color: #fff;
        background: var(--grad);
        box-shadow: var(--shadow-brand);
    }
    .feature-icon svg { width: 24px; height: 24px; }
    .feature-card h3 { margin: 0 0 9px; color: var(--ink); font-size: 18px; letter-spacing: -.3px; }
    .feature-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }


    /* =========================================================
       DEVICES
    ========================================================= */

    .devices-section { background: var(--bg-soft); }
    .devices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .device-card {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .device-card:hover { transform: translateY(-4px); border-color: #cdd4ff; box-shadow: var(--shadow); }
    .device-icon {
        flex: 0 0 50px;
        width: 50px; height: 50px;
        display: flex; align-items: center; justify-content: center;
        color: var(--brand);
        border-radius: 13px;
        background: var(--brand-soft);
    }
    .device-icon svg { width: 26px; height: 26px; }
    .device-card h3 { margin: 0 0 3px; color: var(--ink); font-size: 15px; }
    .device-card p { margin: 0; color: var(--muted); font-size: 12.5px; }
    .section-action { margin-top: 38px; text-align: center; }


    /* =========================================================
       APPS
    ========================================================= */

    .apps-section { background: #fff; }
    .apps-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; align-items: center; }
    .apps-copy { max-width: 470px; }
    .apps-copy .eyebrow { margin-bottom: 18px; }
    .apps-copy h2 { margin: 0; color: var(--ink); font-size: clamp(32px, 4vw, 46px); line-height: 1.1; letter-spacing: -1.6px; }
    .apps-copy h2 span { color: var(--muted-2); }
    .apps-copy p { margin: 20px 0 30px; color: var(--muted); font-size: 15px; line-height: 1.8; }

    .apps-list { border-top: 1px solid var(--line); }
    .app-item {
        min-height: 78px;
        display: grid;
        grid-template-columns: 42px 1fr 28px;
        align-items: center;
        gap: 16px;
        padding: 0 6px;
        border-bottom: 1px solid var(--line);
        transition: background .2s ease, padding .2s ease;
    }
    .app-item:hover { background: var(--bg-soft); padding-left: 14px; }
    .app-number { font-family: var(--font-head); color: var(--brand); font-size: 13px; font-weight: 800; }
    .app-item strong { display: block; color: var(--ink); font-size: 15px; }
    .app-item small { display: block; margin-top: 2px; color: var(--muted); font-size: 11.5px; }
    .app-arrow { color: var(--muted-2); font-size: 16px; transition: transform .2s ease, color .2s ease; }
    .app-item:hover .app-arrow { color: var(--brand); transform: translate(3px, -3px); }


    /* =========================================================
       PROCESS
    ========================================================= */

    .process-section { background: var(--bg-soft); }
    .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .process-card {
        position: relative;
        padding: 30px 26px;
        min-height: 270px;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        background: #fff;
        transition: transform .25s ease, box-shadow .25s ease;
    }
    .process-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .process-number {
        position: absolute;
        top: 22px; right: 24px;
        font-family: var(--font-head);
        font-size: 34px;
        font-weight: 800;
        letter-spacing: -1px;
        color: transparent;
        -webkit-text-stroke: 1.4px #d7dcee;
    }
    .process-icon {
        width: 48px; height: 48px;
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 34px;
        border-radius: 13px;
        color: #fff;
        background: var(--grad);
        box-shadow: var(--shadow-brand);
    }
    .process-icon svg { width: 22px; height: 22px; }
    .process-card h3 { margin: 0 0 9px; color: var(--ink); font-size: 16px; }
    .process-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }


    /* =========================================================
       PRICING
    ========================================================= */

    .pricing-section { background: #fff; }
    .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
    .plan {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 30px 26px 28px;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        background: #fff;
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }
    .plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #cdd4ff; }

    .plan-featured {
        border: 1.5px solid transparent;
        background:
            linear-gradient(#fff, #fff) padding-box,
            var(--grad) border-box;
        box-shadow: 0 24px 60px rgba(120, 90, 255, .18);
        transform: translateY(-8px);
    }
    .plan-featured:hover { transform: translateY(-12px); }

    .plan-ribbon {
        position: absolute;
        top: -13px; left: 50%;
        transform: translateX(-50%);
        padding: 6px 15px;
        border-radius: 999px;
        color: #fff;
        background: var(--grad-cta);
        font-family: var(--font-head);
        font-size: 10.5px;
        font-weight: 800;
        letter-spacing: .6px;
        text-transform: uppercase;
        white-space: nowrap;
        box-shadow: var(--shadow-brand);
    }

    .plan-save {
        position: absolute;
        top: 24px; right: 22px;
        padding: 4px 10px;
        border-radius: 8px;
        color: var(--green);
        background: #e7f8f0;
        font-size: 11px;
        font-weight: 700;
    }

    .plan-head h3 { margin: 0; color: var(--ink); font-size: 19px; }
    .plan-head p { margin: 4px 0 0; color: var(--muted); font-size: 12.5px; }

    .plan-price { display: flex; align-items: flex-start; margin-top: 24px; color: var(--ink); font-family: var(--font-head); }
    .plan-price .cur { margin-top: 8px; font-size: 22px; font-weight: 700; }
    .plan-price .amt { font-size: 52px; font-weight: 800; line-height: .9; letter-spacing: -2.5px; }
    .plan-per { margin-top: 10px; color: var(--muted); font-size: 12.5px; }
    .plan-per b { color: var(--ink); font-weight: 700; }

    .plan-btn {
        display: flex; align-items: center; justify-content: center;
        width: 100%;
        height: 48px;
        padding: 0;
        margin-top: 22px;
        cursor: pointer;
        border-radius: 11px;
        color: #fff;
        background: var(--ink);
        font-family: var(--font-head);
        font-size: 14px;
        font-weight: 700;
        transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    }
    .plan-btn:hover { background: #1b2440; transform: translateY(-1px); }
    .plan-featured .plan-btn { background: var(--grad-cta); box-shadow: var(--shadow-brand); }
    .plan-featured .plan-btn:hover { box-shadow: 0 20px 46px rgba(120, 90, 255, .45); }

    .plan-list { list-style: none; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); }
    .plan-list li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 12px;
        color: var(--ink-soft);
        font-size: 13px;
        line-height: 1.5;
    }
    .plan-list li::before {
        content: "";
        position: absolute;
        left: 0; top: 1px;
        width: 17px; height: 17px;
        border-radius: 50%;
        background: var(--brand-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235468ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat;
    }

    .pricing-assurance {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 12px 28px;
        margin-top: 40px;
    }
    .assurance-item { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13.5px; font-weight: 500; }
    .assurance-item svg { width: 18px; height: 18px; color: var(--green); }

    .pricing-disclaimer { max-width: 820px; margin: 22px auto 0; text-align: center; color: var(--muted-2); font-size: 11.5px; line-height: 1.6; }


    /* =========================================================
       GUARANTEE BAND
    ========================================================= */

    .guarantee {
        padding: 70px 0;
        background: var(--navy);
        color: #fff;
        position: relative;
        overflow: hidden;
    }
    .guarantee .hero-glow-1 { top: -300px; right: -10%; opacity: .5; }
    .guarantee-inner {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 32px;
        justify-content: center;
        text-align: left;
        flex-wrap: wrap;
    }
    .guarantee-badge {
        flex: 0 0 auto;
        width: 92px; height: 92px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 24px;
        color: #fff;
        background: var(--grad);
        box-shadow: var(--shadow-brand);
    }
    .guarantee-badge svg { width: 44px; height: 44px; }
    .guarantee-text { max-width: 640px; }
    .guarantee-text h2 { margin: 0 0 8px; font-size: clamp(26px, 3vw, 34px); letter-spacing: -1px; }
    .guarantee-text h2 span { color: #a9b6ff; }
    .guarantee-text p { margin: 0; color: #aeb8d0; font-size: 15px; line-height: 1.7; }


    /* =========================================================
       TESTIMONIALS
    ========================================================= */

    .testimonials-section { background: #fff; }
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .testimonial-card {
        display: flex;
        flex-direction: column;
        padding: 30px;
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        background: var(--bg-soft);
        transition: transform .25s ease, box-shadow .25s ease;
    }
    .testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .stars { display: flex; gap: 3px; margin-bottom: 16px; color: #f5b716; }
    .stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
    .testimonial-card p { margin: 0 0 22px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
    .author-avatar {
        width: 42px; height: 42px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%;
        color: #fff;
        background: var(--grad);
        font-family: var(--font-head);
        font-size: 15px;
        font-weight: 700;
    }
    .author-name { font-family: var(--font-head); color: var(--ink); font-size: 14px; font-weight: 700; }
    .author-role { color: var(--muted); font-size: 12px; }


    /* =========================================================
       INFORMATION
    ========================================================= */

    .information-section { background: var(--bg-soft); }
    .information-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
    .information-heading .eyebrow { margin-bottom: 18px; }
    .information-heading h2 { margin: 0; color: var(--ink); font-size: clamp(32px, 4vw, 46px); line-height: 1.1; letter-spacing: -1.6px; }
    .information-heading h2 span { color: var(--muted-2); }
    .information-content { padding-top: 6px; }
    .information-content p { margin: 0 0 20px; color: var(--ink-soft); font-size: 15px; line-height: 1.9; }


    /* =========================================================
       SETUP BANNER
    ========================================================= */

    .setup-banner {
        position: relative;
        overflow: hidden;
        padding: 82px 0;
        background: linear-gradient(120deg, #141d4a 0%, #0b1020 55%, #1a1245 100%);
        color: #fff;
    }
    .setup-banner .hero-glow-2 { top: -120px; left: 30%; opacity: .5; }
    .setup-banner-inner {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        flex-wrap: wrap;
    }
    .setup-copy { max-width: 660px; }
    .setup-copy .eyebrow { margin-bottom: 18px; }
    .setup-copy h2 { margin: 0; color: #fff; font-size: clamp(30px, 4vw, 44px); line-height: 1.1; letter-spacing: -1.6px; }
    .setup-copy h2 span { color: #a9b6ff; }
    .setup-copy p { max-width: 640px; margin: 16px 0 0; color: #b4bdd6; font-size: 15px; line-height: 1.75; }


    /* =========================================================
       FAQ
    ========================================================= */

    .faq-section { background: #fff; }
    .faq-list { max-width: 860px; margin: 0 auto; }
    .faq-item {
        margin-bottom: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        overflow: hidden;
        transition: border-color .2s ease, box-shadow .2s ease;
    }
    .faq-item.open { border-color: #cdd4ff; box-shadow: var(--shadow); }
    .faq-question {
        width: 100%;
        min-height: 68px;
        padding: 20px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        text-align: left;
        color: var(--ink);
        cursor: pointer;
        font-family: var(--font-head);
        font-size: 15.5px;
        font-weight: 700;
    }
    .faq-icon {
        position: relative;
        flex: 0 0 32px;
        width: 32px; height: 32px;
        border-radius: 50%;
        background: var(--bg-soft);
        transition: background .25s ease;
    }
    .faq-icon span {
        position: absolute;
        left: 9px; top: 15px;
        width: 14px; height: 2px;
        border-radius: 2px;
        background: var(--ink);
        transition: transform .3s ease, background .25s ease;
    }
    .faq-icon span:last-child { transform: rotate(90deg); }
    .faq-question[aria-expanded="true"] .faq-icon { background: var(--grad); }
    .faq-question[aria-expanded="true"] .faq-icon span { background: #fff; }
    .faq-question[aria-expanded="true"] .faq-icon span:last-child { transform: rotate(0); }

    .faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
    .faq-answer > div { overflow: hidden; }
    .faq-answer p { margin: 0 24px 22px; color: var(--muted); font-size: 14px; line-height: 1.8; }
    .faq-answer a { color: var(--brand-strong); font-weight: 600; }
    .faq-item.open .faq-answer { grid-template-rows: 1fr; }


    /* =========================================================
       FINAL CTA
    ========================================================= */

    .final-cta { padding: 120px 0; background: var(--bg-soft); }
    .final-cta-inner {
        position: relative;
        overflow: hidden;
        max-width: 980px;
        margin: 0 auto;
        padding: 72px 40px;
        text-align: center;
        border-radius: 30px;
        background: linear-gradient(135deg, #101740 0%, #0a0e1c 55%, #1c1450 100%);
        color: #fff;
        box-shadow: var(--shadow-lg);
    }
    .final-cta-inner .hero-glow-1 { top: -280px; right: -5%; opacity: .55; }
    .final-cta-inner .hero-glow-2 { bottom: -280px; left: -5%; top: auto; opacity: .5; }
    .final-cta-inner > * { position: relative; z-index: 2; }
    .final-cta-mark {
        width: 62px; height: 62px;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 22px;
        border-radius: 17px;
        color: #fff;
        background: var(--grad);
        box-shadow: var(--shadow-brand);
    }
    .final-cta-mark svg { width: 30px; height: 30px; }
    .final-cta .eyebrow { margin-bottom: 18px; }
    .final-cta h2 { margin: 0; font-size: clamp(34px, 4.4vw, 54px); line-height: 1.08; letter-spacing: -2px; }
    .final-cta h2 span { color: #a9b6ff; }
    .final-cta p { max-width: 540px; margin: 18px auto 28px; color: #b6bfd8; font-size: 16px; }


    /* =========================================================
       FOOTER
    ========================================================= */

    .site-footer { padding: 72px 0 28px; color: #98a2b3; background: #070b16; }
    .footer-main { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 52px; }
    .footer-brand .brand-text { color: #fff; }
    .footer-brand p { max-width: 300px; margin: 20px 0 14px; color: #808da5; font-size: 13px; line-height: 1.7; }
    .footer-email { color: #b3bdd2; font-size: 13px; font-weight: 500; }
    .footer-email:hover { color: #fff; }
    .footer-column h3 { margin: 4px 0 18px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
    .footer-column a { display: block; margin-bottom: 12px; color: #808da5; font-size: 13px; transition: color .2s ease, transform .2s ease; }
    .footer-column a:hover { color: #fff; transform: translateX(3px); }
    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
    .footer-bottom p { margin: 0; font-size: 11px; }
    .footer-disclaimer { max-width: 540px; text-align: right; color: #5f6b82 !important; }


    /* =========================================================
       SCROLL REVEAL
    ========================================================= */

    .reveal { transition: opacity .6s ease, transform .6s ease; }
    .js .reveal:not(.reveal-visible) { opacity: 0; transform: translateY(20px); }
    .reveal-visible { opacity: 1; transform: translateY(0); }


    /* =========================================================
       RESPONSIVE
    ========================================================= */

    @media (max-width: 1050px) {
        .main-nav { gap: 22px; margin-right: 20px; }
        .hero-container { gap: 40px; grid-template-columns: 1fr; }
        .hero-content { max-width: 700px; }
        .hero-visual { min-height: 420px; order: 2; }
        .feature-grid { grid-template-columns: repeat(2, 1fr); }
        .devices-grid { grid-template-columns: repeat(2, 1fr); }
        .pricing-grid { grid-template-columns: repeat(2, 1fr); }
        .process-grid { grid-template-columns: repeat(2, 1fr); }
        .testimonial-grid { grid-template-columns: 1fr; max-width: 620px; margin: 0 auto; }
        .apps-layout, .information-layout { grid-template-columns: 1fr; gap: 50px; }
        .plan-featured { transform: none; }
        .plan-featured:hover { transform: translateY(-5px); }
    }

    @media (max-width: 800px) {
        .container { width: min(var(--container), calc(100% - 32px)); }
        .promo { font-size: 12.5px; }
        .promo-inner { padding-right: 40px; padding-left: 12px; }
        .header-inner { height: 66px; }
        .main-nav {
            position: absolute;
            left: 16px; right: 16px; top: 66px;
            display: none;
            flex-direction: column;
            align-items: stretch;
            gap: 2px;
            margin: 0;
            padding: 10px;
            border: 1px solid var(--line);
            border-radius: 16px;
            background: #fff;
            box-shadow: var(--shadow-lg);
        }
        .main-nav.open { display: flex; }
        .main-nav a { padding: 14px 14px; border-radius: 10px; }
        .main-nav a::after { display: none; }
        .main-nav a:hover { background: var(--bg-soft); }
        .header-cta { display: none; }
        .mobile-menu-toggle { display: block; }
        .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        .hero h1 { font-size: clamp(40px, 10vw, 58px); letter-spacing: -1.8px; }
        .hero-visual { min-height: 380px; }
        .screen-frame { width: 96%; transform: none; }
        .floating-stat-one { left: -2px; bottom: 36px; }
        .floating-stat-two { right: -2px; top: 40px; }

        .stats-grid { grid-template-columns: repeat(2, 1fr); }
        .stat-item:nth-child(2) { border-right: 0; }
        .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid var(--line); }

        .section { padding: 84px 0; }
        .devices-grid { grid-template-columns: 1fr; }
        .setup-banner-inner { flex-direction: column; align-items: flex-start; }
        .guarantee-inner { text-align: center; flex-direction: column; }
        .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
        .footer-brand { grid-column: 1 / -1; }
        .footer-bottom { flex-direction: column; align-items: flex-start; }
        .footer-disclaimer { text-align: left; }
    }

    @media (max-width: 560px) {
        .hero-desc { font-size: 15.5px; }
        .hero-buttons { display: grid; grid-template-columns: 1fr; }
        .hero-buttons .btn { width: 100%; }
        .hero-visual { min-height: 300px; }
        .screen-frame { width: 100%; padding: 7px; border-radius: 14px; }
        .screen-sidebar { width: 46px; padding: 12px 8px; }
        .screen-main { padding: 12px; }
        .channel-image { height: 74px; }
        .floating-stat { padding: 10px 12px; }
        .floating-stat strong { font-size: 15px; }
        .stat-item { padding: 26px 12px; }
        .stat-item strong { font-size: 24px; }
        .feature-grid, .pricing-grid, .process-grid { grid-template-columns: 1fr; }
        .feature-card { min-height: auto; }
        .plan-featured { order: -1; }
        .final-cta-inner { padding: 54px 24px; border-radius: 24px; }
        .faq-question { font-size: 14.5px; padding: 18px 18px; }
        .footer-main { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
    }


    /* =========================================================
       ACCESSIBILITY
    ========================================================= */

    @media (prefers-reduced-motion: reduce) {
        html { scroll-behavior: auto; }
        *, *::before, *::after {
            animation-duration: .01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .01ms !important;
        }
        .reveal { opacity: 1; transform: none; }
    }

/* No-JS / reduced-motion safeguard for scroll reveal */
@media (prefers-reduced-motion: reduce){ .js .reveal:not(.reveal-visible){ opacity:1 !important; transform:none !important; } }


/* =========================================================
   SUB-PAGES (page.php: Setup, Guides, FAQ, About, Contact, Legal)
========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    padding: 76px 0 66px;
}
.page-hero .hero-glow-1 { top: -260px; right: -6%; opacity: .5; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { margin: 0; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.06; letter-spacing: -1.8px; }
.page-hero .page-sub { margin: 16px 0 0; max-width: 640px; color: #b9c2d8; font-size: 16px; line-height: 1.7; }

.page-body { background: #fff; padding: 74px 0 96px; }

.prose { max-width: 820px; margin: 0 auto; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.prose > *:first-child { margin-top: 0; }
.prose h2 { font-family: var(--font-head); color: var(--ink); font-size: clamp(23px, 3vw, 31px); letter-spacing: -.6px; line-height: 1.2; margin: 46px 0 14px; }
.prose h3 { font-family: var(--font-head); color: var(--ink); font-size: 19px; letter-spacing: -.3px; margin: 30px 0 10px; }
.prose p { margin: 0 0 18px; }
.prose a { color: var(--brand-strong); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--violet); }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose strong { color: var(--ink); }
.prose .lead { font-size: 18px; color: var(--ink); line-height: 1.7; }
.prose .updated { color: var(--muted-2); font-size: 13px; margin-bottom: 30px; }
.prose blockquote { margin: 24px 0; padding: 14px 20px; border-left: 3px solid var(--brand); background: var(--bg-soft); border-radius: 0 12px 12px 0; color: var(--ink-soft); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 22px; font-size: 14.5px; }
.prose th, .prose td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); }
.prose th { font-family: var(--font-head); color: var(--ink); }

/* Cards used inside prose (setup / guides) */
.subgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 6px 0 26px; }
.subcard { padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.subcard:hover { transform: translateY(-3px); border-color: #cdd4ff; box-shadow: var(--shadow); }
.subcard h3 { margin: 0 0 8px; font-family: var(--font-head); color: var(--ink); font-size: 17px; }
.subcard h3 a { text-decoration: none; }
.subcard p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.subcard ol, .subcard ul { margin: 12px 0 0; padding-left: 20px; }
.subcard li { font-size: 14px; color: var(--ink-soft); margin-bottom: 7px; }

/* FAQ reused on the FAQ page sits fine inside .prose; keep spacing tidy */
.prose .faq-list { max-width: none; margin: 8px 0 0; }
.prose .faq-answer p { margin: 0 24px 22px; }

/* Native Hostinger contact form */
.prose input[type="text"], .prose input[type="email"], .prose input[type="tel"],
.prose input[type="url"], .prose textarea, .prose select {
    width: 100%; padding: 12px 14px; margin: 6px 0 14px;
    border: 1px solid var(--line); border-radius: 10px;
    font-size: 15px; color: var(--ink); background: #fff;
}
.prose textarea { min-height: 130px; resize: vertical; }
.prose label { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--ink); }
.prose input[type="submit"], .prose button[type="submit"] {
    display: inline-flex; align-items: center; justify-content: center;
    height: 50px; padding: 0 26px; border: 0; border-radius: 12px;
    background: var(--grad-cta); color: #fff;
    font-family: var(--font-head); font-weight: 700; font-size: 15px;
    cursor: pointer; box-shadow: var(--shadow-brand); transition: transform .18s ease;
}
.prose input[type="submit"]:hover, .prose button[type="submit"]:hover { transform: translateY(-2px); }

@media (max-width: 800px) {
    .subgrid { grid-template-columns: 1fr; }
    .page-hero { padding: 58px 0 50px; }
    .page-body { padding: 56px 0 74px; }
}


/* =========================================================
   SETUP GUIDE (page-setup.php) - sidebar + accordion
========================================================= */

.sg-section { background: #fff; padding: 60px 0 92px; }
.sg-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }

/* Sidebar */
.sg-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 30px; }
.sg-block-title { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 1.1px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }

.sg-how { display: flex; flex-direction: column; gap: 4px; }
.sg-how-step { display: flex; gap: 14px; align-items: flex-start; padding: 7px 0; }
.sg-how-ic { width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--grad); box-shadow: var(--shadow-brand); }
.sg-how-ic svg { width: 18px; height: 18px; }
.sg-how-tx strong { display: block; font-family: var(--font-head); font-size: 14px; color: var(--ink); margin-bottom: 2px; }
.sg-how-tx p { font-size: 12.5px; color: var(--muted); line-height: 1.55; }

.sg-apps { display: flex; flex-wrap: wrap; gap: 6px; }
.sg-app { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; font-size: 12px; font-weight: 600; color: var(--ink-soft); }
.sg-app::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

.sg-nav { display: flex; flex-direction: column; gap: 4px; }
.sg-nav a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 10px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; border: 1px solid transparent; transition: .18s; }
.sg-nav a::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--line); flex-shrink: 0; transition: .18s; }
.sg-nav a:hover, .sg-nav a.active { background: var(--brand-soft); color: var(--brand-strong); border-color: #dbe0ff; }
.sg-nav a:hover::before, .sg-nav a.active::before { background: var(--brand); }

/* Accordion */
.sg-acc { display: flex; flex-direction: column; gap: 10px; }
.sg-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.sg-item.open { border-color: #cdd4ff; box-shadow: var(--shadow-lg); }
.sg-btn { width: 100%; display: flex; align-items: center; gap: 12px; padding: 15px 18px; background: none; border: 0; text-align: left; cursor: pointer; font-family: var(--font-head); transition: background .2s; }
.sg-btn:hover, .sg-item.open .sg-btn { background: var(--bg-soft); }
.sg-ic { flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px; background: var(--bg-soft-2); color: var(--muted); display: flex; align-items: center; justify-content: center; transition: .2s; }
.sg-item.open .sg-ic { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.sg-ic svg { width: 20px; height: 20px; }
.sg-name { flex: 1; font-family: var(--font-head); font-size: 15.5px; font-weight: 700; color: var(--ink); }
.sg-tag { font-size: 11.5px; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: var(--bg-soft); border: 1px solid var(--line); color: var(--muted); flex-shrink: 0; }
.sg-chev { flex-shrink: 0; width: 18px; height: 18px; color: var(--muted); transition: transform .28s, color .2s; }
.sg-item.open .sg-chev { transform: rotate(180deg); color: var(--brand); }
.sg-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s cubic-bezier(.4, 0, .2, 1); }
.sg-item.open .sg-body { grid-template-rows: 1fr; }
.sg-body-inner { overflow: hidden; }
.sg-content { padding: 16px 20px 22px; border-top: 1px solid var(--line); }

.sg-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--brand-strong); margin: 20px 0 12px; }
.sg-label:first-child { margin-top: 0; }
.sg-steps { display: flex; flex-direction: column; gap: 11px; }
.sg-step { display: flex; gap: 12px; align-items: flex-start; }
.sg-num { flex-shrink: 0; width: 25px; height: 25px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-strong); font-family: var(--font-head); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.sg-tx { flex: 1; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.sg-tx strong { color: var(--ink); font-weight: 600; }
.sg-code { display: inline-block; background: var(--bg-soft-2); border: 1px solid var(--line); border-radius: 6px; padding: 2px 8px; font-size: 12.5px; font-family: "Courier New", monospace; color: var(--violet); word-break: break-all; margin: 3px 0; }
.sg-div { border: 0; border-top: 1px dashed var(--line); margin: 18px 0; }
.sg-callout { background: var(--brand-soft); border-left: 3px solid var(--brand); border-radius: 0 10px 10px 0; padding: 11px 15px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin: 14px 0 4px; }
.sg-callout strong { color: var(--brand-strong); }
.sg-done { display: inline-flex; align-items: center; gap: 6px; background: #e7f8f0; border: 1px solid #bfe9d4; color: #0f8a53; font-family: var(--font-head); font-size: 12.5px; font-weight: 700; padding: 5px 13px; border-radius: 100px; margin-top: 16px; }
.sg-done svg { width: 13px; height: 13px; }

@media (max-width: 900px) {
    .sg-wrap { grid-template-columns: 1fr; gap: 30px; }
    .sg-section { padding: 46px 0 72px; }
    .sg-sidebar { position: static; }
    .sg-nav { display: none; }
}
@media (max-width: 560px) {
    .sg-btn { padding: 13px 14px; }
    .sg-content { padding: 14px 15px 18px; }
    .sg-name { font-size: 14.5px; }
    .sg-tag { display: none; }
}


/* =========================================================
   BRAND LOGO - custom emblem only (header), wordmark in footer
========================================================= */
.site-header .brand { align-items: center; }
.site-header .brand-mark {
    width: 104px;
    height: 52px;
    border-radius: 0;
    box-shadow: none;
    background: url("/wp-content/uploads/2026/09/iptvserviceprovider-mark.png") left center / contain no-repeat;
}
.site-header .brand-mark svg { display: none; }
.site-header .brand-text { display: none; }

/* Dark footer: keep the white wordmark, hide the full-colour emblem */
.site-footer .brand-mark { display: none; }

@media (max-width: 800px) {
    .site-header .brand-mark { width: 104px; height: 52px; }
}
@media (max-width: 560px) {
    .site-header .brand-mark { width: 92px; height: 46px; }
}

/* Pricing first in the header menu */
.main-nav a[href*="#pricing"] { order: -1; }

/* Subtle up/down bob on the header logo */
@keyframes brand-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.site-header .brand-mark { animation: brand-bob 3s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
    .site-header .brand-mark { animation: none; }
}


/* =========================================================
   BLOG - single post + listing
========================================================= */

/* ---- Single post ---- */
.post-hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: 72px 0 56px; }
.post-hero .hero-glow-1 { top: -260px; right: -6%; opacity: .5; }
.post-hero .container { position: relative; z-index: 2; }
.post-hero-inner { max-width: 820px; }
.post-hero .eyebrow { margin-bottom: 16px; }
.post-hero h1 { margin: 0; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.14; letter-spacing: -1.4px; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 18px; color: #aeb8d0; font-size: 13.5px; }
.post-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: #59668a; }

.post-body { background: #fff; padding: 46px 0 90px; }
.post-featured { max-width: 940px; margin: 0 auto 42px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.post-featured img { width: 100%; height: auto; display: block; }

/* Images and figures inside authored content */
.prose img { max-width: 100%; height: auto; border-radius: 14px; margin: 24px 0; display: block; }
.prose figure { margin: 26px 0; }
.prose figure img { margin: 0; }
.prose figcaption { margin-top: 9px; text-align: center; color: var(--muted-2); font-size: 13px; }
.prose h2 { scroll-margin-top: 90px; }
.prose code { font-family: "Courier New", monospace; font-size: .9em; background: var(--bg-soft-2); border: 1px solid var(--line); border-radius: 6px; padding: 1px 7px; color: var(--violet); word-break: break-word; }
.prose pre { background: var(--ink); color: #e7ecf7; padding: 16px 18px; border-radius: 12px; overflow: auto; margin: 22px 0; font-size: 13.5px; line-height: 1.6; }
.prose pre code { background: none; border: 0; padding: 0; color: inherit; font-size: inherit; }

.post-tags { max-width: 820px; margin: 36px auto 0; display: flex; flex-wrap: wrap; gap: 8px; }
.post-tag { font-size: 12.5px; font-weight: 600; color: var(--brand-strong); background: var(--brand-soft); border: 1px solid #dfe3ff; border-radius: 100px; padding: 5px 13px; }

.post-cta { max-width: 820px; margin: 40px auto 0; }
.post-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 26px 30px; border-radius: var(--radius-lg); background: linear-gradient(135deg, #101740 0%, #0a0e1c 55%, #1c1450 100%); color: #fff; }
.post-cta-inner strong { font-family: var(--font-head); font-size: 18px; }
.post-cta-inner p { margin: 4px 0 0; color: #b6bfd8; font-size: 14px; }

.post-back { max-width: 820px; margin: 28px auto 0; }

/* ---- Blog listing (index.php) ---- */
.blog-section { background: #fff; padding: 58px 0 90px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #cdd4ff; }
.post-card-media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, var(--brand-soft), #eef1ff); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card-cat { font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--brand-strong); margin-bottom: 8px; }
.post-card h3 { margin: 0 0 8px; font-size: 18px; letter-spacing: -.3px; line-height: 1.25; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--brand-strong); }
.post-card p { margin: 0 0 16px; color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.post-card-meta { margin-top: auto; color: var(--muted-2); font-size: 12px; }

.blog-pagination { margin-top: 42px; display: flex; justify-content: center; }
.blog-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.blog-pagination a, .blog-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 10px; border: 1px solid var(--line); font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.blog-pagination a:hover { border-color: #cdd4ff; color: var(--brand-strong); background: var(--brand-soft); }
.blog-pagination .current { background: var(--grad-cta); color: #fff; border-color: transparent; }

@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
    .post-hero { padding: 54px 0 44px; }
    .post-body { padding: 36px 0 64px; }
    .post-featured { border-radius: 14px; margin-bottom: 28px; }
    .post-cta-inner { padding: 22px; }
    .post-grid { grid-template-columns: 1fr; }
    .blog-section { padding: 44px 0 66px; }
}

