:root {
    --navy-900: #00203f;
    --navy-850: #002a52;
    --navy-800: #013a73;
    --blue-700: #0a5bae;
    --blue-600: #0e6fcb;
    --blue-500: #1e90e0;
    --blue-400: #54b4f2;
    --blue-300: #9ad4fb;
    --accent: #f5860c;
    /* logo orange */
    --accent-2: #ffae4d;
    --accent-700: #dd7308;

    --ink: #0c1c2e;
    --ink-2: #3c4f63;
    --muted: #6a7d92;
    --line: #e3eaf3;
    --line-2: #d4e0ee;
    --bg: #ffffff;
    --bg-soft: #f4f8fd;
    --bg-tint: #eef5fc;
    --wa: #25d366;

    --maxw: 1180px;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 2px rgba(7, 30, 55, .06), 0 4px 14px rgba(7, 30, 55, .06);
    --shadow-md: 0 10px 30px rgba(7, 30, 55, .10), 0 2px 8px rgba(7, 30, 55, .06);
    --shadow-lg: 0 30px 60px rgba(2, 28, 60, .18);
    --font-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
    --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
}

* {
    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;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.06;
    letter-spacing: -.02em;
    margin: 0;
    font-weight: 700
}

p {
    margin: 0
}

.container {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: 22px
}

section {
    position: relative
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blue-700);
}

.eyebrow.on-dark {
    color: var(--blue-300)
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .98rem;
    padding: 13px 22px;
    border-radius: 999px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
}

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

.btn-primary {
    background: linear-gradient(180deg, var(--accent-2), var(--accent));
    color: #231203;
    box-shadow: 0 8px 22px rgba(245, 134, 12, .32)
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(245, 134, 12, .42)
}

.btn-dark {
    background: var(--navy-850);
    color: #fff
}

.btn-dark:hover {
    transform: translateY(-2px);
    background: var(--navy-800)
}

.btn-outline {
    background: transparent;
    border-color: var(--line-2);
    color: var(--ink)
}

.btn-outline:hover {
    border-color: var(--blue-600);
    color: var(--blue-700);
    transform: translateY(-2px)
}

.btn-ghost-light {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .22)
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-2px)
}

.btn-wa {
    background: var(--wa);
    color: #04331a
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(37, 211, 102, .4)
}

.btn-lg {
    padding: 16px 28px;
    font-size: 1.02rem
}

/* ---------- Header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    transition: all .3s ease
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, .86);
    backdrop-filter: saturate(160%) blur(14px);
    box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(7, 30, 55, .06)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 13px;
    border-radius: 13px;
    /* background: linear-gradient(155deg, var(--navy-800), var(--navy-900)); */
    /* box-shadow: 0 6px 16px rgba(2, 28, 60, .28); */
}

.brand-chip img {
    height: 26px;
    width: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px
}

.nav-links a {
    font-weight: 600;
    font-size: .96rem;
    color: var(--ink-2);
    transition: color .2s
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: var(--bg-tint);
    color: var(--blue-700);
    transition: .2s
}

.nav-wa:hover {
    background: var(--wa);
    color: #04331a;
    transform: translateY(-2px)
}

.nav-wa svg {
    width: 20px;
    height: 20px
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    z-index: 2
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 3px;
    transition: .3s
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg)
}

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

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg)
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    color: #eaf3fb;
    overflow: hidden;
    background:
        radial-gradient(900px 520px at 78% -8%, rgba(30, 144, 224, .55), transparent 60%),
        radial-gradient(680px 420px at 8% 18%, rgba(84, 180, 242, .30), transparent 55%),
        radial-gradient(700px 540px at 60% 120%, rgba(245, 134, 12, .16), transparent 60%),
        linear-gradient(170deg, #012a55 0%, #001a37 60%, #00152d 100%);
    margin-top: 0px;
    padding-top: 0px;
}

.hero::before {
    /* dot grid texture */
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 75%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .9), transparent 75%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
    padding: 74px 0 96px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.4vw, 4.1rem);
    font-weight: 800;
    color: #fff;
    margin: 18px 0 0;
}

.hero h1 .hl {
    color: var(--accent-2)
}

.hero .sub {
    font-size: clamp(1.05rem, 1.7vw, 1.22rem);
    color: #bcd6ee;
    max-width: 560px;
    margin-top: 20px
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 34px;
    color: #9fc0de;
    font-size: .9rem;
    font-weight: 500
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.hero-trust svg {
    width: 16px;
    height: 16px;
    color: var(--blue-300)
}

/* hero reveal */
.hero-grid>div>* {
    opacity: 0;
    transform: translateY(18px);
    animation: rise .7s cubic-bezier(.2, .7, .2, 1) forwards
}

.hero-grid .eyebrow {
    animation-delay: .05s
}

.hero h1 {
    animation-delay: .16s
}

.hero .sub {
    animation-delay: .28s
}

.hero-cta {
    animation-delay: .4s
}

.hero-trust {
    animation-delay: .52s
}

.hero-visual {
    animation: rise .9s cubic-bezier(.2, .7, .2, 1) .3s forwards
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* hero mockup */
.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateY(18px)
}

.mock {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-lg);
    transform: rotate(1.4deg);
}

.mock .bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: #f2f6fb;
    border-bottom: 1px solid var(--line)
}

.mock .bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dfe6ee
}

.mock .bar i:nth-child(1) {
    background: #ff6058
}

.mock .bar i:nth-child(2) {
    background: #ffbe2f
}

.mock .bar i:nth-child(3) {
    background: #2bca44
}

.mock .bar .url {
    margin-left: 8px;
    font-size: .7rem;
    color: #9aa9b9;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 3px 10px
}

.mock-body {
    padding: 20px
}

.mock-hero {
    background: linear-gradient(140deg, var(--navy-800), var(--blue-600));
    border-radius: 12px;
    padding: 20px;
    color: #fff
}

.mock-hero b {
    font-family: var(--font-display);
    font-size: 1.15rem;
    display: block;
    letter-spacing: -.01em
}

.mock-hero .ml {
    height: 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .35);
    margin-top: 10px
}

.mock-hero .ml.s {
    width: 60%
}

.mock-pill {
    display: inline-block;
    margin-top: 14px;
    background: var(--accent);
    color: #231203;
    font-weight: 700;
    font-size: .72rem;
    padding: 7px 14px;
    border-radius: 999px
}

.mock-row {
    display: flex;
    gap: 12px;
    margin-top: 16px
}

.mock-card {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: 11px;
    padding: 12px
}

.mock-card .dot {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--bg-tint)
}

.mock-card .l {
    height: 6px;
    border-radius: 5px;
    background: #e9eef5;
    margin-top: 9px
}

.mock-card .l.s {
    width: 70%
}

.float-badge {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: .84rem;
    color: var(--ink);
}

.float-badge svg {
    width: 30px;
    height: 30px;
    flex: none
}

.fb-1 {
    top: -22px;
    left: -26px;
    animation: floaty 5s ease-in-out infinite
}

.fb-2 {
    bottom: -20px;
    right: -22px;
    animation: floaty 5.6s ease-in-out infinite .6s
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

/* wave divider */
.wave {
    display: block;
    width: 100%;
    height: 60px
}

/* ---------- generic section heading ---------- */
.sec {
    padding: 92px 0
}

.sec-soft {
    background: var(--bg-soft)
}

.sec-head {
    max-width: 680px;
    margin-bottom: 48px
}

.sec-head.center {
    margin-inline: auto;
    text-align: center
}

.sec-head h2 {
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    font-weight: 800;
    margin-top: 14px;
    color: var(--ink)
}

.sec-head p {
    color: var(--ink-2);
    font-size: 1.08rem;
    margin-top: 14px
}

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1)
}

.reveal.show {
    opacity: 1;
    transform: none
}

.reveal.d1 {
    transition-delay: .08s
}

.reveal.d2 {
    transition-delay: .16s
}

.reveal.d3 {
    transition-delay: .24s
}

.reveal.d4 {
    transition-delay: .32s
}

/* ---------- Services ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.svc {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}

.svc:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-2)
}

.svc .ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #fff;
    margin-bottom: 18px;
    background: linear-gradient(150deg, var(--blue-600), var(--navy-800));
    box-shadow: 0 8px 18px rgba(14, 111, 203, .28);
}

.svc .ic.orange {
    background: linear-gradient(150deg, var(--accent-2), var(--accent));
    box-shadow: 0 8px 18px rgba(245, 134, 12, .28)
}

.svc .ic svg {
    width: 26px;
    height: 26px
}

.svc h3 {
    font-size: 1.3rem;
    margin-bottom: 8px
}

.svc p {
    color: var(--ink-2);
    font-size: .98rem
}

/* ---------- Pricing ---------- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start
}

.price {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.price:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.price.feat {
    border: 0;
    color: #eaf3fb;
    background:
        radial-gradient(420px 240px at 90% -10%, rgba(30, 144, 224, .5), transparent 60%),
        linear-gradient(165deg, #013a73, #00203f);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px) scale(1.02);
}

.price.feat:hover {
    transform: translateY(-16px) scale(1.02)
}

.price.feat .pk-name,
.price.feat .pk-desc {
    color: #fff
}

.price.feat .pk-desc {
    color: #bcd6ee
}

.ribbon {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--accent);
    color: #231203;
    font-weight: 800;
    font-size: .7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}

.pk-name {
    font-size: 1.12rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: -.01em;
    color: var(--ink)
}

.pk-price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.7rem;
    line-height: 1;
    margin: 14px 0 4px;
    color: var(--ink);
    letter-spacing: -.03em
}

.price.feat .pk-price {
    color: #fff
}

.pk-price small {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted)
}

.price.feat .pk-price small {
    color: #9fc0de
}

.pk-from {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 600
}

.price.feat .pk-from {
    color: #9fc0de
}

.pk-desc {
    color: var(--ink-2);
    font-size: .95rem;
    margin: 8px 0 18px;
    min-height: 42px
}

.pk-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 11px
}

.pk-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .94rem;
    color: var(--ink-2)
}

.price.feat .pk-list li {
    color: #cfe2f3
}

.pk-list svg {
    width: 18px;
    height: 18px;
    flex: none;
    margin-top: 2px;
    color: var(--blue-600)
}

.price.feat .pk-list svg {
    color: var(--accent-2)
}

.price .btn {
    width: 100%;
    margin-top: auto
}

.addons {
    margin-top: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 28px;
    box-shadow: var(--shadow-sm)
}

.addons h4 {
    font-size: 1.05rem;
    font-family: var(--font-display);
    margin-bottom: 4px
}

.addons .ah {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: .92rem
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px
}

.addon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border: 1px dashed var(--line-2);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: .92rem
}

.addon b {
    color: var(--blue-700);
    font-family: var(--font-display);
    white-space: nowrap
}

/* ---------- Quote builder ---------- */
.quote-wrap {
    background:
        radial-gradient(520px 320px at 100% 0%, rgba(84, 180, 242, .18), transparent 60%),
        linear-gradient(180deg, var(--bg-tint), var(--bg-soft));
}

.quote-card {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.quote-build {
    padding: 34px
}

.qgroup {
    margin-bottom: 24px
}

.qgroup>.qlabel {
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 12px;
    display: block
}

.opt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.opt {
    position: relative;
    border: 1.5px solid var(--line-2);
    border-radius: 14px;
    padding: 15px 16px;
    cursor: pointer;
    transition: .2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.opt:hover {
    border-color: var(--blue-500)
}

.opt.active {
    border-color: var(--blue-600);
    background: var(--bg-tint);
    box-shadow: 0 0 0 3px rgba(14, 111, 203, .12)
}

.opt .ot {
    font-weight: 700;
    font-size: .95rem
}

.opt .op {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--blue-700);
    font-size: .95rem
}

.opt input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.check-list {
    display: grid;
    gap: 10px
}

.copt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1.5px solid var(--line);
    border-radius: 13px;
    padding: 13px 15px;
    cursor: pointer;
    transition: .2s
}

.copt:hover {
    border-color: var(--blue-400)
}

.copt.active {
    border-color: var(--blue-600);
    background: var(--bg-tint)
}

.copt .left {
    display: flex;
    align-items: center;
    gap: 12px
}

.box {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    border: 2px solid var(--line-2);
    display: grid;
    place-items: center;
    flex: none;
    transition: .2s
}

.copt.active .box {
    background: var(--blue-600);
    border-color: var(--blue-600)
}

.box svg {
    width: 13px;
    height: 13px;
    color: #fff;
    opacity: 0;
    transition: .2s
}

.copt.active .box svg {
    opacity: 1
}

.copt .price-tag {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--blue-700);
    font-size: .92rem;
    white-space: nowrap
}

.copt input {
    display: none
}

.qselect {
    width: 100%;
    border: 1.5px solid var(--line-2);
    border-radius: 13px;
    padding: 13px 15px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
    background: #fff;
    cursor: pointer
}

.qselect:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(14, 111, 203, .12)
}

.quote-summary {
    background:
        radial-gradient(380px 300px at 100% 0%, rgba(30, 144, 224, .45), transparent 60%),
        linear-gradient(165deg, #013a73, #00203f);
    color: #eaf3fb;
    padding: 34px;
    display: flex;
    flex-direction: column;
}

.quote-summary h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 4px
}

.quote-summary .qs-sub {
    color: #9fc0de;
    font-size: .88rem;
    margin-bottom: 20px
}

.qs-lines {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
    font-size: .92rem;
    color: #cfe2f3
}

.qs-lines .row {
    display: flex;
    justify-content: space-between;
    gap: 12px
}

.qs-lines .row span:last-child {
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display)
}

.qs-divider {
    height: 1px;
    background: rgba(255, 255, 255, .16);
    margin: 6px 0 16px
}

.qs-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline
}

.qs-total .t-label {
    color: #9fc0de;
    font-size: .85rem
}

.qs-total .t-amt {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.3rem;
    color: #fff;
    letter-spacing: -.02em
}

.qs-monthly {
    margin-top: 8px;
    font-size: .9rem;
    color: #cfe2f3
}

.qs-monthly b {
    color: var(--accent-2);
    font-family: var(--font-display)
}

.quote-summary .btn {
    margin-top: auto;
    width: 100%
}

.quote-summary .fineprint {
    font-size: .76rem;
    color: #82a6c6;
    margin-top: 12px;
    text-align: center
}

/* ---------- Inspiration ---------- */
.insp-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    overflow: hidden
}

.insp-top {
    padding: 34px 34px 8px
}

.insp-input {
    display: flex;
    gap: 12px;
    margin-top: 6px
}

.insp-input input {
    flex: 1;
    border: 1.5px solid var(--line-2);
    border-radius: 14px;
    padding: 15px 18px;
    font-family: var(--font-body);
    font-size: 1.02rem;
    color: var(--ink);
    transition: .2s;
}

.insp-input input:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(14, 111, 203, .12)
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
    padding-bottom: 8px
}

.chip {
    border: 1.5px solid var(--line-2);
    background: #fff;
    color: var(--ink-2);
    border-radius: 999px;
    padding: 8px 15px;
    font-size: .86rem;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    font-family: var(--font-body);
}

.chip:hover {
    border-color: var(--blue-500);
    color: var(--blue-700);
    background: var(--bg-tint)
}

.insp-result {
    padding: 8px 34px 36px;
    display: none
}

.insp-result.show {
    display: block;
    animation: rise .5s ease forwards
}

.ir-head {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--line);
    padding-top: 26px;
    margin-top: 18px
}

.ir-emoji {
    font-size: 2rem;
    line-height: 1;
    width: 58px;
    height: 58px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--bg-tint);
    flex: none
}

.ir-head h3 {
    font-size: 1.5rem
}

.ir-head p {
    color: var(--ink-2);
    font-size: .96rem;
    margin-top: 3px
}

.ir-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 26px
}

.ir-col h4 {
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue-700);
    margin-bottom: 14px
}

.ir-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px
}

.ir-list li {
    display: flex;
    gap: 10px;
    font-size: .95rem;
    color: var(--ink-2);
    align-items: flex-start
}

.ir-list.checks svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex: none;
    margin-top: 2px
}

.ir-list.dots li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-500);
    margin-top: 8px;
    flex: none
}

.ir-examples {
    margin-top: 28px
}

.ir-examples h4 {
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue-700);
    margin-bottom: 14px
}

.ex-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.ex-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1.5px solid var(--line-2);
    border-radius: 13px;
    padding: 11px 16px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--ink);
    transition: .2s;
}

.ex-link:hover {
    border-color: var(--blue-600);
    color: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm)
}

.ex-link svg {
    width: 16px;
    height: 16px;
    color: var(--blue-600)
}

.ir-rec {
    margin-top: 28px;
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: linear-gradient(150deg, var(--bg-tint), #fff);
    border: 1px solid var(--line-2);
}

.ir-rec .rec-text strong {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 1.05rem
}

.ir-rec .rec-text p {
    color: var(--ink-2);
    font-size: .92rem;
    margin-top: 4px;
    max-width: 430px
}

.ir-rec .rec-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

/* ---------- Process ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: step
}

.step {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm)
}

.step .num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(150deg, var(--blue-600), var(--navy-800));
    margin-bottom: 16px;
}

.step:nth-child(4) .num {
    background: linear-gradient(150deg, var(--accent-2), var(--accent))
}

.step h3 {
    font-size: 1.16rem;
    margin-bottom: 7px
}

.step p {
    color: var(--ink-2);
    font-size: .93rem
}

.step .line {
    position: absolute;
    top: 48px;
    right: -13px;
    width: 26px;
    height: 2px;
    background: var(--line-2);
    z-index: 1
}

.step:last-child .line {
    display: none
}

/* ---------- Showcase ---------- */
.show-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.show-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s
}

.show-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md)
}

.sc-frame {
    height: 210px;
    position: relative;
    overflow: hidden;
    padding: 16px
}

.sc-bar {
    display: flex;
    gap: 6px;
    margin-bottom: 12px
}

.sc-bar i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5)
}

.sc-1 {
    background: linear-gradient(150deg, #7a2f12, #c0532a)
}

.sc-2 {
    background: linear-gradient(150deg, #0f5e63, #15b1a0)
}

.sc-3 {
    background: linear-gradient(150deg, #013a73, #0e6fcb)
}

.sc-block {
    background: rgba(255, 255, 255, .9);
    border-radius: 9px;
    height: 64px;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    padding: 0 14px
}

.sc-block b {
    font-family: var(--font-display);
    font-size: .95rem;
    color: #1a2533
}

.sc-pill {
    display: inline-block;
    background: var(--accent);
    color: #231203;
    font-size: .64rem;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 999px;
    margin-bottom: 9px
}

.sc-rows {
    display: flex;
    gap: 8px
}

.sc-rows div {
    flex: 1;
    height: 40px;
    background: rgba(255, 255, 255, .55);
    border-radius: 7px
}

.sc-meta {
    padding: 16px 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sc-meta .t {
    font-weight: 700;
    font-family: var(--font-display)
}

.sc-meta .tag {
    font-size: .72rem;
    color: var(--muted);
    background: var(--bg-soft);
    padding: 5px 11px;
    border-radius: 999px;
    font-weight: 600
}

/* ---------- Why grid ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.why {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-sm)
}

.why .wic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex: none;
    display: grid;
    place-items: center;
    background: var(--bg-tint);
    color: var(--blue-700)
}

.why .wic svg {
    width: 22px;
    height: 22px
}

.why h3 {
    font-size: 1.05rem;
    margin-bottom: 4px
}

.why p {
    font-size: .9rem;
    color: var(--ink-2)
}

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

.faq {
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s
}

.faq[open] {
    box-shadow: var(--shadow-sm)
}

.faq summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--ink);
}

.faq summary::-webkit-details-marker {
    display: none
}

.faq summary .pl {
    width: 24px;
    height: 24px;
    flex: none;
    position: relative
}

.faq summary .pl::before,
.faq summary .pl::after {
    content: "";
    position: absolute;
    background: var(--blue-600);
    border-radius: 2px;
    transition: .25s
}

.faq summary .pl::before {
    top: 11px;
    left: 3px;
    width: 18px;
    height: 2.5px
}

.faq summary .pl::after {
    top: 3px;
    left: 11px;
    width: 2.5px;
    height: 18px
}

.faq[open] summary .pl::after {
    transform: rotate(90deg);
    opacity: 0
}

.faq .ans {
    padding: 0 22px 22px;
    color: var(--ink-2);
    font-size: .97rem
}

/* ---------- CTA + Contact ---------- */
.contact {
    color: #eaf3fb;
    background:
        radial-gradient(700px 460px at 85% -10%, rgba(30, 144, 224, .5), transparent 60%),
        radial-gradient(560px 420px at 0% 110%, rgba(245, 134, 12, .16), transparent 60%),
        linear-gradient(170deg, #013a73, #00182f);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.contact h2 {
    color: #fff;
    font-size: clamp(2rem, 3.6vw, 2.7rem);
    font-weight: 800
}

.contact .lead {
    color: #bcd6ee;
    font-size: 1.08rem;
    margin-top: 14px;
    max-width: 480px
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px
}

.ci-list {
    margin-top: 30px;
    display: grid;
    gap: 14px
}

.ci {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #cfe2f3;
    font-size: .96rem
}

.ci .cic {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .1);
    display: grid;
    place-items: center;
    flex: none
}

.ci .cic svg {
    width: 19px;
    height: 19px;
    color: var(--blue-300)
}

.ci b {
    color: #fff;
    display: block;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9fc0de
}

.form-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow-lg)
}

.form-card h3 {
    color: var(--ink);
    font-size: 1.3rem;
    margin-bottom: 4px
}

.form-card .fsub {
    color: var(--ink-2);
    font-size: .92rem;
    margin-bottom: 20px
}

.field {
    margin-bottom: 15px
}

.field label {
    display: block;
    font-weight: 600;
    font-size: .84rem;
    color: var(--ink-2);
    margin-bottom: 7px
}

.field input,
.field textarea {
    width: 100%;
    border: 1.5px solid var(--line-2);
    border-radius: 12px;
    padding: 13px 15px;
    font-family: var(--font-body);
    font-size: .96rem;
    color: var(--ink);
    transition: .2s;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 3px rgba(14, 111, 203, .12)
}

.form-card .btn {
    width: 100%
}

.form-note {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 12px;
    text-align: center
}

/* ---------- Footer ---------- */
footer {
    background: #00132a;
    color: #a9c2da;
    padding: 60px 0 28px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.foot-brand img {
    height: 30px;
    margin-bottom: 16px
}

.foot-brand p {
    font-size: .92rem;
    color: #90aac4;
    max-width: 280px
}

.foot-soc {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.foot-soc a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    display: grid;
    place-items: center;
    transition: .2s
}

.foot-soc a:hover {
    background: var(--blue-600);
    transform: translateY(-2px)
}

.foot-soc svg {
    width: 18px;
    height: 18px;
    color: #cfe2f3
}

.foot-col h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: .95rem;
    margin-bottom: 16px
}

.foot-col a {
    display: block;
    font-size: .92rem;
    color: #9fb6cd;
    margin-bottom: 11px;
    transition: color .2s
}

.foot-col a:hover {
    color: #fff
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    font-size: .84rem;
    color: #7e98b2
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    z-index: 80;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--wa);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
    transition: transform .2s;
    animation: pulse 2.6s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.08)
}

.wa-float svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 10px 28px rgba(37, 211, 102, .45)
    }

    50% {
        box-shadow: 0 10px 28px rgba(37, 211, 102, .45), 0 0 0 12px rgba(37, 211, 102, .10)
    }
}

/* ---------- Responsive ---------- */
@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 54px 22px 80px
    }

    .hero-visual {
        max-width: 460px;
        margin: 0 auto
    }

    .svc-grid,
    .price-grid,
    .steps,
    .show-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .quote-card,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .ir-cols {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }

    .price.feat {
        transform: none
    }

    .price.feat:hover {
        transform: translateY(-6px)
    }
}

@media (max-width:680px) {
    .nav-links {
        position: fixed;
        inset: 72px 0 auto 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 10px 22px 22px;
        box-shadow: 0 20px 40px rgba(7, 30, 55, .12);
        transform: translateY(-130%);
        transition: transform .35s ease;
        border-top: 1px solid var(--line);
    }

    header.menu-open .nav-links {
        transform: translateY(0)
    }

    .nav-links a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--line)
    }

    .hamburger {
        display: flex
    }

    .nav-cta .btn {
        display: none
    }

    .svc-grid,
    .price-grid,
    .steps,
    .show-grid,
    .why-grid,
    .opt-row {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr
    }

    .sec {
        padding: 64px 0
    }

    .insp-top,
    .insp-result,
    .quote-build,
    .quote-summary,
    .form-card {
        padding-left: 22px;
        padding-right: 22px
    }

    .price.feat {
        transform: none
    }

    .float-badge {
        display: none
    }
}

/* =====================================================================
   COLOR PASS — adds warmth/colour to sections that were mostly white.
   Uses the existing navy / blue / orange palette so it stays on-brand.
   ===================================================================== */

/* ---- Tinted section backgrounds (break up the all-white feel) ---- */
#services.sec {
    background:
        radial-gradient(680px 360px at 86% -6%, rgba(84, 180, 242, .12), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #ecf4fd 100%);
}

#pricing.sec-soft {
    background:
        radial-gradient(560px 320px at 10% 0%, rgba(245, 134, 12, .07), transparent 60%),
        radial-gradient(640px 380px at 100% 102%, rgba(84, 180, 242, .14), transparent 60%),
        var(--bg-soft);
}

#inspiration.sec {
    background:
        radial-gradient(660px 360px at 92% -2%, rgba(84, 180, 242, .14), transparent 60%),
        linear-gradient(180deg, #f5faff 0%, #eaf3fc 100%);
}

#process.sec-soft {
    background:
        radial-gradient(640px 360px at 0% 0%, rgba(84, 180, 242, .14), transparent 60%),
        radial-gradient(520px 320px at 100% 100%, rgba(245, 134, 12, .06), transparent 60%),
        var(--bg-soft);
}

#showcase.sec {
    background:
        radial-gradient(620px 360px at 8% -6%, rgba(245, 134, 12, .07), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

#why.sec-soft {
    background:
        radial-gradient(680px 380px at 100% 0%, rgba(84, 180, 242, .14), transparent 60%),
        var(--bg-soft);
}

#faq.sec {
    background:
        radial-gradient(560px 320px at 50% -6%, rgba(84, 180, 242, .12), transparent 60%),
        linear-gradient(180deg, #f6fbff 0%, #eaf3fc 100%);
}

/* ---- Colour accent strip across the top of the white cards ----
   Painted as a clipped background layer (not a floating bar) so the strip
   follows each card's rounded corners and the ends tuck in cleanly.
   The top border is made transparent so the strip sits flush at the edge. ---- */
.svc {
    background:
        linear-gradient(90deg, var(--blue-600), var(--accent)) top / 100% 4px no-repeat border-box,
        #fff border-box;
    border-top-color: transparent;
}

.price:not(.feat) {
    background:
        linear-gradient(90deg, var(--blue-500), var(--blue-700)) top / 100% 4px no-repeat border-box,
        #fff border-box;
    border-top-color: transparent;
}

.step {
    background:
        linear-gradient(90deg, var(--blue-600), var(--navy-800)) top / 100% 4px no-repeat border-box,
        #fff border-box;
    border-top-color: transparent;
}

.step:nth-child(4) {
    background:
        linear-gradient(90deg, var(--accent-2), var(--accent)) top / 100% 4px no-repeat border-box,
        #fff border-box;
}

.addons {
    background:
        linear-gradient(90deg, var(--accent), var(--blue-600)) top / 100% 4px no-repeat border-box,
        #fff border-box;
    border-top-color: transparent;
}

/* ---- "Why us" icons: rotate through brand colours for variety ---- */
.why:nth-child(3n+1) .wic {
    background: var(--bg-tint);
    color: var(--blue-700);
}

.why:nth-child(3n+2) .wic {
    background: #fff2e2;
    color: var(--accent-700);
}

.why:nth-child(3n+3) .wic {
    background: #e6f8ee;
    color: #138a4b;
}

/* ---- FAQ: a coloured edge when a question is open ---- */
.faq[open] {
    border-left: 3px solid var(--blue-600);
}

/* ---- Add-on chips: a touch of tint + colour on hover ---- */
.addon {
    background: linear-gradient(180deg, #ffffff, #f1f7fe);
    border-color: var(--blue-300);
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.addon:hover {
    border-style: solid;
    border-color: var(--blue-500);
    box-shadow: 0 6px 16px rgba(14, 111, 203, .12);
    transform: translateY(-2px);
}

/* ---- Showcase "sample design" tag: brand colour instead of grey ---- */
.show-card .sc-meta .tag {
    color: var(--blue-700);
    background: var(--bg-tint);
}

/* ---- Inspiration chips: subtle brand tint ---- */
.chip {
    background: var(--bg-tint);
    border-color: var(--line-2);
}

.chip:hover {
    background: var(--blue-600);
    border-color: var(--blue-600);
    color: #fff;
}