:root {
            --bg: #0a0a0c;
            --bg-2: #111114;
            --surface: rgba(255, 255, 255, 0.03);
            --border: rgba(255, 255, 255, 0.08);
            --text: #f5f5f7;
            --muted: #8b8b94;
            --brand: #e30613;
            --brand-soft: rgba(227, 6, 19, 0.12);
            --gray: #9a9a9f;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* Inline SVG icons (see icon() in lib/render.php). Sized in em so
           font-size on the parent scales them; currentColor inherits colour —
           a drop-in for the old Font Awesome <i> glyphs. */
        .ic {
            display: inline-block;
            width: 1em;
            height: 1em;
            vertical-align: -0.125em;
            flex-shrink: 0;
        }

        /* Animated background */
        .bg-orbs {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.35;
            animation: float 18s ease-in-out infinite;
        }
        .orb-1 { width: 500px; height: 500px; background: var(--brand); top: -150px; left: -150px; }
        .orb-2 { width: 400px; height: 400px; background: #444; bottom: -100px; right: -100px; animation-delay: -6s; }
        .orb-3 { width: 350px; height: 350px; background: var(--brand); top: 40%; left: 50%; opacity: 0.18; animation-delay: -12s; }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(60px, -40px) scale(1.08); }
            66% { transform: translate(-40px, 60px) scale(0.95); }
        }

        /* Grid overlay */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
            background-size: 60px 60px;
            z-index: -1;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        }

        /* Nav (scoped to the fixed header pill only — .crumbs and
           .footer-links are also <nav> elements and must NOT inherit this) */
        .site-nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
            width: max-content;
            max-width: calc(100% - 24px);
            background: rgba(15, 15, 18, 0.7);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 8px 8px 8px 24px;
            display: flex;
            align-items: center;
            gap: 28px;
            transition: top 0.3s ease;
        }
        .site-nav .brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: -0.02em;
        }
        .site-nav .brand .dot { color: var(--brand); }
        .site-nav ul {
            display: flex;
            gap: 22px;
            list-style: none;
        }
        .site-nav a {
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }
        .site-nav a:hover { color: var(--text); }
        .site-nav .cta {
            background: var(--brand);
            color: white;
            padding: 8px 18px;
            border-radius: 999px;
            font-weight: 600;
            white-space: nowrap;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .site-nav .cta:hover {
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(227, 6, 19, 0.4);
            color: white;
        }
        /* Mobile menu toggle + drawer (hidden on desktop) */
        .nav-toggle {
            display: none;
            width: 40px; height: 40px;
            border: none;
            border-radius: 999px;
            background: var(--brand);
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }
        .nav-toggle:hover { transform: translateY(-1px); }
        /* Menu ⇄ close glyph swap, driven by `.site-nav.open` (footer.php JS) */
        .nav-ic-close { display: none; }
        .site-nav.open .nav-ic-open { display: none; }
        .site-nav.open .nav-ic-close { display: inline-block; }
        .nav-drawer {
            display: none;               /* toggled to flex at <=720px */
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%) scale(0.97);
            transform-origin: top center;
            width: min(280px, calc(100vw - 24px));
            flex-direction: column;
            gap: 4px;
            padding: 12px;
            background: rgba(15, 15, 18, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 20px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
        }
        .site-nav.open .nav-drawer {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) scale(1);
        }
        .nav-drawer a:not(.cta) {
            padding: 12px 16px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
        }
        .nav-drawer a:not(.cta):hover { background: rgba(255, 255, 255, 0.06); }
        .nav-drawer .cta {
            display: block;
            margin-top: 6px;
            padding: 13px 18px;
            text-align: center;
            white-space: nowrap;
        }

        @media (max-width: 720px) {
            .site-nav ul { display: none; }
            .site-nav > .cta { display: none; }   /* CTA lives in the drawer on mobile */
            .nav-toggle { display: inline-flex; }
            .nav-drawer { display: flex; }
            .site-nav { padding: 6px 6px 6px 18px; gap: 14px; }
            .site-nav .brand { font-size: 16px; }
        }

        /* Container */
        .wrap {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 80px;
            position: relative;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 60px;
            align-items: center;
        }
        @media (max-width: 900px) {
            .hero-grid { grid-template-columns: 1fr; gap: 40px; }
        }
        @media (max-width: 480px) {
            .wrap { padding: 0 20px; }
            .hero { padding: 120px 0 64px; min-height: auto; }
            .lead { font-size: 17px; }
            .hero-cta { gap: 12px; }
            .hero-cta .btn { flex: 1 1 auto; justify-content: center; }
            .stats { gap: 0; justify-content: space-between; margin-top: 40px; padding-top: 28px; }
            .stat .num { font-size: 26px; }
            .stat .label { font-size: 12px; }
            section { padding: 72px 0; }
            .business { padding: 36px 24px; }
            .contact-card { padding: 56px 28px; }
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 24px;
        }
        .badge .pulse {
            width: 8px; height: 8px;
            background: #22c55e;
            border-radius: 50%;
            position: relative;
        }
        .badge .pulse::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse 2s ease-out infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.7; }
            100% { transform: scale(2.5); opacity: 0; }
        }

        h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(42px, 6.5vw, 88px);
            font-weight: 700;
            line-height: 1.02;
            letter-spacing: -0.04em;
            margin-bottom: 24px;
        }
        h1 .accent {
            background: linear-gradient(135deg, var(--brand) 0%, #ff4d5a 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .lead {
            font-size: 19px;
            color: var(--muted);
            max-width: 560px;
            margin-bottom: 36px;
        }
        .hero-cta {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 26px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            white-space: nowrap;
            transition: all 0.25s;
            border: 1px solid transparent;
            cursor: pointer;
        }
        .btn-primary {
            background: var(--brand);
            color: white;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(227, 6, 19, 0.4);
        }
        .btn-ghost {
            background: var(--surface);
            color: var(--text);
            border-color: var(--border);
        }
        .btn-ghost:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.06);
        }

        .stats {
            display: flex;
            gap: 36px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid var(--border);
        }
        .stat .num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        .stat .num .accent { color: var(--brand); }
        .stat .label {
            font-size: 13px;
            color: var(--muted);
            margin-top: 2px;
        }

        /* Hero card */
        .hero-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 28px;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }
        .hero-card::before {
            content: '';
            position: absolute;
            top: -1px; left: -1px; right: -1px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(227,6,19,0.6), transparent);
        }
        .hero-card .hero-card-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
            letter-spacing: -0.02em;
        }
        .hero-card .role { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 22px;
        }
        .tech-tags span {
            padding: 6px 12px;
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 12px;
            font-weight: 500;
            color: var(--text);
        }
        .meta-row {
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            padding: 10px 0;
            border-top: 1px solid var(--border);
        }
        .meta-row span:first-child { color: var(--muted); }

        /* Section */
        section { padding: 100px 0; position: relative; }
        .section-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--brand);
            font-weight: 600;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-label::before {
            content: '';
            width: 24px; height: 1px;
            background: var(--brand);
        }
        h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(32px, 4.5vw, 54px);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.05;
            margin-bottom: 20px;
        }
        .section-intro {
            color: var(--muted);
            font-size: 17px;
            max-width: 620px;
            margin-bottom: 56px;
        }

        /* Services */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 18px;
        }
        .service {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 32px 28px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .service::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, var(--brand-soft), transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .service:hover {
            border-color: rgba(227, 6, 19, 0.3);
        }
        /* Only the clickable (anchor) cards lift — plain <div> service cards
           (e.g. Data & Reporting, Managed Hosting) must not imply clickability. */
        a.service:hover { transform: translateY(-4px); }
        .service:hover::before { opacity: 1; }
        .service > * { position: relative; }
        .service .icon {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: var(--brand-soft);
            display: flex; align-items: center; justify-content: center;
            color: var(--brand);
            font-size: 20px;
            margin-bottom: 22px;
        }
        .service h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 19px;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }
        .service p {
            color: var(--muted);
            font-size: 15px;
        }

        /* Skills */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
        }
        .skill {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 20px 16px;
            text-align: center;
            transition: all 0.25s;
        }
        .skill:hover {
            border-color: rgba(227, 6, 19, 0.4);
            background: rgba(227, 6, 19, 0.04);
            transform: translateY(-2px);
        }
        .skill .ic {
            font-size: 28px;
            color: var(--brand);
            display: block;
            margin: 0 auto 10px;
        }
        .skill span {
            font-size: 13px;
            font-weight: 500;
            color: var(--text);
        }

        /* Agency logo tile (hero card) */
        .logo-tile {
            width: 84px; height: 84px;
            border-radius: 20px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            margin-bottom: 18px;
            box-shadow: 0 10px 30px rgba(227, 6, 19, 0.25);
        }
        .logo-tile img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }

        /* Featured service (5-Day Express) */
        .service.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 32px;
            align-items: center;
            background: linear-gradient(135deg, rgba(227,6,19,0.10) 0%, rgba(255,255,255,0.02) 100%);
            border-color: rgba(227, 6, 19, 0.35);
        }
        .service.featured:hover { transform: none; }
        .service.featured h3 { font-size: 26px; margin-bottom: 12px; }
        .offer-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 14px;
            background: var(--brand);
            color: white;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }
        .featured-cta {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 14px;
        }
        .featured-price { font-size: 14px; color: var(--muted); }
        .featured-price strong {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            color: var(--text);
        }
        @media (max-width: 720px) {
            .service.featured { grid-template-columns: 1fr; gap: 20px; }
        }

        /* Pricing */
        .pricing-card {
            background: linear-gradient(135deg, rgba(227,6,19,0.06) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid rgba(227, 6, 19, 0.3);
            border-radius: 28px;
            padding: 56px;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 56px;
            position: relative;
            overflow: hidden;
        }
        .pricing-card::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(227,6,19,0.15), transparent 70%);
            pointer-events: none;
        }
        .pricing-card > * { position: relative; }
        .pricing-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(24px, 3vw, 32px);
            letter-spacing: -0.02em;
            margin-bottom: 12px;
        }
        .pricing-desc { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
        .includes {
            list-style: none;
            display: grid;
            gap: 12px;
        }
        .includes li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--text);
        }
        .includes .ic {
            color: var(--brand);
            font-size: 13px;
            margin-top: 5px;
        }
        .pricing-price {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 16px;
            border-left: 1px solid var(--border);
            padding-left: 56px;
        }
        .price-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--muted);
            font-weight: 600;
        }
        .price-amount {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(38px, 4.5vw, 54px);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .price-slash { color: var(--brand); }
        .installment {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 999px;
            font-size: 13px;
            color: var(--text);
        }
        .installment .ic { color: var(--brand); }
        .fine-print {
            font-size: 12px;
            color: var(--muted);
            line-height: 1.6;
            max-width: 320px;
        }
        @media (max-width: 900px) {
            .pricing-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 36px; }
            .pricing-price { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 36px; }
        }

        /* Business showcase */
        .business {
            background: linear-gradient(135deg, rgba(227,6,19,0.06) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 60px;
            position: relative;
            overflow: hidden;
        }
        .business::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(227,6,19,0.15), transparent 70%);
        }
        .business-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            position: relative;
        }
        @media (max-width: 900px) {
            .business { padding: 40px 28px; }
            .business-grid { grid-template-columns: 1fr; gap: 36px; }
        }
        .business-logo-wrap {
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        .business-logo-wrap img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .business-tag {
            display: inline-block;
            padding: 5px 12px;
            background: var(--brand);
            color: white;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }
        .business h2 {
            font-size: clamp(28px, 3.6vw, 42px);
            margin-bottom: 18px;
        }
        .business p {
            color: var(--muted);
            font-size: 16px;
            margin-bottom: 16px;
        }
        .business-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin: 26px 0 32px;
        }
        .business-features div {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text);
        }
        .business-features .ic {
            color: var(--brand);
            font-size: 12px;
        }

        /* FAQ */
        .faq-list {
            display: grid;
            gap: 12px;
            max-width: 820px;
        }
        .faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 4px 24px;
            transition: border-color 0.25s, background 0.25s;
        }
        .faq-item[open] {
            border-color: rgba(227, 6, 19, 0.3);
            background: rgba(227, 6, 19, 0.04);
        }
        .faq-item summary {
            list-style: none;
            cursor: pointer;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 17px;
            font-weight: 600;
            letter-spacing: -0.01em;
            color: var(--text);
            padding: 20px 36px 20px 0;
            position: relative;
            user-select: none;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            font-weight: 300;
            color: var(--brand);
            transition: transform 0.25s;
            line-height: 1;
        }
        .faq-item[open] summary::after {
            content: '−';
            transform: translateY(-50%) rotate(180deg);
        }
        .faq-answer {
            color: var(--muted);
            font-size: 15px;
            line-height: 1.7;
            padding: 0 0 22px;
        }
        .faq-answer strong { color: var(--text); }

        /* Contact */
        .contact-card {
            text-align: center;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 70px 40px;
            position: relative;
            overflow: hidden;
        }
        .contact-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, var(--brand-soft) 0%, transparent 60%);
        }
        .contact-card > * { position: relative; }
        .contact-card h2 { margin-bottom: 16px; }
        .contact-card p {
            color: var(--muted);
            font-size: 17px;
            max-width: 540px;
            margin: 0 auto 32px;
        }
        .contact-actions {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Footer nav links — extra vertical padding for a comfier mobile tap
           target (colour is set inline in footer.php). */
        .footer-links a { padding: 5px 2px; display: inline-block; }

        /* Footer */
        footer {
            border-top: 1px solid var(--border);
            padding: 36px 0;
            text-align: center;
            color: var(--muted);
            font-size: 14px;
        }
        footer .socials {
            display: flex;
            justify-content: center;
            gap: 14px;
            margin-bottom: 18px;
        }
        footer .socials a {
            width: 40px; height: 40px;
            border-radius: 50%;
            background: var(--surface);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            text-decoration: none;
            transition: all 0.2s;
        }
        footer .socials a:hover {
            color: var(--brand);
            border-color: var(--brand);
            transform: translateY(-2px);
        }

        /* WhatsApp float */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 56px; height: 56px;
            background: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            z-index: 99;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            transition: transform 0.2s;
        }
        .whatsapp-float:hover { transform: scale(1.08); color: white; }
        .whatsapp-float::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            border: 2px solid #25d366;
            animation: ring 2s ease-out infinite;
        }
        @keyframes ring {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.4); opacity: 0; }
        }

        /* Reveal on scroll */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* ─── Sub-page additions (service & blog pages) ─────────────── */

        /* Breadcrumbs */
        .crumbs {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 22px;
        }
        .crumbs a { color: var(--muted); text-decoration: none; transition: color 0.2s; padding: 3px 0; display: inline-block; }
        .crumbs a:hover { color: var(--text); }
        .crumbs .sep { color: var(--border); }
        .crumbs [aria-current="page"] { color: var(--text); }

        /* Sub-page hero — lighter than the home hero, no full viewport height */
        .hero-sub {
            padding: 150px 0 40px;
            position: relative;
        }
        .hero-sub h1 {
            font-size: clamp(36px, 5.5vw, 68px);
            max-width: 15ch;
        }
        .hero-sub .lead { max-width: 620px; margin-bottom: 28px; }
        @media (max-width: 480px) {
            .hero-sub { padding: 120px 0 32px; }
        }

        /* Prose blocks for page body copy */
        .prose { max-width: 760px; }
        .prose p {
            color: var(--muted);
            font-size: 17px;
            margin-bottom: 18px;
        }
        .prose p strong { color: var(--text); }
        .prose h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 24px;
            letter-spacing: -0.02em;
            margin: 40px 0 14px;
        }

        /* Feature / deliverable list (checkmark grid) */
        .feature-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 14px 28px;
            margin: 8px 0 8px;
        }
        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--text);
        }
        .feature-list .ic { color: var(--brand); font-size: 13px; margin-top: 5px; }

        /* Numbered process steps */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 18px;
            counter-reset: step;
        }
        .step {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 28px 24px;
        }
        .step .step-num {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--brand);
            margin-bottom: 12px;
            display: block;
        }
        .step h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }
        .step p { color: var(--muted); font-size: 14px; }

        /* "Explore other services" cross-link cards reuse .services-grid/.service;
           these anchor variants add link affordance */
        a.service {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        a.service .go {
            color: var(--brand);
            font-size: 14px;
            font-weight: 600;
            margin-top: 14px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Blog list */
        .post-list { display: grid; gap: 16px; max-width: 820px; }
        .post-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 28px 30px;
            transition: border-color 0.25s, transform 0.25s;
            text-decoration: none;
            display: block;
            color: inherit;
        }
        .post-card:hover { border-color: rgba(227, 6, 19, 0.3); transform: translateY(-2px); }
        .post-card time { font-size: 13px; color: var(--muted); }
        .post-card h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 21px;
            letter-spacing: -0.02em;
            margin: 8px 0 10px;
        }
        .post-card p { color: var(--muted); font-size: 15px; }

        /* Single blog post article */
        .article { max-width: 760px; }
        .article-meta { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
        .article h2 { font-size: clamp(28px, 3.4vw, 40px); margin: 44px 0 16px; }
        .article h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; margin: 32px 0 12px; letter-spacing: -0.02em; }
        .article p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
        .article p strong { color: var(--text); }
        .article ul { color: var(--muted); font-size: 17px; margin: 0 0 18px 22px; display: grid; gap: 8px; }
        .article a { color: var(--brand); text-decoration: none; }
        .article a:hover { text-decoration: underline; }

        /* Nav: mark the active page link */
        .site-nav a.active { color: var(--text); }

        /* ─── DiscoverPOS product showcase ──────────────────────────── */
        .showcase {
            background: linear-gradient(135deg, rgba(227,6,19,0.08) 0%, rgba(255,255,255,0.02) 100%);
            border: 1px solid rgba(227, 6, 19, 0.25);
            border-radius: 28px;
            padding: 48px;
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 48px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .showcase::before {
            content: '';
            position: absolute;
            top: -160px; right: -160px;
            width: 420px; height: 420px;
            background: radial-gradient(circle, rgba(227,6,19,0.16), transparent 70%);
            pointer-events: none;
        }
        .showcase > * { position: relative; }
        .showcase h2 { font-size: clamp(26px, 3.2vw, 40px); margin-bottom: 16px; }
        .showcase p { color: var(--muted); font-size: 16px; margin-bottom: 14px; }
        .showcase .live-tag {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 5px 14px; background: var(--brand); color: #fff;
            border-radius: 999px; font-size: 11px; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
        }
        .showcase .live-tag .pulse { background: #fff; }
        .showcase .live-tag .pulse::after { background: #fff; }
        .showcase-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
        .showcase-feats {
            display: grid; grid-template-columns: repeat(2, 1fr);
            gap: 10px 20px; margin-top: 26px;
        }
        .showcase-feats div { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
        .showcase-feats .ic { color: var(--brand); font-size: 12px; }
        @media (max-width: 860px) {
            .showcase { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
        }

        /* Browser-chrome mockup */
        .browser-frame {
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            background: #0d0d10;
            box-shadow: 0 30px 70px rgba(0,0,0,0.5);
        }
        .browser-bar {
            display: flex; align-items: center; gap: 12px;
            padding: 11px 14px;
            background: rgba(255,255,255,0.04);
            border-bottom: 1px solid var(--border);
        }
        .browser-dots { display: flex; gap: 6px; }
        .browser-dots span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.18); }
        .browser-dots span:first-child { background: #ff5f57; }
        .browser-dots span:nth-child(2) { background: #febc2e; }
        .browser-dots span:nth-child(3) { background: #28c840; }
        .browser-url {
            flex: 1; font-size: 12px; color: var(--muted);
            background: rgba(0,0,0,0.35);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 5px 14px;
            text-align: center;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }
        .browser-url .ic { color: #28c840; font-size: 10px; margin-right: 6px; }

        .browser-frame img { display: block; width: 100%; height: auto; }

        /* Device composition: framed desktop shot + overlapping phone */
        .showcase-visual { position: relative; }
        .showcase-visual .phone {
            position: absolute;
            bottom: -28px; left: -28px;
            width: 118px;
            border-radius: 18px;
            border: 5px solid #16161a;
            box-shadow: 0 20px 45px rgba(0,0,0,0.55);
            overflow: hidden;
            background: #16161a;
        }
        .showcase-visual .phone img { display: block; width: 100%; height: auto; }
        .showcase-cap { font-size: 12px; color: var(--muted); text-align: center; margin-top: 22px; }
        @media (max-width: 860px) {
            .showcase-visual .phone { width: 96px; bottom: -18px; left: -14px; }
        }
        @media (max-width: 480px) {
            .showcase-visual .phone { display: none; }
        }

        /* Screenshot gallery (secondary shots) */
        .shot-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 18px;
            margin-top: 32px;
        }
        .shot-gallery figure { margin: 0; }
        .shot-gallery figcaption { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: center; }

        /* ─── Typography rag polish (progressive; unsupported = no-op) ───
           Even out heading line breaks and prevent single-word orphans in
           body copy across every page. */
        h1, h2, h3, .hero-sub h1 { text-wrap: balance; }
        .lead, .section-intro, .prose p, .article p,
        .service p, .step p, .pricing-desc, .showcase p { text-wrap: pretty; }

        /* ─── Accessibility: skip-to-content link ───────────────────────
           Off-screen until it receives keyboard focus, then slides in as the
           first tab stop so keyboard/AT users can jump past the nav. */
        .skip-link {
            position: fixed;
            top: 12px;
            left: 12px;
            z-index: 200;
            padding: 10px 18px;
            background: var(--brand);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 999px;
            box-shadow: 0 8px 24px rgba(227, 6, 19, 0.4);
            transform: translateY(-160%);
            transition: transform 0.2s ease;
        }
        .skip-link:focus { transform: translateY(0); }
        /* The <main> target is focusable (tabindex=-1) but should not show a
           ring when focused programmatically via the skip link. */
        #main:focus { outline: none; }

        /* ─── Accessibility: keyboard focus rings ───────────────────────
           Visible only for keyboard users (:focus-visible), so mouse/touch
           clicks stay ring-free. Outline follows border-radius on pills. */
        :focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 3px;
        }
        .site-nav .cta:focus-visible,
        .whatsapp-float:focus-visible {
            outline-color: #fff;
        }

        /* ─── Reduced motion ────────────────────────────────────────────
           Honor users who ask for less animation: kill the orb float, pulse
           rings, hover lifts, and reveal-on-scroll transition, and make sure
           reveal content is never left invisible. */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
            }
            .reveal { opacity: 1 !important; transform: none !important; }
        }
