:root {
    --navy: #071322;
    --navy-2: #0c1d32;
    --ink: #101828;
    --muted: #5d6b7d;
    --line: #dce3ec;
    --paper: #f5f7fa;
    --white: #ffffff;
    --blue: #2377ff;
    --blue-dark: #145ac5;
    --blue-soft: #eaf2ff;
    --cyan: #43cdfc;
    --green: #38c991;
    --shadow: 0 28px 70px rgba(4, 18, 40, .16);
    --radius: 18px;
    --shell: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open, body.modal-open { overflow: hidden; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.07; letter-spacing: -.045em; }
h1, h2 { text-wrap: balance; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }

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

.section { padding: 112px 0; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--blue);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 24px;
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
}

.eyebrow-blue { color: var(--cyan); }
.deliverables-section .eyebrow-blue,
.process-section .eyebrow-blue,
.pricing-section-new .eyebrow-blue,
.faq-section-new .eyebrow-blue { color: var(--blue); }
.eyebrow-light { color: var(--cyan); }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 21px;
    border: 1px solid transparent;
    border-radius: 9px;
    cursor: pointer;
    font-size: .91rem;
    font-weight: 800;
    line-height: 1.15;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 28px rgba(35, 119, 255, .24); }
.button-primary:hover { background: var(--blue-dark); }
.button-dark { color: var(--white); background: var(--navy); }
.button-dark:hover { background: var(--blue); }
.button-outline { color: var(--navy); border-color: #b8c2d0; background: transparent; }
.button-outline:hover { border-color: var(--blue); color: var(--blue); }
.button-ghost-light { color: var(--white); border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.04); }
.button-ghost-light:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.1); }
.button-small { min-height: 43px; padding: 11px 17px; font-size: .82rem; }
.button-wide { width: 100%; }

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--blue);
    border-bottom: 1px solid currentColor;
    font-size: .9rem;
    font-weight: 800;
}
.text-link-light { color: var(--cyan); }

/* Header */
.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 86px;
    border-bottom: 1px solid rgba(9, 29, 51, .1);
    color: var(--navy);
    background: rgba(255,255,255,.94);
}

.home-page .site-header {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,.12);
    background: transparent;
}

.site-header.is-sticky {
    position: fixed;
    height: 72px;
    color: var(--navy);
    border-bottom-color: rgba(9, 29, 51, .1);
    background: rgba(255,255,255,.94);
    box-shadow: 0 8px 32px rgba(7,19,34,.08);
    backdrop-filter: blur(14px);
    animation: header-in .25s ease both;
}

@keyframes header-in { from { transform: translateY(-100%); } }

.header-inner {
    display: grid;
    height: 100%;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 42px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 1.08rem;
    font-weight: 850;
    letter-spacing: -.035em;
}

.brand-mark {
    position: relative;
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    background: var(--blue);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
    position: absolute;
    display: block;
    content: "";
    background: var(--white);
    border-radius: 10px;
}

.brand-mark::before { width: 3px; height: 18px; left: 9px; }
.brand-mark::after { width: 3px; height: 18px; right: 9px; }
.brand-mark i { width: 16px; height: 3px; }

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 34px; }
.desktop-nav a { position: relative; font-size: .84rem; font-weight: 700; }
.desktop-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ""; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); }
.home-page .site-header:not(.is-sticky) .header-cta { color: var(--navy); background: var(--white); }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-button i { display: block; width: 24px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .2s ease; }
.menu-button[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
.mobile-nav { color: var(--navy); background: var(--white); box-shadow: 0 18px 32px rgba(7,19,34,.12); }
.mobile-nav nav { display: grid; gap: 0; padding-block: 10px 24px; }
.mobile-nav nav > a:not(.button) { padding: 15px 0; border-bottom: 1px solid var(--line); font-weight: 750; }

/* Compact, image-led homepage hero */
.sales-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 83% 22%, rgba(35,119,255,.3), transparent 33%),
        linear-gradient(135deg, #071322 0%, #0a1b31 62%, #07192d 100%);
}

.sales-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .055;
    background-image: linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent 3%, #000 45%, #000 100%);
}

.sales-hero-grid {
    position: relative;
    display: grid;
    min-height: 720px;
    grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
    padding-top: 112px;
    padding-bottom: 54px;
}

.sales-hero-copy { max-width: 610px; }
.sales-hero-copy h1 { max-width: 610px; margin-bottom: 23px; font-size: clamp(3.2rem, 5vw, 4.65rem); font-weight: 800; }
.sales-hero-copy h1 em { color: var(--cyan); font-family: Georgia, serif; font-weight: 500; }
.sales-hero-lead { max-width: 600px; margin-bottom: 30px; color: #bdcbe0; font-size: clamp(1rem, 1.2vw, 1.16rem); line-height: 1.68; }
.sales-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-facts li { min-width: 0; padding-right: 18px; border-right: 1px solid rgba(255,255,255,.18); }
.hero-facts li + li { padding-left: 18px; }
.hero-facts li:last-child { padding-right: 0; border-right: 0; }
.hero-facts strong, .hero-facts span { display: block; }
.hero-facts strong { margin-bottom: 3px; color: var(--white); font-size: 1rem; }
.hero-facts span { color: #8fa3bd; font-size: .72rem; line-height: 1.4; }

.hero-showcase { position: relative; padding: 22px 0 32px; }
.showcase-browser { overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; background: var(--white); box-shadow: 0 42px 90px rgba(0,0,0,.38); transform: rotate(1.1deg); }
.showcase-bar { display: flex; height: 42px; align-items: center; gap: 18px; padding: 0 15px; color: #7b8797; background: #eff3f7; font-size: .61rem; }
.showcase-bar > span { display: flex; gap: 5px; }
.showcase-bar i { width: 7px; height: 7px; border-radius: 50%; background: #b7c0cc; }
.showcase-bar i:first-child { background: #ff7769; }
.showcase-bar i:nth-child(2) { background: #ffc85a; }
.showcase-bar i:last-child { background: #48c98d; }
.showcase-bar b { font-weight: 600; }
.showcase-image { position: relative; aspect-ratio: 1.22; overflow: hidden; background: #ddd; }
.showcase-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(5,15,23,.84) 0%, rgba(5,15,23,.35) 54%, transparent 85%); }
.showcase-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.showcase-site-copy { position: absolute; z-index: 1; top: 50%; left: 8%; display: grid; width: 57%; gap: 14px; transform: translateY(-50%); }
.showcase-site-copy small { color: #dbbfa5; font-size: .58rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.showcase-site-copy strong { color: var(--white); font-family: Georgia, serif; font-size: clamp(1.5rem, 2.3vw, 2.55rem); font-weight: 400; line-height: 1.04; letter-spacing: -.04em; }
.showcase-site-copy span { width: fit-content; padding: 8px 11px; color: #152019; background: #e6c39e; border-radius: 2px; font-size: .58rem; font-weight: 800; }

.showcase-badge {
    position: absolute;
    z-index: 2;
    display: flex;
    min-width: 210px;
    align-items: center;
    gap: 11px;
    padding: 12px 15px;
    color: var(--navy);
    border: 1px solid rgba(7,19,34,.08);
    border-radius: 11px;
    background: var(--white);
    box-shadow: 0 17px 45px rgba(0,0,0,.21);
}
.showcase-badge > span { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; color: var(--white); border-radius: 9px; background: var(--blue); font-weight: 900; }
.showcase-badge strong, .showcase-badge small { display: block; }
.showcase-badge strong { font-size: .77rem; }
.showcase-badge small { margin-top: 1px; color: var(--muted); font-size: .64rem; }
.showcase-speed { top: 0; right: -24px; }
.showcase-care { right: 22px; bottom: 5px; }
.showcase-care > span { background: var(--green); }
.showcase-speed { animation: soft-float 5.5s ease-in-out infinite; }
.showcase-care { animation: soft-float 6.5s ease-in-out 1s infinite reverse; }

@keyframes soft-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Lead form */
.scan-strip { position: relative; z-index: 3; padding: 39px 0; color: var(--white); background: var(--blue); }
.scan-strip-grid { display: grid; grid-template-columns: .72fr 1.28fr; align-items: start; gap: 48px; }
.scan-strip-copy { display: flex; gap: 17px; padding-top: 3px; }
.scan-icon { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 1.1rem; }
.scan-strip-copy p { margin-bottom: 4px; color: #cfe0ff; font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.scan-strip-copy h2 { margin-bottom: 7px; font-size: clamp(1.45rem, 2vw, 2rem); }
.scan-strip-copy div > span { display: block; max-width: 470px; color: #dbe7ff; font-size: .82rem; line-height: 1.5; }
.scan-form { display: grid; gap: 14px; }
.scan-form label { display: grid; gap: 6px; min-width: 0; }
.scan-form label > span { font-size: .72rem; font-weight: 800; }
.scan-form input[type="text"],
.scan-form input[type="email"],
.scan-form input[type="tel"] {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--ink);
    outline: 0;
    border: 1px solid #cbd5e2;
    border-radius: 8px;
    background: var(--white);
    transition: border-color .18s ease, box-shadow .18s ease;
}
.scan-form textarea {
    width: 100%;
    min-height: 128px;
    padding: 12px 13px;
    resize: vertical;
    color: var(--ink);
    outline: 0;
    border: 1px solid #cbd5e2;
    border-radius: 8px;
    background: var(--white);
    line-height: 1.5;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.scan-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35,119,255,.17); }
.scan-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(35,119,255,.17); }
.scan-form input.is-invalid { border-color: #d82b3f; }
.scan-form textarea.is-invalid { border-color: #d82b3f; }
.scan-form label small, .checkbox-error { min-height: 0; color: #ffb4bd; font-size: .68rem; }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-trap { position: absolute; left: -10000px; }
.checkbox-label { display: flex !important; grid-column: 1 / -1; align-items: flex-start; gap: 8px !important; }
.checkbox-label input { width: 16px; height: 16px; flex: 0 0 auto; margin: 3px 0 0; accent-color: var(--navy); }
.checkbox-label span { color: inherit; font-size: .66rem !important; font-weight: 500 !important; line-height: 1.45; opacity: .86; }
.checkbox-label a { text-decoration: underline; }
.checkbox-error { grid-column: 1 / -1; margin-top: -13px; }
.form-assurance { margin: -5px 0 0; color: inherit; font-size: .67rem; opacity: .78; }
.form-assurance span { margin-right: 3px; color: var(--green); font-weight: 900; }
.form-privacy { margin: -2px 0 0; color: inherit; font-size: .65rem; line-height: 1.45; opacity: .72; }
.form-privacy a { text-decoration: underline; }
.form-status { display: none; padding: 11px 13px; border-radius: 7px; font-size: .76rem; }
.form-status.is-visible { display: block; }
.form-status.is-success { color: #0d5941; background: #dff8ef; }
.form-status.is-error { color: #8d1827; background: #ffe5e8; }

.scan-inline .scan-form { grid-template-columns: minmax(150px, .85fr) minmax(300px, 1.5fr) auto; gap: 9px; align-items: end; }
.scan-inline .form-split { gap: 9px; }
.scan-inline .checkbox-label { margin-top: 1px; }
.scan-inline .button { align-self: end; min-height: 48px; white-space: nowrap; color: var(--blue); background: var(--white); box-shadow: none; }
.scan-inline .form-assurance { grid-column: 1 / -1; }
.scan-inline .form-privacy { grid-column: 1 / -1; }
.scan-inline .form-status { grid-column: 1 / -1; }

/* Shared section heading */
.section-head-simple { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .65fr); align-items: end; gap: 80px; margin-bottom: 54px; }
.section-head-simple h2 { max-width: 760px; margin-bottom: 0; font-size: clamp(2.45rem, 4.2vw, 4.25rem); }
.section-head-simple > p,
.section-head-simple > div:last-child > p { margin-bottom: 0; color: var(--muted); font-size: .98rem; line-height: 1.75; }
.section-head-simple > div:last-child .text-link { margin-top: 18px; }

/* Deliverables */
.deliverables-section { background: var(--white); }
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.deliverables-grid article { min-height: 305px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.deliverables-grid article > span { display: block; margin-bottom: 38px; color: var(--blue); font-size: .7rem; font-weight: 900; }
.deliverables-grid h3 { margin-bottom: 13px; font-size: 1.48rem; }
.deliverables-grid p { margin-bottom: 18px; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.deliverables-grid ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.deliverables-grid li { color: #344054; font-size: .76rem; font-weight: 700; }
.deliverables-grid li::before { margin-right: 8px; color: var(--blue); content: "✓"; font-weight: 900; }
.deliverables-grid .deliverable-highlight { color: var(--white); border-color: var(--blue); background: var(--blue); }
.deliverables-grid .deliverable-highlight > span,
.deliverables-grid .deliverable-highlight p,
.deliverables-grid .deliverable-highlight li,
.deliverables-grid .deliverable-highlight li::before { color: var(--white); }
.deliverables-grid .deliverable-highlight p { opacity: .83; }
.deliverable-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 19px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: .74rem; font-weight: 850; }
.deliverable-link b { color: var(--cyan); }

/* Portfolio */
.portfolio-home { color: var(--white); background: var(--navy); }
.section-head-light h2 { color: var(--white); }
.section-head-light > div:last-child > p { color: #a8b7ca; }
.portfolio-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-home-card { min-width: 0; }
.portfolio-home-image { position: relative; display: block; aspect-ratio: 1.28; overflow: hidden; border-radius: 12px; background: var(--navy-2); }
.portfolio-home-image::after { position: absolute; inset: 0; content: ""; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); border-radius: inherit; }
.portfolio-home-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.portfolio-home-card:hover .portfolio-home-image img { transform: scale(1.035); }
.portfolio-home-image > span { position: absolute; z-index: 1; top: 13px; left: 13px; padding: 6px 9px; color: var(--white); border-radius: 5px; background: rgba(7,19,34,.82); backdrop-filter: blur(6px); font-size: .6rem; font-weight: 800; text-transform: uppercase; }
.portfolio-home-copy { padding: 22px 4px 0; }
.portfolio-home-copy p { margin-bottom: 6px; color: var(--cyan); font-size: .65rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.portfolio-home-copy h3 { margin-bottom: 10px; color: var(--white); font-size: 1.55rem; }
.portfolio-home-copy > span { display: block; min-height: 50px; margin-bottom: 14px; color: #9fb0c5; font-size: .83rem; line-height: 1.58; }
.portfolio-home-copy a { color: var(--white); font-size: .76rem; font-weight: 800; }

/* Process */
.process-section { background: var(--blue-soft); }
.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: start; gap: clamp(70px, 10vw, 150px); }
.process-intro { position: sticky; top: 120px; }
.process-intro h2 { max-width: 540px; margin-bottom: 22px; font-size: clamp(2.5rem, 4vw, 4.1rem); }
.process-intro > p:not(.eyebrow) { max-width: 500px; margin-bottom: 28px; color: var(--muted); }
.process-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid #c6d5e8; }
.process-steps li { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 29px 0; border-bottom: 1px solid #c6d5e8; }
.process-steps li > span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--blue); border: 1px solid #acc5e8; border-radius: 50%; font-weight: 900; }
.process-steps li > div { display: grid; grid-template-columns: 1fr auto; column-gap: 25px; }
.process-steps h3 { margin-bottom: 10px; font-size: 1.35rem; }
.process-steps p { grid-column: 1; margin-bottom: 0; color: var(--muted); font-size: .85rem; }
.process-steps small { grid-column: 2; grid-row: 1 / span 2; color: var(--blue); font-size: .66rem; font-weight: 900; text-transform: uppercase; }

/* Care */
.care-section-new { padding: 110px 0; overflow: hidden; color: var(--white); background: var(--blue); }
.care-new-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(70px, 10vw, 150px); }
.care-new-copy h2 { max-width: 610px; margin-bottom: 22px; font-size: clamp(2.5rem, 4.2vw, 4.35rem); }
.care-new-copy > p:not(.eyebrow) { max-width: 570px; margin-bottom: 23px; color: #d9e7ff; }
.care-new-price { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.care-new-price strong { font-size: 2.75rem; line-height: 1; }
.care-new-price span { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.32); color: #cbdcff; font-size: .69rem; line-height: 1.35; }
.care-new-copy ul { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 26px; margin: 0; padding: 0; list-style: none; }
.care-new-copy li { font-size: .78rem; font-weight: 700; }
.care-new-copy li::before { margin-right: 8px; color: var(--cyan); content: "✓"; }
.care-portal { max-width: 590px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px; background: #f7f9fc; box-shadow: 0 35px 85px rgba(4,18,40,.32); transform: rotate(1deg); }
.care-portal-head { display: flex; min-height: 55px; align-items: center; justify-content: space-between; padding: 0 20px; color: var(--navy); border-bottom: 1px solid var(--line); font-size: .72rem; }
.care-portal-head span { padding: 5px 9px; color: #14724f; border-radius: 99px; background: #dff8ef; font-size: .59rem; font-weight: 800; }
.care-portal-body { position: relative; padding: 31px; color: var(--navy); }
.care-portal-body > p { margin-bottom: 4px; color: var(--blue); font-size: .62rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.care-portal-body h3 { margin-bottom: 18px; font-size: 1.55rem; }
.care-fake-input { min-height: 95px; padding: 13px; color: #8b98a9; border: 1px solid #cbd5e2; border-radius: 8px; background: var(--white); font-size: .73rem; }
.care-upload { margin: 11px 0; padding: 10px 12px; color: #536277; border: 1px dashed #b7c5d7; border-radius: 7px; font-size: .68rem; }
.care-portal-body button { padding: 11px 15px; color: var(--white); border: 0; border-radius: 7px; background: var(--blue); font-size: .7rem; font-weight: 800; }
.care-status { position: absolute; right: -34px; bottom: -32px; display: flex; min-width: 260px; align-items: center; gap: 11px; padding: 14px; color: var(--navy); border: 1px solid var(--line); border-radius: 11px; background: var(--white); box-shadow: var(--shadow); }
.care-status > span { display: grid; width: 32px; height: 32px; place-items: center; color: var(--white); border-radius: 50%; background: var(--green); }
.care-status strong, .care-status small { display: block; }
.care-status strong { font-size: .72rem; }
.care-status small { color: var(--muted); font-size: .61rem; }

/* Pricing */
.pricing-section-new { background: var(--white); }
.pricing-grid-new { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; align-items: stretch; }
.price-card-new { position: relative; display: flex; min-height: 500px; flex-direction: column; padding: 33px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.price-card-new.is-featured { color: var(--white); border-color: var(--navy); background: var(--navy); box-shadow: var(--shadow); }
.price-card-new > p { margin-bottom: 19px; color: var(--blue); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.price-card-new.is-featured > p { color: var(--cyan); }
.price-card-new h3 { margin-bottom: 13px; font-size: clamp(2.1rem, 3vw, 3.1rem); }
.price-card-new > span:not(.price-badge-new) { min-height: 55px; color: var(--muted); font-size: .82rem; }
.price-card-new.is-featured > span:not(.price-badge-new) { color: #aebdd0; }
.price-card-new ul { display: grid; gap: 11px; margin: 28px 0 32px; padding: 23px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card-new.is-featured ul { border-color: rgba(255,255,255,.16); }
.price-card-new li { font-size: .8rem; }
.price-card-new li::before { margin-right: 9px; color: var(--blue); content: "✓"; font-weight: 900; }
.price-card-new.is-featured li::before { color: var(--cyan); }
.price-card-new .button { width: 100%; margin-top: auto; }
.price-badge-new { position: absolute; top: 0; right: 22px; padding: 7px 11px; color: var(--navy); background: var(--cyan); border-radius: 0 0 7px 7px; font-size: .6rem; font-weight: 900; text-transform: uppercase; }
.pricing-help { margin-top: 22px; color: var(--muted); font-size: .77rem; text-align: center; }
.custom-solutions { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 26px; margin-top: 25px; padding: 28px 30px; color: var(--white); border-radius: 14px; background: linear-gradient(110deg, var(--navy), #0d2949); box-shadow: 0 18px 45px rgba(7,19,34,.13); }
.custom-solutions-icon { display: grid; width: 58px; height: 58px; grid-template-columns: repeat(2, 12px); grid-template-rows: repeat(2, 12px); place-content: center; gap: 5px; border: 1px solid rgba(255,255,255,.2); border-radius: 14px; background: rgba(35,119,255,.22); }
.custom-solutions-icon span { border-radius: 3px; background: var(--cyan); }
.custom-solutions-icon span:last-child { grid-column: 1 / -1; width: 29px; }
.custom-solutions > div:nth-child(2) > p { margin-bottom: 4px; color: var(--cyan); font-size: .64rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.custom-solutions h3 { margin-bottom: 7px; font-size: 1.45rem; }
.custom-solutions > div:nth-child(2) > span { display: block; max-width: 690px; color: #9fb0c5; font-size: .76rem; line-height: 1.55; }
.custom-solutions-action { display: grid; min-width: 190px; justify-items: stretch; gap: 10px; }
.custom-solutions-action > strong { color: var(--cyan); font-size: .7rem; text-align: center; text-transform: uppercase; }
.custom-solutions-action .button { min-height: 45px; padding: 11px 16px; }

/* FAQ */
.faq-section-new { background: var(--paper); }
.faq-layout-new { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: clamp(70px, 9vw, 130px); }
.faq-layout-new > div:first-child { position: sticky; top: 120px; }
.faq-layout-new h2 { margin-bottom: 20px; font-size: clamp(2.5rem, 4vw, 4rem); }
.faq-layout-new > div:first-child > p:not(.eyebrow) { color: var(--muted); font-size: .88rem; }
.faq-list { border-top: 1px solid #cbd5e1; }
.faq-item { border-bottom: 1px solid #cbd5e1; }
.faq-item button { display: grid; width: 100%; grid-template-columns: 1fr 24px; align-items: center; gap: 22px; padding: 23px 0; border: 0; cursor: pointer; text-align: left; background: transparent; }
.faq-item button > span { font-size: 1rem; font-weight: 800; }
.faq-item button i { position: relative; display: block; width: 20px; height: 20px; }
.faq-item button i::before,
.faq-item button i::after { position: absolute; top: 9px; right: 1px; left: 1px; height: 2px; content: ""; background: var(--blue); }
.faq-item button i::after { transform: rotate(90deg); transition: transform .2s ease; }
.faq-item.is-open button i::after { transform: rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > p { min-height: 0; margin: 0; overflow: hidden; color: var(--muted); font-size: .88rem; line-height: 1.75; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 24px; }

/* Final CTA */
.final-cta-new, .final-cta { padding: 95px 0; color: var(--white); background: var(--navy); }
.final-cta-new-grid, .final-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.final-cta-new-grid > div:first-child > p { margin-bottom: 10px; color: var(--cyan); font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.final-cta-new-grid h2, .final-copy h2 { margin-bottom: 18px; font-size: clamp(2.5rem, 4vw, 4rem); }
.final-cta-new-grid > div:first-child > span, .final-copy > p { display: block; color: #aebdd0; }
.scan-card { padding: 27px; color: var(--ink); border-radius: 14px; background: var(--white); box-shadow: var(--shadow); }
.scan-card .form-assurance { color: var(--muted); }
.scan-card .checkbox-label span { color: var(--muted); }
.scan-card .scan-form label small,
.scan-card .checkbox-error { color: #c42336; }
.scan-card-light { background: var(--white); }

/* Scan modal */
.scan-modal[hidden] { display: none; }
.scan-modal { position: fixed; z-index: 500; inset: 0; display: grid; place-items: center; padding: 28px; }
.scan-modal-backdrop { position: absolute; inset: 0; opacity: 0; background: rgba(2,9,17,.78); backdrop-filter: blur(8px); transition: opacity .22s ease; }
.scan-modal-dialog { position: relative; z-index: 1; display: grid; width: min(930px, 100%); max-height: calc(100vh - 56px); overflow: auto; grid-template-columns: .8fr 1.2fr; gap: 42px; padding: 43px; opacity: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: var(--white); box-shadow: 0 40px 110px rgba(0,0,0,.4); transform: translateY(18px) scale(.985); transition: opacity .22s ease, transform .22s ease; }
.scan-modal.is-open .scan-modal-backdrop, .scan-modal.is-open .scan-modal-dialog { opacity: 1; }
.scan-modal.is-open .scan-modal-dialog { transform: none; }
.scan-modal-close { position: absolute; z-index: 2; top: 15px; right: 16px; display: grid; width: 35px; height: 35px; place-items: center; padding: 0; color: var(--navy); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; background: var(--paper); font-size: 1.35rem; line-height: 1; }
.scan-modal-heading { align-self: center; padding-right: 5px; }
.scan-modal-heading > p { margin-bottom: 10px; color: var(--blue); font-size: .67rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.scan-modal-heading h2 { margin-bottom: 15px; font-size: clamp(2.2rem, 4vw, 3.45rem); }
.scan-modal-heading > span { display: block; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.scan-modal-form { padding: 25px; border-radius: 14px; background: var(--blue-soft); }
.scan-modal-form .scan-form label small, .scan-modal-form .checkbox-error { color: #c42336; }
.scan-modal-form .form-privacy, .scan-modal-form .form-assurance { color: var(--muted); }

/* Direct contact */
.contact-section { padding: 90px 0; color: var(--white); background: linear-gradient(120deg, var(--blue), #145dcc); }
.contact-section-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(60px, 8vw, 120px); }
.contact-section-copy h2 { max-width: 590px; margin-bottom: 16px; font-size: clamp(2.5rem, 4.3vw, 4.25rem); }
.contact-section-copy > p:last-child { max-width: 520px; margin-bottom: 0; color: #dbe7ff; }
.contact-options { display: grid; gap: 12px; }
.contact-options > a { display: grid; min-height: 82px; grid-template-columns: 46px 1fr auto; align-items: center; gap: 15px; padding: 16px 19px; color: var(--navy); border: 1px solid rgba(255,255,255,.38); border-radius: 12px; background: var(--white); transition: transform .18s ease, box-shadow .18s ease; }
.contact-options > a:hover { transform: translateY(-2px); box-shadow: 0 17px 38px rgba(7,19,34,.2); }
.contact-option-icon { display: grid; width: 43px; height: 43px; place-items: center; color: var(--white); border-radius: 11px; background: var(--blue); font-weight: 900; }
.contact-options a:nth-child(2) .contact-option-icon { background: #24b879; }
.contact-option-whatsapp svg { width: 22px; height: 22px; fill: currentColor; }
.contact-options small, .contact-options strong { display: block; }
.contact-options small { margin-bottom: 1px; color: var(--muted); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.contact-options strong { font-size: .9rem; }
.contact-options b { color: var(--blue); font-size: 1rem; }
.contact-options > a b { transition: transform .18s ease; }
.contact-options > a:hover b { transform: translate(2px, -2px); }

/* Portfolio and legal pages */
.page-hero { padding: 172px 0 90px; background: var(--white); }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .65fr; align-items: end; gap: 90px; }
.page-hero h1 { margin-bottom: 0; font-size: clamp(3.3rem, 6vw, 6.4rem); }
.page-hero h1 em { color: var(--blue); font-family: Georgia, serif; font-weight: 400; }
.page-hero-grid > div:last-child > p { color: var(--muted); }
.portfolio-page { background: var(--paper); }
.portfolio-cases { display: grid; gap: 90px; }
.portfolio-detail { display: grid; grid-template-columns: 1.18fr .82fr; align-items: center; gap: clamp(55px, 8vw, 115px); }
.portfolio-detail:nth-child(even) .portfolio-visual { order: 2; }
.portfolio-visual { position: relative; aspect-ratio: 1.28; overflow: hidden; border-radius: 14px; box-shadow: var(--shadow); }
.portfolio-visual img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-visual > span { position: absolute; top: 15px; left: 15px; padding: 7px 10px; color: var(--white); border-radius: 5px; background: rgba(7,19,34,.8); font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.portfolio-copy .kicker { margin-bottom: 10px; color: var(--blue); font-size: .69rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.portfolio-copy h2 { margin-bottom: 17px; font-size: clamp(2.5rem, 4vw, 4.2rem); }
.portfolio-copy > p { color: var(--muted); }
.portfolio-copy blockquote { margin: 27px 0; padding: 18px 0 18px 22px; border-left: 3px solid var(--blue); font-size: 1.05rem; font-weight: 750; line-height: 1.55; }
.portfolio-copy ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 25px; padding: 0; list-style: none; }
.portfolio-copy li { padding: 6px 10px; color: #294461; border-radius: 99px; background: var(--blue-soft); font-size: .67rem; font-weight: 750; }
.case-honesty { display: inline-block; color: var(--muted); font-size: .7rem; }
.legal-page { padding: 165px 0 100px; background: var(--white); }
.legal-wrap { max-width: 820px; }
.legal-wrap h1 { margin-bottom: 25px; font-size: clamp(3rem, 5.5vw, 5.5rem); }
.legal-intro { margin-bottom: 64px; color: var(--muted); font-size: 1.16rem; }
.legal-wrap section { padding: 30px 0; border-top: 1px solid var(--line); }
.legal-wrap section h2 { font-size: 1.45rem; }
.legal-wrap section p { margin-bottom: 0; color: var(--muted); }
.legal-wrap section a { color: var(--blue); text-decoration: underline; }
.hero-actions { display: flex; align-items: center; gap: 20px; }

/* Footer */
.site-footer { padding: 74px 0 25px; color: var(--white); border-top: 1px solid rgba(255,255,255,.1); background: #040c16; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 55px; padding-bottom: 62px; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 9px; }
.footer-brand > p { max-width: 330px; margin: 19px 0 0; color: #8292a7; font-size: .82rem; }
.brand-light { color: var(--white); }
.footer-label { margin-bottom: 7px; color: #708198; font-size: .64rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) a { color: #aebbd0; font-size: .78rem; }
.footer-grid > div:not(.footer-brand) a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; color: #68798f; border-top: 1px solid rgba(255,255,255,.1); font-size: .68rem; }
.mobile-scan-bar { display: none; }

[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .45s ease, transform .45s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
    .desktop-nav { gap: 22px; }
    .sales-hero-grid { grid-template-columns: .95fr 1.05fr; gap: 42px; }
    .sales-hero-copy h1 { font-size: 3.7rem; }
    .scan-strip-grid { grid-template-columns: 1fr; gap: 28px; }
    .deliverables-grid article { padding: 28px; }
    .section-head-simple { gap: 55px; }
    .care-new-grid { gap: 65px; }
}

@media (max-width: 850px) {
    .shell { width: min(calc(100% - 36px), var(--shell)); }
    .section { padding: 82px 0; }
    .site-header, .site-header.is-sticky { height: 72px; }
    .header-inner { grid-template-columns: 1fr auto; }
    .desktop-nav, .header-cta { display: none; }
    .menu-button { display: block; }
    .sales-hero, .sales-hero-grid { min-height: auto; }
    .sales-hero-grid { grid-template-columns: 1fr; gap: 52px; padding-top: 132px; padding-bottom: 62px; }
    .sales-hero-copy { max-width: 680px; }
    .sales-hero-copy h1 { font-size: clamp(3.15rem, 9vw, 5rem); }
    .hero-showcase { width: min(92%, 640px); margin: auto; }
    .scan-inline .scan-form { grid-template-columns: 1fr 1fr; }
    .scan-inline .form-split { grid-column: 2; }
    .scan-inline .button { grid-column: 1 / -1; }
    .section-head-simple { grid-template-columns: 1fr; gap: 24px; }
    .deliverables-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-home-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-home-card:last-child { display: none; }
    .process-layout, .care-new-grid, .faq-layout-new, .final-cta-new-grid, .final-grid { grid-template-columns: 1fr; gap: 55px; }
    .process-intro, .faq-layout-new > div:first-child { position: static; }
    .care-portal { margin-inline: auto; }
    .pricing-grid-new { grid-template-columns: 1fr; }
    .price-card-new { min-height: 0; }
    .custom-solutions { grid-template-columns: auto 1fr; }
    .custom-solutions-action { grid-column: 2; grid-template-columns: auto auto; align-items: center; }
    .scan-modal-dialog { width: min(650px, 100%); grid-template-columns: 1fr; gap: 26px; }
    .contact-section-grid { grid-template-columns: 1fr; gap: 42px; }
    .page-hero-grid, .portfolio-detail { grid-template-columns: 1fr; gap: 42px; }
    .portfolio-detail:nth-child(even) .portfolio-visual { order: initial; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 580px) {
    body { font-size: 15px; padding-bottom: 72px; }
    .shell { width: min(calc(100% - 30px), var(--shell)); }
    .section { padding: 68px 0; }
    .brand { font-size: 1rem; }
    .brand-mark { width: 31px; height: 31px; }
    .sales-hero-grid { gap: 42px; padding-top: 116px; padding-bottom: 46px; }
    .sales-hero-copy h1 { margin-bottom: 17px; font-size: clamp(2.35rem, 11vw, 3rem); }
    .sales-hero-lead { margin-bottom: 24px; font-size: .96rem; }
    .sales-hero-actions { margin-bottom: 0; }
    .sales-hero-actions .button { width: 100%; }
    .sales-hero-actions .button-ghost-light, .hero-facts { display: none; }
    .hero-showcase { width: calc(100% - 5px); padding: 14px 0 44px; }
    .showcase-browser { transform: none; }
    .showcase-image { aspect-ratio: 1.06; }
    .showcase-site-copy { width: 70%; }
    .showcase-site-copy strong { font-size: 1.5rem; }
    .showcase-badge { min-width: 195px; padding: 10px 12px; }
    .showcase-speed { top: 0; right: -7px; }
    .showcase-care { right: -7px; bottom: 5px; }
    .scan-strip { padding: 34px 0; }
    .scan-strip-copy { display: block; }
    .scan-icon { margin-bottom: 13px; }
    .scan-inline .scan-form, .form-split { grid-template-columns: 1fr; }
    .scan-inline .form-split { grid-column: auto; }
    .scan-inline .button { grid-column: auto; }
    .section-head-simple h2, .process-intro h2, .care-new-copy h2, .faq-layout-new h2, .final-cta-new-grid h2, .final-copy h2 { font-size: 2.45rem; }
    .deliverables-grid { grid-template-columns: 1fr; }
    .deliverables-grid article { min-height: 0; }
    .deliverables-grid article > span { margin-bottom: 24px; }
    .portfolio-home-grid { grid-template-columns: 1fr; gap: 42px; }
    .portfolio-home-card:last-child { display: block; }
    .portfolio-home-copy > span { min-height: 0; }
    .process-steps li { grid-template-columns: 42px 1fr; gap: 14px; }
    .process-steps li > span { width: 36px; height: 36px; }
    .process-steps li > div { grid-template-columns: 1fr; }
    .process-steps small { grid-column: 1; grid-row: auto; margin-top: 8px; }
    .care-new-copy ul { grid-template-columns: 1fr; }
    .care-portal-body { padding: 23px; }
    .care-status { right: -7px; bottom: -42px; min-width: 235px; }
    .price-card-new { padding: 27px; }
    .custom-solutions { grid-template-columns: 1fr; gap: 19px; padding: 24px; }
    .custom-solutions-icon { width: 52px; height: 52px; }
    .custom-solutions-action { grid-column: auto; grid-template-columns: 1fr; justify-items: stretch; }
    .custom-solutions-action > strong { text-align: left; }
    .scan-card { padding: 20px; }
    .scan-modal { padding: 12px; }
    .scan-modal-dialog { max-height: calc(100vh - 24px); gap: 22px; padding: 29px 18px 20px; border-radius: 16px; }
    .scan-modal-heading h2 { padding-right: 24px; font-size: 2.15rem; }
    .scan-modal-form { padding: 17px; }
    .contact-section { padding: 68px 0; }
    .contact-section-copy h2 { font-size: 2.45rem; }
    .contact-options > a { grid-template-columns: 42px minmax(0, 1fr) auto; padding: 14px; }
    .contact-options strong { overflow-wrap: anywhere; font-size: .78rem; }
    .page-hero { padding: 135px 0 66px; }
    .page-hero h1, .legal-wrap h1 { font-size: 3.1rem; }
    .portfolio-cases { gap: 65px; }
    .legal-page { padding: 130px 0 75px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 28px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { display: grid; gap: 5px; }
    .mobile-scan-bar { position: fixed; z-index: 90; right: 0; bottom: 0; left: 0; display: block; padding: 10px 15px; border-top: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); transform: translateY(110%); transition: transform .22s ease; }
    .mobile-scan-bar.is-visible { transform: none; }
    .mobile-scan-bar .button { width: 100%; min-height: 50px; }
}

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