/* Paper2Publish — Services Page Styles */
/* Extracted from services/index.html */

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

        html {
            font-size: 16px;
            -webkit-text-size-adjust: 100%
        }

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

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

        button {
            font-family: inherit
        }

        :root {
            --blue: #0047AB;
            --blue-d: #002f80;
            --blue-l: #1a5fbf;
            --paper: #FAFAF8;
            --paper2: #F2EFE8;
            --ink: #0A0A0A;
            --ink3: #3A3A3A;
            --ink4: #6A6A6A;
            --ink5: #9A9A9A;
            --rule: #E0DDD8;
            --gold: #C9A227;
            --nav: 64px;
            --fd: 'Playfair Display', Georgia, serif;
            --fb: 'DM Sans', system-ui, sans-serif;
            --fm: 'DM Mono', 'Courier New', monospace;
            --ease: cubic-bezier(.16, 1, .3, 1)
        }

        @media(max-width:900px) {
            :root {
                --nav: 56px
            }
        }

        body {
            font-family: var(--fb);
            background: var(--paper);
            color: var(--ink);
            line-height: 1.6;
            cursor: none;
            overflow-x: hidden
        }

        @media(hover:none) {
            body {
                cursor: auto
            }
        }

        ::selection {
            background: var(--blue);
            color: #fff
        }

        ::-webkit-scrollbar {
            width: 3px
        }

        ::-webkit-scrollbar-thumb {
            background: var(--blue)
        }

        /* CURSOR */
        .cur,
        .cur-ring {
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            transform: translate(-50%, -50%);
            mix-blend-mode: difference;
            will-change: left, top
        }

        .cur {
            width: 12px;
            height: 12px;
            background: #fff;
            transition: width .2s, height .2s
        }

        .cur-ring {
            width: 40px;
            height: 40px;
            border: 1.5px solid #fff;
            background: transparent;
            z-index: 99998;
            transition: width .35s, height .35s
        }

        body:has(a:hover) .cur,
        body:has(button:hover) .cur {
            width: 22px;
            height: 22px
        }

        body:has(a:hover) .cur-ring,
        body:has(button:hover) .cur-ring {
            width: 60px;
            height: 60px
        }

        @media(max-width:600px) {

            .cur,
            .cur-ring {
                display: none
            }
        }

        /* SCROLL BAR */
        .scroll-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 2px;
            background: var(--blue);
            transform-origin: left;
            transform: scaleX(0);
            z-index: 10000;
            transition: transform .08s linear
        }

        /* NAV */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav);
            z-index: 5000;
            transition: background .4s, border-color .4s, box-shadow .4s;
            border-bottom: 1px solid transparent
        }

        .nav.lit {
            background: rgba(250, 250, 248, .97);
            backdrop-filter: blur(12px);
            border-color: var(--rule);
            box-shadow: 0 1px 24px rgba(0, 0, 0, .04)
        }

        .nav-in {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 clamp(1.2rem, 3vw, 3rem);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: .6rem;
            font-family: var(--fm);
            font-size: .78rem;
            font-weight: 500;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: #fff;
            transition: color .4s
        }

        .nav-logo img {
            height: 32px;
            width: auto
        }

        .nav.lit .nav-logo {
            color: var(--blue)
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center
        }

        .nav-links a {
            font-family: var(--fm);
            font-size: .7rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .75);
            transition: color .3s;
            position: relative
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: width .3s var(--ease)
        }

        .nav-links a:hover {
            color: #fff
        }

        .nav-links a:hover::after {
            width: 100%
        }

        .nav.lit .nav-links a {
            color: var(--ink4)
        }

        .nav.lit .nav-links a:hover {
            color: var(--blue)
        }

        .nav-links a.active {
            color: #fff;
            border-bottom: 1px solid rgba(255, 255, 255, .4)
        }

        .nav.lit .nav-links a.active {
            color: var(--blue);
            border-bottom-color: var(--blue)
        }

        .nav-cta {
            color: var(--blue) !important;
            background: #fff !important;
            font-family: var(--fm) !important;
            font-size: .7rem !important;
            letter-spacing: .1em !important;
            text-transform: uppercase !important;
            padding: .55rem 1.3rem;
            border: none;
            transition: all .3s !important
        }

        .nav-cta:hover {
            background: var(--blue) !important;
            color: #fff !important
        }

        .nav-cta::after {
            display: none !important
        }

        .nav.lit .nav-cta {
            background: var(--blue) !important;
            color: #fff !important
        }

        .nav.lit .nav-cta:hover {
            background: var(--blue-d) !important
        }

        .hbg {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: none;
            padding: 4px;
            background: none;
            border: none
        }

        .hbg span {
            display: block;
            width: 24px;
            height: 1px;
            background: #fff;
            transition: all .3s
        }

        .nav.lit .hbg span {
            background: var(--blue)
        }

        .hbg.open span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px)
        }

        .hbg.open span:nth-child(2) {
            opacity: 0
        }

        .hbg.open span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px)
        }

        @media(max-width:900px) {
            .nav-links {
                display: none
            }

            .hbg {
                display: flex
            }
        }

        /* MOB NAV */
        .mob-nav {
            position: fixed;
            inset: 0;
            z-index: 4999;
            background: var(--blue-d);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem clamp(1.5rem, 4vw, 3rem);
            opacity: 0;
            visibility: hidden;
            transition: opacity .4s var(--ease), visibility .4s
        }

        .mob-nav.open {
            opacity: 1;
            visibility: visible
        }

        .mob-nav a {
            font-family: var(--fd);
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            color: rgba(255, 255, 255, .25);
            display: block;
            padding: .5rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            transition: color .2s
        }

        .mob-nav a:hover {
            color: #fff
        }

        .mob-nav-foot {
            margin-top: 2rem;
            font-family: var(--fm);
            font-size: .6rem;
            color: rgba(255, 255, 255, .2);
            letter-spacing: .1em;
            line-height: 1.8
        }

        /* TICKER */
        .ticker {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 4500;
            background: rgba(0, 20, 60, .95);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, .08);
            height: 34px;
            display: flex;
            align-items: center;
            overflow: hidden
        }

        .ticker-badge {
            font-family: var(--fm);
            font-size: .56rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            padding: 0 1rem;
            flex-shrink: 0;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: .4rem
        }

        .ticker-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            animation: tdot 1.5s ease-in-out infinite
        }

        @keyframes tdot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .3;
                transform: scale(.6)
            }
        }

        .ticker-sep {
            width: 1px;
            height: 16px;
            background: rgba(255, 255, 255, .1);
            flex-shrink: 0
        }

        .ticker-scroll {
            overflow: hidden;
            flex: 1;
            position: relative
        }

        .ticker-track {
            display: flex;
            gap: 0;
            width: max-content;
            animation: tsroll 70s linear infinite
        }

        .ticker-track:hover {
            animation-play-state: paused
        }

        @keyframes tsroll {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        .ticker-item {
            font-family: var(--fm);
            font-size: .58rem;
            letter-spacing: .08em;
            color: rgba(255, 255, 255, .65);
            white-space: nowrap;
            padding: 0 2.5rem;
            display: flex;
            align-items: center;
            gap: .5rem;
            border-right: 1px solid rgba(255, 255, 255, .07)
        }

        .ticker-item::before {
            content: '●';
            color: rgba(0, 71, 171, .6);
            font-size: .4rem;
            flex-shrink: 0
        }

        @media(max-width:600px) {
            .ticker {
                display: none
            }
        }

        /* REVEAL */
        .rv {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 1s var(--ease), transform 1s var(--ease)
        }

        .rv.from-left {
            transform: translateX(-60px)
        }

        .rv.from-right {
            transform: translateX(60px)
        }

        .rv.in {
            opacity: 1 !important;
            transform: none !important
        }

        .d1 {
            transition-delay: .15s
        }

        .d2 {
            transition-delay: .3s
        }

        .d3 {
            transition-delay: .45s
        }

        .d4 {
            transition-delay: .6s
        }

        .d5 {
            transition-delay: .75s
        }

        @media(max-width:600px) {
            .rv {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important
            }
        }

        /* LABEL */
        .lbl {
            font-family: var(--fm);
            font-size: .62rem;
            letter-spacing: .22em;
            text-transform: uppercase;
            display: block;
            margin-bottom: 1.2rem
        }

        .lbl.b {
            color: rgba(0, 71, 171, .5)
        }

        .lbl.w {
            color: rgba(255, 255, 255, .35)
        }

        .lbl.g {
            color: var(--ink5)
        }

        /* BUTTONS */
        .btn-blue {
            font-family: var(--fm);
            font-size: .72rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            background: var(--blue);
            color: #fff;
            border: 1.5px solid var(--blue);
            padding: .85rem 2rem;
            cursor: none;
            transition: all .3s;
            display: inline-block
        }

        .btn-blue:hover {
            background: var(--blue-d)
        }

        .btn-out {
            font-family: var(--fm);
            font-size: .72rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            background: none;
            color: var(--blue);
            border: 1.5px solid var(--blue);
            padding: .85rem 2rem;
            cursor: none;
            transition: all .3s;
            display: inline-block
        }

        .btn-out:hover {
            background: var(--blue);
            color: #fff
        }

        .btn-wht {
            font-family: var(--fm);
            font-size: .72rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            background: #fff;
            color: var(--blue);
            border: 1.5px solid #fff;
            font-weight: 600;
            padding: .9rem 2.2rem;
            cursor: none;
            transition: all .3s;
            display: inline-block
        }

        .btn-wht:hover {
            background: transparent;
            color: #fff
        }

        .inner {
            max-width: 1440px;
            margin: 0 auto;
            padding: clamp(5rem, 10vh, 8rem) clamp(1.2rem, 3vw, 3rem)
        }

        .inner-sm {
            max-width: 1440px;
            margin: 0 auto;
            padding: clamp(3rem, 6vh, 5rem) clamp(1.2rem, 3vw, 3rem)
        }

        /* ════════════════════════════════════════
       HERO
    ════════════════════════════════════════ */
        #hero {
            min-height: 56vh;
            background: linear-gradient(135deg, #001540 0%, var(--blue) 60%, var(--blue-l) 100%);
            display: flex;
            align-items: flex-end;
            position: relative;
            overflow: hidden;
            padding: var(--nav) 0 0;
        }

        #hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--gold), rgba(255, 255, 255, .4), var(--gold), transparent)
        }

        .particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            z-index: 0
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: rgba(255, 255, 255, .4);
            border-radius: 50%;
            animation: pfloat linear infinite
        }

        @keyframes pfloat {
            0% {
                transform: translateY(100vh);
                opacity: 0
            }

            10% {
                opacity: .8
            }

            90% {
                opacity: .8
            }

            100% {
                transform: translateY(-20px) translateX(var(--dx));
                opacity: 0
            }
        }

        .hero-inner {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 3vw, 3rem) clamp(4rem, 8vw, 7rem);
        }

        .hero-eyebrow {
            font-family: var(--fm);
            font-size: .7rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            display: block;
            margin-bottom: 1rem
        }

        .hero-title {
            font-family: var(--fd);
            font-size: clamp(3rem, 7vw, 7rem);
            font-weight: 900;
            line-height: .95;
            color: #fff;
            letter-spacing: -.03em;
            margin-bottom: 1.5rem
        }

        .hero-title em {
            font-style: italic;
            color: rgba(255, 255, 255, .4);
            display: block
        }

        .hero-sub {
            font-size: clamp(.9rem, 1.3vw, 1.1rem);
            color: rgba(255, 255, 255, .65);
            max-width: 540px;
            line-height: 1.75;
            margin-bottom: 2.5rem
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: .75rem;
            margin-bottom: 2.5rem
        }

        .hero-badge {
            display: flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255, 255, 255, .06);
            border: 1px solid rgba(255, 255, 255, .12);
            padding: .45rem 1rem;
            border-radius: 100px;
            font-family: var(--fm);
            font-size: .68rem;
            color: rgba(255, 255, 255, .8);
            letter-spacing: .04em
        }

        .badge-dot {
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            flex-shrink: 0
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center
        }

        .hero-stats {
            display: flex;
            gap: clamp(1.5rem, 4vw, 3.5rem);
            margin-top: 3.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, .1)
        }

        .hstat-n {
            font-family: var(--fd);
            font-size: clamp(1.8rem, 3.5vw, 3rem);
            font-weight: 900;
            color: #fff;
            line-height: 1;
            letter-spacing: -.02em
        }

        .hstat-l {
            font-family: var(--fm);
            font-size: .58rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .35);
            margin-top: .3rem;
            display: block
        }

        /* ════════════════════════════════════════
       SECTION
    ════════════════════════════════════════ */
        .svc-section {
            padding: clamp(4rem, 8vh, 7rem) clamp(1.2rem, 3vw, 3rem);
            border-bottom: 1px solid var(--rule);
            scroll-margin-top: calc(var(--nav) + 20px);
        }

        #builder {
            scroll-margin-top: calc(var(--nav) + 20px);
        }

        .svc-section:nth-child(even) {
            background: var(--paper2)
        }

        .svc-section:nth-child(odd) {
            background: var(--paper)
        }

        .svc-section-inner {
            max-width: 1440px;
            margin: 0 auto
        }

        .sec-head {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: end;
            gap: 2rem;
            padding-bottom: 2rem;
            margin-bottom: 3rem;
            border-bottom: 2px solid var(--blue);
            position: relative
        }

        @media(max-width:600px) {
            .sec-head {
                grid-template-columns: 1fr;
                align-items: flex-start;
                gap: 1.5rem;
            }
        }

        .sec-head::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--gold)
        }

        .sec-num {
            font-family: var(--fd);
            font-size: clamp(3rem, 6vw, 6rem);
            font-weight: 900;
            color: var(--rule);
            line-height: 1;
            user-select: none;
            flex-shrink: 0
        }

        .sec-title-wrap {
            display: flex;
            align-items: flex-end;
            gap: 1.5rem
        }

        .sec-title {
            font-family: var(--fd);
            font-size: clamp(1.6rem, 3vw, 2.8rem);
            font-weight: 900;
            color: var(--ink);
            line-height: 1.1;
            letter-spacing: -.02em
        }

        .sec-count {
            font-family: var(--fm);
            font-size: .62rem;
            letter-spacing: .16em;
            text-transform: uppercase;
            color: var(--ink5);
            padding: .35rem .8rem;
            border: 1px solid var(--rule);
            margin-bottom: .3rem;
            flex-shrink: 0
        }

        .sec-intro {
            font-size: .9rem;
            color: var(--ink4);
            line-height: 1.8;
            max-width: 680px;
            margin-top: 1rem
        }

        .sec-seo {
            font-family: var(--fm);
            font-size: .58rem;
            letter-spacing: .08em;
            color: var(--gold);
            margin-top: .5rem;
            display: block;
            opacity: .8
        }

        /* ════════════════════════════════════════
       SERVICE GRID
    ════════════════════════════════════════ */
        .svc-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5px;
            background: var(--rule);
            border: 1.5px solid var(--rule)
        }

        .svc-card {
            background: var(--paper);
            padding: 1.8rem 1.6rem 1.6rem;
            transition: all .4s var(--ease);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid transparent;
        }

        .svc-card:hover {
            background: #fff;
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 16px 40px rgba(0, 71, 171, .08);
            border-color: rgba(0, 71, 171, .1);
            z-index: 2;
        }

        .svc-card h3 {
            font-family: var(--fd);
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: .75rem;
            line-height: 1.3;
            transition: color .3s;
        }

        .svc-card:hover h3 {
            color: var(--blue);
        }

        .svc-card p {
            font-size: .82rem;
            color: var(--ink4);
            line-height: 1.75;
            margin-bottom: 1rem;
            flex: 1
        }

        .svc-kw {
            font-family: var(--fm);
            font-size: .58rem;
            letter-spacing: .05em;
            color: var(--gold);
            opacity: .7;
            line-height: 1.6;
            border-top: 1px dashed var(--rule);
            padding-top: .8rem;
            margin-top: auto
        }

        .svc-kw::before {
            content: '# ';
            opacity: .5
        }

        .svc-wa {
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            margin-top: 1rem;
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--blue);
            transition: color .2s;
            cursor: none
        }

        .svc-wa:hover {
            color: #25D366
        }

        @media(hover:none) {

            .svc-wa,
            .cat-btn {
                cursor: pointer
            }
        }

        /* ════════════════════════════════════════
       PACKAGE BANNER
    ════════════════════════════════════════ */
        .pkg-banner {
            background: linear-gradient(135deg, #001540 0%, var(--blue) 100%);
            padding: clamp(3rem, 6vh, 5rem) clamp(1.2rem, 3vw, 3rem)
        }

        .pkg-inner {
            max-width: 1440px;
            margin: 0 auto
        }

        .pkg-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            margin-top: 2.5rem
        }

        .pkg-card {
            background: rgba(255, 255, 255, .04);
            padding: 2.5rem 2rem;
            transition: background .2s;
            position: relative
        }

        .pkg-card:hover {
            background: rgba(255, 255, 255, .08)
        }

        .pkg-card.featured {
            background: rgba(255, 255, 255, .1);
            border: 2px solid var(--gold)
        }

        .pkg-badge {
            font-family: var(--fm);
            font-size: .55rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--gold);
            background: rgba(201, 162, 39, .15);
            border: 1px solid rgba(201, 162, 39, .3);
            padding: .3rem .8rem;
            display: inline-block;
            margin-bottom: 1.2rem
        }

        .pkg-name {
            font-family: var(--fd);
            font-size: 1.6rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: .5rem
        }

        .pkg-desc {
            font-size: .82rem;
            color: rgba(255, 255, 255, .5);
            line-height: 1.7;
            margin-bottom: 1.5rem
        }

        .pkg-items {
            margin-bottom: 2rem
        }

        .pkg-item {
            font-family: var(--fm);
            font-size: .66rem;
            letter-spacing: .06em;
            color: rgba(255, 255, 255, .6);
            display: flex;
            align-items: center;
            gap: .6rem;
            padding: .45rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, .06)
        }

        .pkg-item::before {
            content: '✓';
            color: var(--gold);
            flex-shrink: 0;
            font-size: .8rem
        }

        .pkg-cta {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            font-family: var(--fm);
            font-size: .68rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            padding: .8rem 1.6rem;
            background: #25D366;
            color: #fff;
            border: none;
            cursor: none;
            transition: background .2s;
            width: 100%;
            justify-content: center
        }

        .pkg-cta:hover {
            background: #20bd5a
        }

        @media(hover:none) {
            .pkg-cta {
                cursor: pointer
            }
        }

        @media(max-width:900px) {
            .pkg-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        /* ════════════════════════════════════════
       CTA STRIP
    ════════════════════════════════════════ */
        .cta-strip {
            background: var(--paper2);
            border-top: 1px solid var(--rule);
            border-bottom: 1px solid var(--rule);
            padding: 2.5rem clamp(1.2rem, 3vw, 3rem);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap
        }

        .cta-strip-t {
            font-family: var(--fd);
            font-size: clamp(1.1rem, 2vw, 1.6rem);
            font-weight: 700;
            color: var(--ink);
            line-height: 1.2
        }

        .cta-strip-t em {
            font-style: italic;
            color: var(--blue)
        }

        .cta-strip-btns {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            flex-shrink: 0
        }

        /* ════════════════════════════════════════
       WHATSAPP FLOAT
    ════════════════════════════════════════ */
        .wa-float {
            position: fixed;
            bottom: calc(34px + 1.5rem);
            right: 2rem;
            z-index: 4400;
            width: 50px;
            height: 50px;
            background: var(--blue);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 18px rgba(0, 71, 171, .3);
            transition: transform .3s var(--ease), background .3s
        }

        .wa-float:hover {
            transform: scale(1.1);
            background: #25D366
        }

        @media(max-width:600px) {
            .wa-float {
                bottom: 1.5rem
            }
        }

        /* ════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════ */
        footer {
            background: var(--paper);
            border-top: 1px solid var(--rule);
            padding: clamp(4rem, 7vh, 6rem) clamp(1.2rem, 3vw, 3rem) clamp(2rem, 3vh, 2.5rem)
        }

        .ft-inner {
            max-width: 1440px;
            margin: 0 auto
        }

        .ft-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid var(--rule);
            margin-bottom: 1.5rem
        }

        .ft-brand {
            font-family: var(--fm);
            font-size: .75rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: .6rem;
            display: block
        }

        .ft-tag {
            font-family: var(--fd);
            font-style: italic;
            font-size: .95rem;
            color: var(--ink4);
            line-height: 1.6;
            max-width: 260px
        }

        .ft-socs {
            display: flex;
            gap: .8rem;
            margin-top: 1.2rem
        }

        .ft-soc {
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--ink4);
            border-bottom: 1px solid transparent;
            transition: all .2s
        }

        .ft-soc:hover {
            color: var(--blue);
            border-color: var(--blue)
        }

        .ft-ct {
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .2em;
            text-transform: uppercase;
            color: var(--blue);
            margin-bottom: 1rem;
            display: block;
            opacity: .7
        }

        .ft-col ul {
            list-style: none
        }

        .ft-col li {
            margin-bottom: .4rem
        }

        .ft-col a {
            font-size: .82rem;
            color: var(--ink4);
            transition: color .2s
        }

        .ft-col a:hover {
            color: var(--blue)
        }

        .ft-bot {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: .8rem
        }

        .ft-copy {
            font-family: var(--fm);
            font-size: .6rem;
            letter-spacing: .1em;
            color: var(--ink5)
        }

        .ft-legal {
            display: flex;
            flex-wrap: wrap;
            gap: .4rem .8rem;
            align-items: center;
            margin-top: .6rem
        }

        .ft-legal a {
            font-family: var(--fm);
            font-size: .58rem;
            letter-spacing: .08em;
            color: var(--ink5);
            transition: color .2s
        }

        .ft-legal a:hover {
            color: var(--blue)
        }

        .ft-legal-sep {
            font-size: .58rem;
            color: var(--rule)
        }

        @media(max-width:1100px) {
            .ft-top {
                grid-template-columns: 1fr 1fr;
                gap: 2rem
            }
        }

        @media(max-width:600px) {
            .ft-top {
                grid-template-columns: 1fr;
                gap: 1.5rem
            }

            .ft-bot {
                flex-direction: column;
                align-items: flex-start
            }
        }

        /* ════════════════════════════════════════
       MODAL
    ════════════════════════════════════════ */
        #exitModal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 21, 64, .9);
            backdrop-filter: blur(5px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all .4s
        }

        #exitModal.show {
            opacity: 1;
            visibility: visible
        }

        .exit-card {
            background: #fff;
            max-width: 500px;
            padding: 3rem;
            text-align: center;
            color: var(--ink);
            margin: 1rem;
            position: relative;
            border-radius: 8px
        }

        .exit-h {
            font-family: var(--fd);
            font-size: 2rem;
            color: var(--blue);
            margin-bottom: 1rem;
            line-height: 1.2
        }

        .exit-p {
            margin-bottom: 2rem;
            font-size: .95rem;
            color: var(--ink4)
        }

        .exit-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--ink5)
        }

        .exit-btn {
            display: inline-block;
            background: var(--gold);
            color: #fff;
            padding: 1rem 2rem;
            font-weight: 500;
            font-family: var(--fm);
            letter-spacing: .1em;
            text-transform: uppercase;
            font-size: .8rem;
            border-radius: 2px
        }

        /* ============================================
           BUILDER MODULE
        ============================================ */
        #builder {
            background: var(--paper);
            padding: clamp(4rem, 8vh, 7rem) clamp(1.2rem, 3vw, 3rem);
            border-bottom: 1px solid var(--rule);
        }

        .builder-inner {
            max-width: 1440px;
            margin: 0 auto;
        }

        .bld-h {
            font-family: var(--fd);
            font-size: clamp(2.4rem, 6.5vw, 6rem);
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -.03em;
            line-height: .95;
            margin-bottom: .8rem;
        }

        .bld-h em {
            font-style: italic;
            color: var(--blue);
        }

        .bld-sub {
            font-size: 1rem;
            color: var(--ink4);
            margin-bottom: 2.5rem;
            max-width: 500px;
            line-height: 1.75;
        }

        .bld-lay {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 2.5rem;
            align-items: start;
        }

        @media(max-width:1000px) {
            .bld-lay {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .cart {
                background: #fff;
                padding: 2rem 1.5rem;
                border: 1px solid var(--rule);
                border-radius: 4px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            }
        }

        #cartContainer {
            scroll-margin-top: calc(var(--nav) + 40px);
        }

        .svc-cat-t {
            font-family: var(--fm);
            font-size: .62rem;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--gold);
            margin: 2rem 0 .8rem;
            padding-bottom: .4rem;
            border-bottom: 1px solid rgba(201, 162, 39, .2);
        }

        .svc-cat-t:first-child { margin-top: 0; }

        .svc-list { margin-top: 1rem; }

        .svc-r {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1rem;
            border-bottom: 1px solid var(--rule);
            transition: all .4s var(--ease);
            cursor: pointer;
            border-left: 0 solid var(--blue);
        }

        .svc-r:hover {
            background: rgba(0, 71, 171, .03);
            border-left-width: 4px;
        }

        .svc-r.sel {
            background: var(--blue);
            border-left-width: 8px;
            border-left-color: var(--gold);
        }

        .svc-r.sel .svc-t {
            color: #fff;
        }

        .svc-r.sel .svc-d {
            color: rgba(255, 255, 255, .4);
        }

        .cart-list {
            min-height: 50px;
            margin-bottom: 1.5rem;
        }

        .cart-empty {
            font-family: var(--fm);
            font-size: .65rem;
            letter-spacing: .08em;
            color: var(--ink5);
            padding: 1.2rem 0;
        }

        .cart-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: .5rem 0;
            border-bottom: 1px solid var(--rule);
            animation: rowIn .3s var(--ease);
        }

        @keyframes rowIn {
            from { opacity: 0; transform: translateX(-8px); }
            to { opacity: 1; transform: none; }
        }

        .cart-row-n {
            font-family: var(--fm);
            font-size: .75rem;
            font-weight: 700;
            color: var(--ink);
        }

        .cart-rm {
            background: none;
            border: none;
            color: var(--ink5);
            font-size: .9rem;
            cursor: pointer;
            transition: color .2s;
        }

        .cart-rm:hover {
            color: var(--blue);
        }

        .cart-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .cart-in {
            width: 100%;
            padding: .85rem;
            border: 1px solid var(--rule);
            font-family: var(--fd);
            font-size: .9rem;
            outline: none;
            transition: border-color .2s;
        }

        .cart-in:focus {
            border-color: var(--blue);
        }

        .cart-btn {
            width: 100%;
            padding: 1rem;
            background: var(--blue);
            color: #fff;
            font-family: var(--fm);
            font-size: .68rem;
            letter-spacing: .14em;
            text-transform: uppercase;
            border: 1.5px solid var(--blue);
            cursor: pointer;
            transition: all .3s;
        }

        .cart-btn:disabled {
            background: transparent;
            color: var(--ink5);
            border-color: var(--rule);
            cursor: not-allowed;
        }

        .cart-btn:not(:disabled):hover {
            background: transparent;
            color: var(--blue);
        }

        .bld-success {
            display: none;
            text-align: center;
            padding: 2rem 0;
            animation: rowIn .4s var(--ease);
        }

        .bld-success.show {
            display: block;
        }

        .suc-h {
            font-family: var(--fd);
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--blue);
            margin-bottom: .5rem;
        }

        .suc-p {
            font-size: .88rem;
            color: var(--ink4);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .cart.show { transform: none; opacity: 1; pointer-events: auto; }

        .cart-pill {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--blue);
            color: #fff;
            padding: .8rem 1.4rem;
            border-radius: 50px;
            font-family: var(--fm);
            font-size: .68rem;
            letter-spacing: .1em;
            text-transform: uppercase;
            box-shadow: 0 12px 32px rgba(0, 71, 171, .3);
            display: flex;
            align-items: center;
            gap: .8rem;
            z-index: 3000;
            transition: transform .4s var(--ease);
            cursor: pointer;
            border: none;
            white-space: nowrap;
        }

        .cart-pill.show { transform: translateX(-50%) translateY(0); }

        .cart-pill-count {
            background: var(--gold);
            color: var(--blue);
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: .6rem;
        }

        .svc-search-wrap {
            margin-bottom: 2rem;
            position: relative;
        }

        .svc-search {
            width: 100%;
            padding: 1rem 1.2rem;
            border: 1px solid var(--rule);
            background: var(--paper2);
            font-family: var(--fm);
            font-size: .82rem;
            color: var(--ink);
            transition: all .3s;
        }

        .svc-search:focus {
            outline: none;
            border-color: var(--blue);
            background: #fff;
            box-shadow: 0 8px 24px rgba(0, 71, 171, .05);
        }

        /* Trust Bar */
        .trust-bar {
            background: var(--paper);
            padding: 3rem clamp(1.2rem, 3vw, 3rem);
            border-bottom: 1px solid var(--rule);
        }

        .tb-grid {
            max-width: 1440px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .tb-item { text-align: center; }
        .tb-n { font-family: var(--fd); font-size: 1.8rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: .2rem; }
        .tb-l { font-family: var(--fm); font-size: .55rem; letter-spacing: .15em; text-transform: uppercase; color: var(--ink5); }

        @media(max-width:900px) {
            .tb-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media(max-width:600px) {
            .tb-grid { gap: 1.5rem; }
            .tb-n { font-size: 1.4rem; }
        }
