/**
 * Service Landing Page styles
 * Next Assurance & Advisory — SEO landing template
 * Brand: #003759 (navy) / #095ab3 (blue)
 */

.na-lp {
    --na-navy: #003759;
    --na-blue: #095ab3;
    --na-navy-900: #002740;
    --na-ink: #10263a;
    --na-body: #465767;
    --na-muted: #6b7c8c;
    --na-line: #dbe6f0;
    --na-soft: #eef5fb;
    --na-soft-2: #e2eefa;
    --na-radius: 16px;
    --na-shadow: 0 2px 4px rgba(0, 55, 89, .04), 0 12px 32px rgba(0, 55, 89, .08);
    --na-shadow-lg: 0 8px 20px rgba(0, 55, 89, .09), 0 24px 60px rgba(0, 55, 89, .14);

    /* Repeating brand textures so no band is ever flat white */
    --na-dots: radial-gradient(rgba(9, 90, 179, .09) 1.4px, transparent 1.4px);
    --na-grid: linear-gradient(rgba(9, 90, 179, .045) 1px, transparent 1px),
               linear-gradient(90deg, rgba(9, 90, 179, .045) 1px, transparent 1px);

    color: var(--na-body);
    font-size: 17px;
    line-height: 1.72;
    overflow-x: clip;
    background: #fff;
}

.na-lp *,
.na-lp *::before,
.na-lp *::after { box-sizing: border-box; }

.na-lp img { max-width: 100%; height: auto; }

.na-container {
    width: 100%;
    max-width: 1240px;
    margin-inline: auto;
    padding-inline: 20px;
}

.na-container--narrow { max-width: 920px; }

/* ---------- Typography ---------- */

.na-lp h2,
.na-lp h3,
.na-lp h4 {
    color: var(--na-navy);
    font-weight: 700;
    letter-spacing: -.015em;
    margin: 0 0 14px;
    text-transform: none;
}

.na-lp h2 { font-size: clamp(27px, 3.1vw, 40px); line-height: 1.18; }
.na-lp h3 { font-size: clamp(19px, 1.9vw, 22px); line-height: 1.3; }
.na-lp p { margin: 0 0 16px; }
.na-lp p:last-child { margin-bottom: 0; }
.na-lp a { color: var(--na-blue); }

.na-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--na-blue);
    background: rgba(9, 90, 179, .09);
    border-radius: 999px;
    padding: 6px 15px;
    margin-bottom: 14px;
}

.na-lead {
    font-size: clamp(16.5px, 1.4vw, 18.5px);
    line-height: 1.68;
    color: var(--na-body);
}

/* ---------- Section shells ---------- */

.na-section {
    padding: clamp(48px, 5.4vw, 82px) 0;
    position: relative;
    isolation: isolate;
}

.na-section--soft {
    background-color: var(--na-soft);
    background-image: var(--na-dots);
    background-size: 22px 22px;
}

.na-section--lines {
    background-color: #fff;
    background-image: var(--na-grid);
    background-size: 46px 46px;
}

/* Full-bleed photo band with a navy wash over it */
.na-section--photo {
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.na-section--photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 39, 64, .96) 0%, rgba(0, 55, 89, .94) 50%, rgba(9, 90, 179, .88) 100%);
    z-index: -1;
}

.na-lp .na-section--photo h2,
.na-lp .na-section--photo h3 { color: #fff; }
.na-section--photo .na-lead,
.na-section--photo p { color: rgba(255, 255, 255, .87); }
.na-section--photo .na-eyebrow { color: #8ecbfa; background: rgba(255, 255, 255, .13); }

.na-section-head { max-width: 820px; margin-bottom: 38px; }
.na-section-head--center { margin-inline: auto; text-align: center; }
.na-section-head p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */

.na-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
    cursor: pointer;
}

.na-btn:hover { transform: translateY(-2px); text-decoration: none; }
.na-btn:focus-visible { outline: 3px solid #7db8e8; outline-offset: 3px; }

.na-btn--primary {
    background: var(--na-blue);
    border-color: var(--na-blue);
    color: #fff;
    box-shadow: 0 8px 22px rgba(9, 90, 179, .32);
}

.na-btn--primary:hover { background: #0b68cc; border-color: #0b68cc; color: #fff; }

.na-btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .5); color: #fff; }
.na-btn--ghost:hover { background: #fff; border-color: #fff; color: var(--na-navy); }

.na-btn--outline { background: #fff; border-color: var(--na-navy); color: var(--na-navy); }
.na-btn--outline:hover { background: var(--na-navy); color: #fff; }

/* Anchor-qualified so the generic `.na-lp a` colour cannot win over button text. */
.na-lp a.na-btn--primary,
.na-lp a.na-btn--primary:hover,
.na-lp a.na-btn--primary:focus,
.na-lp a.na-btn--ghost,
.na-lp a.na-btn--ghost:focus { color: #fff; }

.na-lp a.na-btn--ghost:hover,
.na-lp a.na-btn--outline { color: var(--na-navy); }
.na-lp a.na-btn--outline:hover { color: #fff; }

/* ---------- Hero (copy + form, side by side) ---------- */

.na-hero {
    position: relative;
    background: var(--na-navy);
    background-size: cover;
    background-position: center;
    padding: clamp(44px, 4.6vw, 68px) 0 clamp(52px, 5vw, 76px);
    overflow: hidden;
    isolation: isolate;
}

.na-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(102deg, rgba(0, 30, 51, .97) 0%, rgba(0, 55, 89, .95) 46%, rgba(9, 90, 179, .82) 100%);
    z-index: -1;
}

.na-hero::after {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9, 90, 179, .5) 0%, rgba(9, 90, 179, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.na-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    gap: clamp(30px, 3.6vw, 54px);
    align-items: center;
}

.na-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .27);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 7px 15px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.na-hero__badge svg { flex: none; }

.na-lp .na-hero h1 {
    color: #fff;
    font-size: clamp(30px, 3.5vw, 46px);
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: none;
    text-shadow: none;
    margin: 0 0 16px;
    padding: 0;
    text-align: left;
}

.na-hero__sub {
    color: rgba(255, 255, 255, .88);
    font-size: clamp(15.5px, 1.35vw, 17.5px);
    line-height: 1.65;
    margin: 0 0 24px;
}

.na-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }

.na-hero__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 22px;
    list-style: none;
    margin: 0;
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.na-hero__points li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: rgba(255, 255, 255, .9);
    font-size: 14.5px;
    line-height: 1.45;
    font-weight: 500;
}

.na-hero__points svg { flex: none; margin-top: 3px; color: #8ecbfa; }

/* ---------- Stat bar ---------- */

.na-statband {
    background: linear-gradient(180deg, var(--na-soft) 0%, #fff 100%);
    padding: 0 0 clamp(34px, 4vw, 54px);
}

/* The theme stylesheet puts z-index:9 on section shells, which would paint the
   hero over the stat card that deliberately overlaps it. Pin both explicitly. */
.na-lp .na-hero { z-index: 1; }

.na-lp .na-statband { position: relative; z-index: 20; }

.na-lp .na-stats {
    background: #fff;
    border: 1px solid var(--na-line);
    border-radius: var(--na-radius);
    box-shadow: var(--na-shadow);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    margin-top: -38px;
    position: relative;
    z-index: 21;
}

.na-stat {
    padding: 26px 22px;
    border-right: 1px solid var(--na-line);
    text-align: center;
}

.na-stat:last-child { border-right: 0; }

.na-stat__value {
    display: block;
    font-size: clamp(21px, 2vw, 27px);
    font-weight: 700;
    color: var(--na-navy);
    line-height: 1.15;
    margin-bottom: 5px;
}

.na-stat__label { font-size: 13.5px; color: var(--na-muted); line-height: 1.45; display: block; }

/* ---------- Split (text + image) ---------- */

.na-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 58px);
    align-items: center;
}

.na-split--reverse .na-split__media { order: -1; }

.na-split__media { position: relative; }

.na-split__media img {
    width: 100%;
    border-radius: var(--na-radius);
    display: block;
    box-shadow: var(--na-shadow-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.na-split__media::after {
    content: "";
    position: absolute;
    inset: auto -14px -14px auto;
    width: 58%;
    height: 58%;
    border: 2px solid var(--na-blue);
    border-radius: var(--na-radius);
    opacity: .3;
    z-index: -1;
}

.na-split--reverse .na-split__media::after { inset: auto auto -14px -14px; }

.na-checklist { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 10px; }

.na-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--na-ink);
    font-size: 15.5px;
    line-height: 1.55;
}

.na-checklist svg { flex: none; margin-top: 4px; color: var(--na-blue); }
.na-section--photo .na-checklist li { color: rgba(255, 255, 255, .92); }
.na-section--photo .na-checklist svg { color: #8ecbfa; }

/* ---------- Grids: exactly as many columns as there are items ---------- */

.na-grid { display: grid; gap: 20px; }

.na-grid--1 { grid-template-columns: minmax(0, 1fr); }
.na-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.na-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.na-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.na-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.na-grid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.na-grid--7 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.na-grid--8 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.na-grid--9 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.na-grid--10 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.na-grid--11 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* 7 and 11 divide into nothing tidy, so a strict grid strands the trailing row
   against the left edge with dead cells beside it. Switch those two counts to a
   centred flex wrap: the short last row sits balanced under the full one. */
.na-grid--7,
.na-grid--11 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.na-grid--7 > *,
.na-grid--11 > * { flex: 0 1 calc(25% - 15px); }
.na-grid--12 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* At five columns a service card is too narrow for the icon-beside-text layout,
   so stack it. Keeps a 10-item row filling exactly two rows with no dead cells. */
.na-grid--10 .na-serviceitem { flex-direction: column; gap: 14px; }

/* ---------- Cards ---------- */

.na-card {
    background: #fff;
    border: 1px solid var(--na-line);
    border-radius: var(--na-radius);
    padding: 28px 24px;
    position: relative;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    overflow: hidden;
}

.na-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--na-navy), var(--na-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.na-card:hover { transform: translateY(-5px); box-shadow: var(--na-shadow-lg); border-color: #bcd7ec; }
.na-card:hover::before { transform: scaleX(1); }

.na-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--na-soft-2), #d3e7f8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--na-navy);
    transition: background .22s ease, color .22s ease;
}

.na-card:hover .na-card__icon {
    background: linear-gradient(135deg, var(--na-navy), var(--na-blue));
    color: #fff;
}

.na-lp .na-card h3 { font-size: 18px; margin-bottom: 9px; line-height: 1.35; }
.na-card p { font-size: 15px; line-height: 1.65; margin: 0; }

/* ---------- Service items ---------- */

.na-serviceitem {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--na-line);
    border-radius: var(--na-radius);
    padding: 26px 22px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.na-serviceitem:hover { transform: translateY(-4px); box-shadow: var(--na-shadow-lg); border-color: #bcd7ec; }

.na-serviceitem__icon {
    flex: none;
    width: 50px;
    height: 50px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--na-soft-2), #d3e7f8);
    color: var(--na-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .22s ease, color .22s ease;
}

.na-serviceitem:hover .na-serviceitem__icon {
    background: linear-gradient(135deg, var(--na-navy), var(--na-blue));
    color: #fff;
}

/* Reserve room for the ghosted index in the corner so the heading never runs
   under it — noticeable once the grid drops to 4 narrow columns. */
.na-lp .na-serviceitem h3 { font-size: 17.5px; margin-bottom: 7px; line-height: 1.35; padding-right: 44px; }
.na-serviceitem p { font-size: 15px; line-height: 1.65; margin: 0; }

/* ---------- Process steps ---------- */

.na-step {
    position: relative;
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--na-radius);
    padding: 26px 22px;
    backdrop-filter: blur(6px);
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.na-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .32);
}

.na-step__num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    color: var(--na-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.na-lp .na-step h3 { font-size: 17px; margin-bottom: 8px; color: #fff; line-height: 1.35; }
.na-step p { font-size: 14.5px; line-height: 1.65; margin: 0; color: rgba(255, 255, 255, .84); }

/* ---------- Why choose (dark band) ---------- */

.na-why {
    background: linear-gradient(130deg, var(--na-navy-900) 0%, var(--na-navy) 48%, #064a8f 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.na-why::after {
    content: "";
    position: absolute;
    left: -200px;
    bottom: -220px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9, 90, 179, .5) 0%, rgba(9, 90, 179, 0) 70%);
    z-index: -1;
}

.na-lp .na-why h2,
.na-lp .na-why h3 { color: #fff; }
.na-why .na-eyebrow { color: #8ecbfa; background: rgba(255, 255, 255, .13); }
.na-why .na-lead { color: rgba(255, 255, 255, .86); }

.na-why__card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: var(--na-radius);
    padding: 28px 24px;
    backdrop-filter: blur(6px);
    transition: background .22s ease, transform .22s ease, border-color .22s ease;
}

.na-why__card:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-5px);
}

.na-why__card .na-card__icon { background: rgba(255, 255, 255, .14); color: #9fd3ff; }
.na-why__card:hover .na-card__icon { background: #fff; color: var(--na-navy); }
.na-why__card p { color: rgba(255, 255, 255, .82); font-size: 15px; margin: 0; }
.na-lp .na-why__card h3 { font-size: 18px; margin-bottom: 9px; }

/* ---------- Callout ---------- */

.na-callout {
    background: linear-gradient(120deg, #fff 0%, var(--na-soft-2) 100%);
    border: 1px solid #cbdff0;
    border-left: 5px solid var(--na-blue);
    border-radius: var(--na-radius);
    padding: 24px 28px;
    margin-top: 28px;
    box-shadow: var(--na-shadow);
}

.na-callout p { font-size: 15.5px; margin: 0; color: var(--na-ink); }

.na-section--photo .na-callout {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
    border-left-color: #8ecbfa;
    box-shadow: none;
}

.na-section--photo .na-callout p { color: rgba(255, 255, 255, .9); }

/* ---------- FAQ ---------- */

.na-faq { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; }

.na-faq__item {
    background: #fff;
    border: 1px solid var(--na-line);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.na-faq__item[open] { border-color: #a9cee9; box-shadow: var(--na-shadow); }

.na-faq__q {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--na-navy);
    line-height: 1.45;
    list-style: none;
    transition: background .2s ease;
}

.na-faq__q::-webkit-details-marker { display: none; }
.na-faq__q:hover { background: var(--na-soft); }
.na-faq__q:focus-visible { outline: 3px solid #7db8e8; outline-offset: -3px; }

.na-faq__icon {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--na-soft-2);
    color: var(--na-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.na-faq__item[open] .na-faq__icon { transform: rotate(45deg); background: var(--na-blue); color: #fff; }

.na-faq__a { padding: 0 22px 20px; font-size: 15.5px; line-height: 1.7; color: var(--na-body); }
.na-faq__a p { margin: 0; }

/* ---------- CTA + form ---------- */

.na-cta {
    background: linear-gradient(130deg, var(--na-navy-900) 0%, var(--na-navy) 55%, #075197 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.na-cta::after {
    content: "";
    position: absolute;
    right: -180px;
    top: -180px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(9, 90, 179, .5) 0%, rgba(9, 90, 179, 0) 70%);
    z-index: -1;
}

.na-cta__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 1.02fr);
    gap: clamp(30px, 3.6vw, 52px);
    align-items: center;
}

.na-lp .na-cta h2 { color: #fff; }
.na-cta .na-eyebrow { color: #8ecbfa; background: rgba(255, 255, 255, .13); }
.na-cta__text { color: rgba(255, 255, 255, .86); font-size: 16.5px; line-height: 1.7; }

.na-cta__contacts { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }

.na-cta__contacts li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    line-height: 1.55;
}

.na-cta__contacts .na-ic {
    flex: none;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9fd3ff;
}

.na-cta__contacts .na-lbl {
    display: block;
    color: #fff;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .62;
    margin-bottom: 2px;
}

.na-cta__contacts a { color: #fff; text-decoration: none; font-weight: 600; }
.na-cta__contacts a:hover { text-decoration: underline; }

/* Form card — shared by the hero and the closing CTA */

.na-formcard {
    background: #fff;
    border-radius: 18px;
    padding: clamp(22px, 2.2vw, 32px);
    box-shadow: 0 26px 60px rgba(0, 20, 40, .34);
}

.na-formcard--hero { padding: clamp(20px, 1.9vw, 26px); }

/* CF7 markup inside the card.
   Selectors are deliberately specific: the site-wide Customizer CSS styles
   `.talk-to-us-form` for the narrow contact-page layout and would otherwise win. */

.na-lp .na-formcard .talk-to-us-form {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.na-lp .na-formcard .talk-to-us-form .form-heading { margin-bottom: 18px; }

.na-lp .na-formcard .talk-to-us-form .form-heading h2,
.na-lp .na-formcard .talk-to-us-form .form-heading .form-title {
    font-size: 24px;
    line-height: 1.25;
    color: var(--na-navy);
    margin: 0 0 6px;
    font-weight: 700;
    letter-spacing: -.015em;
}

.na-lp .na-formcard--hero .talk-to-us-form .form-heading h2,
.na-lp .na-formcard--hero .talk-to-us-form .form-heading .form-title { font-size: 21px; }

.na-lp .na-formcard .talk-to-us-form .form-heading p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--na-muted);
    margin: 0;
}

.na-lp .na-formcard .talk-to-us-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
}

.na-lp .na-formcard .talk-to-us-form .form-group { width: 100%; margin-bottom: 13px; }
.na-lp .na-formcard .talk-to-us-form .form-group.half { width: 100%; }

.na-lp .na-formcard .talk-to-us-form label {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--na-ink);
    margin: 0 0 6px;
}

.na-lp .na-formcard .talk-to-us-form .wpcf7-form-control-wrap { display: block; }

.na-lp .na-formcard .talk-to-us-form input[type="text"],
.na-lp .na-formcard .talk-to-us-form input[type="email"],
.na-lp .na-formcard .talk-to-us-form input[type="tel"],
.na-lp .na-formcard .talk-to-us-form select,
.na-lp .na-formcard .talk-to-us-form textarea {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 11px 14px;
    border: 1px solid #d3e0ec;
    border-radius: 9px;
    font-size: 14.5px;
    line-height: 1.5;
    font-family: inherit;
    color: var(--na-ink);
    background: #f9fcfe;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.na-lp .na-formcard .talk-to-us-form textarea { height: 92px; min-height: 92px; resize: vertical; }
.na-lp .na-formcard--hero .talk-to-us-form textarea { height: 74px; min-height: 74px; }
.na-lp .na-formcard .talk-to-us-form select { padding-right: 36px; cursor: pointer; }

.na-lp .na-formcard .talk-to-us-form input::placeholder,
.na-lp .na-formcard .talk-to-us-form textarea::placeholder { color: #9aa8b6; opacity: 1; }

.na-lp .na-formcard .talk-to-us-form input[type="text"]:focus,
.na-lp .na-formcard .talk-to-us-form input[type="email"]:focus,
.na-lp .na-formcard .talk-to-us-form input[type="tel"]:focus,
.na-lp .na-formcard .talk-to-us-form select:focus,
.na-lp .na-formcard .talk-to-us-form textarea:focus {
    outline: none;
    border-color: var(--na-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(9, 90, 179, .12);
}

.na-lp .na-formcard .talk-to-us-form .form-submit { margin-top: 6px; }

.na-lp .na-formcard .talk-to-us-form input[type="submit"] {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 22px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--na-navy), var(--na-blue));
    color: #fff;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(9, 90, 179, .3);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.na-lp .na-formcard .talk-to-us-form input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--na-navy), var(--na-blue));
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.na-lp .na-formcard .talk-to-us-form .form-disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: var(--na-muted);
    margin: 12px 0 0;
    text-align: center;
}

.na-lp .na-formcard .talk-to-us-form .wpcf7-not-valid-tip { font-size: 12px; color: #c92a2a; margin-top: 4px; }

.na-lp .na-formcard .talk-to-us-form .wpcf7-response-output {
    margin: 14px 0 0 !important;
    padding: 11px 14px !important;
    border-radius: 8px;
    font-size: 13.5px;
    line-height: 1.5;
}

.na-lp .na-formcard .wpcf7-spinner { display: block; margin: 10px auto 0; }

/* Reassurance strip under the hero form */

.na-formcard__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    margin: 14px 0 0;
    padding: 13px 0 0;
    border-top: 1px solid var(--na-line);
    list-style: none;
}

.na-formcard__trust li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--na-muted);
    font-weight: 500;
}

.na-formcard__trust svg { flex: none; color: var(--na-blue); }

/* ---------- Related services ---------- */

.na-related { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); }

.na-related__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--na-line);
    border-radius: 12px;
    padding: 17px 20px;
    color: var(--na-navy);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.na-related__link:hover {
    border-color: var(--na-blue);
    color: var(--na-blue);
    transform: translateY(-3px);
    box-shadow: var(--na-shadow);
    text-decoration: none;
}

.na-related__link svg { flex: none; }

/* ---------- Sticky mobile CTA ---------- */

.na-stickycta { display: none; }

/* ==========================================================================
   Refinements
   ========================================================================== */

/* ---------- Accent rule under centred section headings ---------- */

.na-section-head--center h2 { position: relative; padding-bottom: 18px; }

.na-section-head--center h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 68px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--na-navy), var(--na-blue));
}

.na-section--photo .na-section-head--center h2::after,
.na-why .na-section-head--center h2::after {
    background: linear-gradient(90deg, #8ecbfa, rgba(142, 203, 250, .25));
}

/* ---------- Cards on a dark band (photo / why) ---------- */

.na-section--photo .na-card {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .17);
    backdrop-filter: blur(6px);
}

.na-lp .na-section--photo .na-card h3 { color: #fff; }
.na-section--photo .na-card p { color: rgba(255, 255, 255, .82); }
.na-section--photo .na-card::before { display: none; }

.na-section--photo .na-card:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .3);
}

.na-section--photo .na-card__icon,
.na-section--photo .na-serviceitem__icon {
    background: rgba(255, 255, 255, .14);
    color: #9fd3ff;
}

.na-section--photo .na-card:hover .na-card__icon,
.na-section--photo .na-serviceitem:hover .na-serviceitem__icon {
    background: #fff;
    color: var(--na-navy);
}

.na-section--photo .na-serviceitem {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .17);
    backdrop-filter: blur(6px);
}

.na-lp .na-section--photo .na-serviceitem h3 { color: #fff; }
.na-section--photo .na-serviceitem p { color: rgba(255, 255, 255, .82); }

.na-section--photo .na-serviceitem:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .3);
}

/* ---------- Numbered index on service cards ---------- */

.na-serviceitem { position: relative; overflow: hidden; }

.na-serviceitem__index {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: var(--na-navy);
    opacity: .08;
    letter-spacing: -.02em;
    pointer-events: none;
    transition: opacity .22s ease;
}

.na-serviceitem:hover .na-serviceitem__index { opacity: .16; }
.na-section--photo .na-serviceitem__index { color: #fff; opacity: .14; }
.na-section--photo .na-serviceitem:hover .na-serviceitem__index { opacity: .24; }

/* ---------- Process as a connected timeline ---------- */

.na-steps { position: relative; }

/* The connector only makes sense when every step sits on one row; a 6+ step
   grid wraps, which would leave the line stranded across the top row alone. */
.na-grid--6.na-steps::before,
.na-grid--7.na-steps::before,
.na-grid--8.na-steps::before,
.na-grid--9.na-steps::before { display: none; }

.na-steps::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 52px; /* matches the vertical centre of the .na-step__num nodes */
    height: 2px;
    background: linear-gradient(90deg, transparent, #c3daed 6%, #c3daed 94%, transparent);
    z-index: 0;
}

.na-lp .na-steps .na-step {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid var(--na-line);
    backdrop-filter: none;
    padding-top: 30px;
}

.na-lp .na-steps .na-step:hover {
    background: #fff;
    border-color: #bcd7ec;
    box-shadow: var(--na-shadow-lg);
}

.na-lp .na-steps .na-step__num {
    background: linear-gradient(135deg, var(--na-navy), var(--na-blue));
    color: #fff;
    box-shadow: 0 0 0 6px var(--na-soft), 0 6px 16px rgba(9, 90, 179, .28);
}

.na-lp .na-steps .na-step h3 { color: var(--na-navy); }
.na-lp .na-steps .na-step p { color: var(--na-body); }

/* Keep the glass treatment when a process block sits on a dark band. */
.na-section--photo .na-steps::before,
.na-why .na-steps::before { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28) 6%, rgba(255, 255, 255, .28) 94%, transparent); }

.na-lp .na-section--photo .na-steps .na-step,
.na-lp .na-why .na-steps .na-step {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .18);
    backdrop-filter: blur(6px);
}

.na-lp .na-section--photo .na-steps .na-step h3,
.na-lp .na-why .na-steps .na-step h3 { color: #fff; }
.na-lp .na-section--photo .na-steps .na-step p,
.na-lp .na-why .na-steps .na-step p { color: rgba(255, 255, 255, .84); }

.na-lp .na-section--photo .na-steps .na-step__num,
.na-lp .na-why .na-steps .na-step__num {
    background: #fff;
    color: var(--na-navy);
    box-shadow: none;
}

/* ---------- Floating badge over a split image ---------- */

.na-split__badge {
    position: absolute;
    left: -18px;
    bottom: -18px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid var(--na-line);
    border-radius: 14px;
    padding: 15px 20px;
    box-shadow: var(--na-shadow-lg);
    max-width: 78%;
}

.na-split--reverse .na-split__badge { left: auto; right: -18px; }

.na-split__badge .na-ic {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--na-navy), var(--na-blue));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.na-split__badge b {
    display: block;
    color: var(--na-navy);
    font-size: 15.5px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 2px;
}

.na-split__badge span {
    display: block;
    color: var(--na-muted);
    font-size: 12.5px;
    line-height: 1.4;
}

/* ---------- Compliance deadline cards ---------- */

.na-deadline {
    background: #fff;
    border: 1px solid var(--na-line);
    border-radius: var(--na-radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.na-deadline:hover {
    transform: translateY(-5px);
    box-shadow: var(--na-shadow-lg);
    border-color: #bcd7ec;
}

.na-deadline__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--na-navy), var(--na-blue));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.na-lp .na-deadline h3 { font-size: 17.5px; line-height: 1.35; margin-bottom: 8px; }

.na-deadline__note {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--na-muted);
    margin: 0 0 16px;
}

.na-deadline__rows {
    list-style: none;
    margin: auto 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--na-line);
    display: grid;
    gap: 12px;
}

.na-deadline__rows li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.na-deadline__label {
    font-size: 14px;
    line-height: 1.45;
    color: var(--na-body);
    flex: 1 1 auto;
    min-width: 0;
}

.na-deadline__date {
    flex: none;
    background: var(--na-soft-2);
    color: var(--na-navy);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.2;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.na-deadline:hover .na-deadline__date {
    background: linear-gradient(135deg, var(--na-navy), var(--na-blue));
    color: #fff;
}

/* ---------- Related links with icons ---------- */

.na-related__link { gap: 12px; }

.na-related__link .na-ic {
    flex: none;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--na-soft-2);
    color: var(--na-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease;
}

.na-related__link:hover .na-ic {
    background: linear-gradient(135deg, var(--na-navy), var(--na-blue));
    color: #fff;
}

.na-related__link span { flex: 1; }

/* ---------- Scroll reveal (progressive enhancement) ---------- */

.na-lp.na-reveal-on [data-na-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s cubic-bezier(.22, .61, .36, 1), transform .6s cubic-bezier(.22, .61, .36, 1);
    will-change: opacity, transform;
}

.na-lp.na-reveal-on [data-na-reveal].na-in {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .na-lp.na-reveal-on [data-na-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---------- Responsive ---------- */

@media (max-width: 1199px) {
    .na-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .na-grid--8 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .na-grid--7 > *, .na-grid--11 > * { flex-basis: calc(33.333% - 14px); }
    .na-grid--10, .na-grid--11, .na-grid--12 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .na-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr); }
}

@media (max-width: 991px) {
    .na-steps::before { display: none; }
    .na-split__badge { position: static; max-width: none; margin-top: 16px; }
    .na-hero__grid { grid-template-columns: 1fr; }
    .na-split { grid-template-columns: 1fr; }
    .na-split--reverse .na-split__media { order: 0; }
    .na-split__media::after { display: none; }
    .na-cta__grid { grid-template-columns: 1fr; }
    .na-faq { grid-template-columns: 1fr; }
    .na-grid--3, .na-grid--4, .na-grid--5,
    .na-grid--6, .na-grid--8, .na-grid--9,
    .na-grid--10, .na-grid--12 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .na-grid--7 > *, .na-grid--11 > * { flex-basis: calc(50% - 10px); }
    .na-related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .na-lp .na-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .na-stat:nth-child(2n) { border-right: 0; }
    .na-stat:nth-child(-n+2) { border-bottom: 1px solid var(--na-line); }
}

@media (max-width: 767px) {
    .na-lp { font-size: 16px; padding-bottom: 74px; }
    .na-section { padding: 44px 0; }
    .na-section-head { margin-bottom: 28px; }
    .na-lp .na-stats { margin-top: 0; grid-template-columns: 1fr; }
    .na-stat { border-right: 0; border-bottom: 1px solid var(--na-line); }
    .na-stat:last-child { border-bottom: 0; }
    .na-statband { padding-top: 34px; }
    .na-hero__points { grid-template-columns: 1fr; }
    .na-hero__actions .na-btn { width: 100%; }
    .na-grid--2, .na-grid--3, .na-grid--4, .na-grid--5,
    .na-grid--6, .na-grid--8, .na-grid--9,
    .na-grid--10, .na-grid--12,
    .na-related { grid-template-columns: 1fr; }
    .na-grid--7 > *, .na-grid--11 > * { flex-basis: 100%; }
    .na-lp .na-formcard .talk-to-us-form .form-row { grid-template-columns: 1fr; }
    .na-faq__q { padding: 17px 18px; font-size: 15.5px; }
    .na-faq__a { padding: 0 18px 18px; font-size: 15px; }
    .na-card, .na-step, .na-serviceitem, .na-why__card { padding: 24px 20px; }
    .na-serviceitem { flex-direction: column; gap: 14px; }
    .na-callout { padding: 20px 22px; }

    .na-stickycta {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        gap: 10px;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
        background: rgba(255, 255, 255, .97);
        border-top: 1px solid var(--na-line);
        box-shadow: 0 -6px 20px rgba(0, 55, 89, .12);
        backdrop-filter: blur(8px);
    }

    .na-stickycta .na-btn { flex: 1; padding: 13px 12px; font-size: 14.5px; }
}

@media (prefers-reduced-motion: reduce) {
    .na-lp *, .na-lp *::before, .na-lp *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
    .na-btn:hover, .na-card:hover, .na-step:hover,
    .na-serviceitem:hover, .na-why__card:hover, .na-related__link:hover { transform: none; }
}

@media print {
    .na-stickycta, .na-hero__actions, .na-formcard { display: none; }
    .na-faq__a { display: block !important; }
}
