:root {
    --ink: #090b0f;
    --ink-soft: #151922;
    --muted: #596579;
    --paper: #ffffff;
    --paper-deep: #f5f7fa;
    --surface: #ffffff;
    --surface-soft: #eef2f7;
    --night: #071a35;
    --night-soft: #102b52;
    --brand: #ffd400;
    --brand-hover: #e5bd00;
    --teal: #123f73;
    --teal-soft: #e7eef7;
    --border: #cbd4df;
    --border-dark: rgba(255, 255, 255, 0.14);
    --danger: #090b0f;
    --success: #071a35;
    --shadow-sm: 0 10px 30px rgba(7, 26, 51, 0.09);
    --shadow-lg: 0 32px 90px rgba(7, 26, 51, 0.18);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 30px;
    --shell: min(1180px, calc(100% - 48px));
    --display: "Space Grotesk", system-ui, sans-serif;
    --body: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

main {
    min-height: 60vh;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 4px;
}

.section-dark :focus-visible,
.footer-cta :focus-visible,
.site-footer :focus-visible,
.utility-bar :focus-visible {
    outline-color: var(--brand);
}

::selection {
    background: var(--brand);
    color: var(--ink);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    border-radius: 8px;
    background: var(--brand);
    color: var(--ink);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(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;
}

h1,
h2,
h3 {
    margin: 0 0 18px;
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.048em;
    text-wrap: balance;
}

h1 {
    max-width: 980px;
    font-size: clamp(3rem, 7vw, 6.8rem);
}

h2 {
    font-size: clamp(2.25rem, 4.6vw, 4.5rem);
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    letter-spacing: -0.035em;
}

p {
    margin: 0 0 20px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--teal);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 3px;
    border-radius: 99px;
    background: currentColor;
    content: "";
}

.micro {
    color: var(--muted);
    font-size: 0.77rem;
    line-height: 1.65;
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 22px;
    border: 1px solid var(--ink);
    border-radius: var(--radius-sm);
    background: var(--ink);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--night-soft);
}

.btn span:last-child {
    font-size: 1rem;
}

.btn-small {
    min-height: 44px;
    padding-inline: 17px;
    font-size: 0.79rem;
}

.btn-brand,
.btn-copper {
    border-color: var(--brand);
    background: var(--brand);
    color: var(--ink);
}

.btn-brand:hover,
.btn-copper:hover {
    border-color: var(--brand-hover);
    background: var(--brand-hover);
}

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

.btn-outline:hover {
    border-color: var(--ink);
    background: var(--surface);
}

.btn-light {
    border-color: var(--surface);
    background: var(--surface);
    color: var(--ink);
}

.btn-light:hover {
    border-color: var(--brand);
    background: var(--brand);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(7, 26, 51, 0.12);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(7, 26, 51, 0.1);
}

.utility-bar {
    background: var(--night);
    color: #fff;
}

.utility-inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
}

.utility-inner p {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #c8d2df;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.16);
}

.utility-inner a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e2e8f0;
}

.utility-inner a:hover strong {
    color: var(--brand);
}

.nav-shell {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 11px;
    background: var(--brand);
    color: var(--ink);
    font-family: var(--display);
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.08em;
    transform: rotate(-3deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-copy strong {
    font-family: var(--display);
    font-size: 1.08rem;
    letter-spacing: -0.045em;
}

.brand-copy small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.primary-nav a {
    position: relative;
    padding: 27px 0 25px;
    color: var(--ink-soft);
    font-size: 0.79rem;
    font-weight: 600;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 19px;
    left: 0;
    height: 3px;
    border-radius: 99px;
    background: var(--teal);
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"],
.primary-nav a.is-active {
    color: var(--ink);
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after,
.primary-nav a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-cta {
    flex: 0 0 auto;
}

.menu-toggle {
    display: none;
    min-height: 44px;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
}

.menu-icon {
    display: grid;
    width: 18px;
    gap: 5px;
}

.menu-icon i {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Home hero */
.hero {
    position: relative;
    padding: clamp(64px, 8vw, 112px) 0 88px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: -220px;
    left: -180px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(23, 63, 107, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(23, 63, 107, 0.04), 0 0 0 160px rgba(23, 63, 107, 0.025);
    content: "";
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.78fr);
    align-items: center;
    gap: clamp(38px, 7vw, 88px);
}

.hero-copy h1 {
    max-width: 720px;
    font-size: clamp(3.2rem, 6.6vw, 6.7rem);
    line-height: 0.94;
}

.hero-copy > p {
    max-width: 650px;
    margin-top: 26px;
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 26px;
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 600;
}

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

.hero-detail span::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    content: "";
}

.hero-visual {
    position: relative;
    padding: 22px 22px 0 0;
}

.hero-visual::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 76%;
    height: 76%;
    border-radius: 18px 74px 18px 18px;
    background: var(--brand);
    content: "";
}

.hero-card {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 18px 74px 18px 18px;
    background: var(--night);
    box-shadow: var(--shadow-lg);
}

.hero-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 10, 0.02) 40%, rgba(7, 26, 51, 0.94) 100%);
    content: "";
}

.hero-badge {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    left: 28px;
    color: #fff;
}

.hero-badge strong {
    display: block;
    max-width: 360px;
    margin-bottom: 8px;
    font-family: var(--display);
    font-size: 1.55rem;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.hero-badge span {
    display: block;
    max-width: 390px;
    color: #d5dfeb;
    font-size: 0.77rem;
}

.hero-index {
    position: absolute;
    z-index: 3;
    top: 26px;
    left: 26px;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: rgba(7, 26, 51, 0.55);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    backdrop-filter: blur(12px);
}

.trust-strip {
    position: relative;
    z-index: 3;
    background: var(--night);
    color: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    min-height: 120px;
    padding: 28px 26px;
    border-right: 1px solid var(--border-dark);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;
    margin-bottom: 7px;
    font-family: var(--display);
    font-size: 0.98rem;
    letter-spacing: -0.025em;
}

.trust-item span {
    color: #b9c5d4;
    font-size: 0.73rem;
}

/* Shared sections */
.section {
    padding: clamp(78px, 9vw, 126px) 0;
}

.section-tight {
    padding-top: 0;
}

.section-soft {
    background: var(--paper-deep);
}

.section-dark {
    position: relative;
    overflow: hidden;
    background: var(--night);
    color: #fff;
}

.section-dark::after {
    position: absolute;
    right: -220px;
    bottom: -300px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 212, 0, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255, 212, 0, 0.03), 0 0 0 180px rgba(255, 212, 0, 0.02);
    content: "";
}

.section-dark .shell {
    position: relative;
    z-index: 1;
}

.section-dark .eyebrow {
    color: var(--brand);
}

.section-dark p {
    color: #c4cfdd;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 56px;
    margin-bottom: 48px;
}

.section-head > div:first-child {
    max-width: 820px;
}

.section-head p {
    max-width: 480px;
    margin-bottom: 8px;
    color: var(--muted);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cards.two-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    position: relative;
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--teal);
    content: "";
}

.card:nth-child(2)::before {
    background: var(--brand);
}

.card:nth-child(3)::before {
    background: var(--ink);
}

.card:hover {
    border-color: #aeb9c8;
    box-shadow: 0 18px 48px rgba(7, 26, 51, 0.13);
    transform: translateY(-5px);
}

.card .num {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    margin-bottom: 54px;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--teal);
    font-size: 0.72rem;
    font-weight: 700;
}

.card p {
    color: var(--muted);
    font-size: 0.91rem;
}

.card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
}

.card a:hover {
    color: var(--teal);
}

.section-dark .card {
    border-color: var(--border-dark);
    background: var(--night-soft);
    box-shadow: none;
}

.section-dark .card p {
    color: #c4cfdd;
}

.image-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(46px, 8vw, 96px);
}

.image-frame {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: 70px 18px 18px 18px;
    background: var(--night-soft);
    box-shadow: var(--shadow-lg);
}

.image-frame::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.image-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.check-list {
    display: grid;
    margin: 30px 0 0;
}

.check {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 19px 0;
    border-top: 1px solid var(--border);
}

.check:last-child {
    border-bottom: 1px solid var(--border);
}

.check b {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal);
    font-size: 0.72rem;
}

.check strong {
    display: block;
    margin: 1px 0 4px;
    font-family: var(--display);
    font-size: 1.02rem;
    letter-spacing: -0.025em;
}

.check p {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.section-dark .check {
    border-color: var(--border-dark);
}

.section-dark .check b {
    background: var(--brand);
    color: var(--ink);
}

.section-dark .check p {
    color: #d2dbe7;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    counter-reset: step;
    border-top: 1px solid var(--border);
}

.step {
    position: relative;
    min-height: 270px;
    padding: 30px 26px;
    border-right: 1px solid var(--border);
    counter-increment: step;
}

.step:last-child {
    border-right: 0;
}

.step::before {
    display: block;
    margin-bottom: 70px;
    color: var(--teal);
    content: "0" counter(step);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.step p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

/* Inner pages */
.page-hero {
    position: relative;
    padding: clamp(76px, 9vw, 132px) 0 clamp(58px, 7vw, 92px);
    overflow: hidden;
}

.page-hero::after {
    position: absolute;
    z-index: -1;
    top: 40px;
    right: max(24px, calc((100vw - 1180px) / 2));
    width: 190px;
    height: 190px;
    border: 1px solid rgba(23, 63, 107, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(23, 63, 107, 0.04), 0 0 0 100px rgba(23, 63, 107, 0.025);
    content: "";
}

.page-hero .shell {
    position: relative;
}

.page-hero h1 {
    max-width: 980px;
    font-size: clamp(3.2rem, 7.4vw, 7rem);
}

.page-hero p {
    max-width: 760px;
    margin-top: 26px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.photo-banner {
    position: relative;
    width: var(--shell);
    height: min(46vw, 520px);
    min-height: 360px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 18px 80px 18px 18px;
    background: var(--night-soft);
    box-shadow: var(--shadow-lg);
}

.photo-banner::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(7, 26, 51, 0.18), transparent 60%);
    content: "";
    pointer-events: none;
}

.photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: start;
    gap: clamp(48px, 8vw, 98px);
}

.content-grid > div > h2:not(:first-child) {
    margin-top: 58px;
}

.content-grid > div > p {
    max-width: 760px;
    color: var(--muted);
}

.content-grid aside {
    position: sticky;
    top: 136px;
    padding: 30px;
    border: 1px solid var(--border);
    border-top: 6px solid var(--brand);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.content-grid aside h3 {
    font-size: 1.4rem;
}

.content-grid aside p,
.content-grid aside li {
    color: var(--muted);
    font-size: 0.86rem;
}

.content-grid aside ul {
    padding-left: 20px;
    margin: 22px 0 26px;
}

.content-grid aside li {
    margin-bottom: 9px;
}

.content-grid aside .btn {
    margin-top: 8px;
}

.service-table {
    border-top: 1px solid var(--border);
}

.service-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1.35fr);
    gap: 38px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.service-row h2,
.service-row h3 {
    margin: 0;
    font-size: 1.35rem;
}

.service-row p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.service-row a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 700;
}

.service-row a:hover {
    color: var(--ink);
}

.quote-panel {
    position: relative;
    padding: clamp(34px, 6vw, 70px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--teal);
    color: #fff;
}

.quote-panel h2 {
    max-width: 800px;
}

.quote-panel p {
    max-width: 680px;
    color: #dbe5f1;
}

.quote-panel .eyebrow {
    color: var(--brand);
}

.faq {
    display: grid;
    max-width: 940px;
    margin-inline: auto;
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item h2 {
    margin: 0;
    font: inherit;
    letter-spacing: normal;
}

.faq-q {
    display: flex;
    width: 100%;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 2px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--display);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    text-align: left;
}

.faq-q span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--teal);
    font-family: var(--body);
    font-size: 1.2rem;
    transition: background-color 180ms ease, transform 180ms ease;
}

.faq-q:hover span {
    background: var(--brand);
}

.faq-item.open .faq-q span {
    background: var(--brand);
    color: var(--ink);
    transform: rotate(45deg);
}

.faq-a {
    max-width: 780px;
    padding: 0 58px 26px 2px;
    color: var(--muted);
    font-size: 0.91rem;
}

.faq-a p:last-child {
    margin-bottom: 0;
}

.faq-a[hidden] {
    display: none;
}

.form-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
    align-items: start;
    gap: clamp(48px, 8vw, 98px);
}

.contact-form {
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.field label {
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #aab5c4;
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    font-size: 0.9rem;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #5f6d80;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
    border-color: #78869a;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--teal);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(23, 63, 107, 0.15);
}

.field-hint {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 0.71rem;
}

.honeypot {
    position: absolute;
    left: -10000px;
}

.notice {
    margin-bottom: 22px;
    padding: 14px 16px;
    border: 1px solid #9cacc1;
    border-radius: var(--radius-sm);
    background: #edf2f8;
    color: var(--success);
    font-size: 0.85rem;
}

.notice.error {
    border-color: #d5b400;
    background: #fff7cc;
    color: var(--danger);
}

.form-privacy {
    margin: 14px 0 0;
}

.form-privacy a {
    color: var(--teal);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy {
    max-width: 860px;
}

.policy h2 {
    margin-top: 52px;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.policy h2:first-child {
    margin-top: 0;
}

.policy h3 {
    margin-top: 32px;
    font-size: 1.35rem;
}

.policy p,
.policy li {
    color: var(--muted);
}

.policy ul {
    padding-left: 22px;
}

/* Footer */
.footer-cta {
    background: var(--teal);
    color: #fff;
}

.footer-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
    align-items: end;
    gap: 70px;
    padding-block: clamp(62px, 8vw, 96px);
}

.footer-cta .eyebrow {
    color: #fff;
}

.footer-cta h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.footer-cta-action p {
    color: #e7eef7;
    font-size: 0.9rem;
}

.site-footer {
    padding: 72px 0 26px;
    background: var(--night);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.55fr) repeat(3, minmax(140px, 0.65fr));
    gap: clamp(30px, 5vw, 66px);
}

.footer-intro > p {
    max-width: 430px;
    margin: 24px 0;
    color: #b9c5d4;
    font-size: 0.85rem;
}

.footer-brand .brand-copy small {
    color: #a7b6c8;
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d7e0eb;
    font-size: 0.72rem;
}

.footer-note i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
}

.footer-nav h2 {
    margin: 6px 0 22px;
    color: #fff;
    font-family: var(--body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-nav a {
    display: block;
    width: fit-content;
    margin: 10px 0;
    color: #c0cad7;
    font-size: 0.8rem;
}

.footer-nav a:hover {
    color: var(--brand);
}

.footer-nav p {
    max-width: 220px;
    margin-top: 18px;
    color: #91a1b5;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 62px;
    padding-top: 24px;
    border-top: 1px solid var(--border-dark);
    color: #91a1b5;
    font-size: 0.72rem;
}

@media (max-width: 1080px) {
    .primary-nav {
        gap: 18px;
    }

    .nav-cta {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
        gap: 48px;
    }

    .hero-card {
        min-height: 520px;
    }
}

@media (max-width: 900px) {
    :root {
        --shell: min(100% - 38px, 720px);
    }

    .js .menu-toggle {
        display: inline-flex;
    }

    .nav-shell {
        position: relative;
        flex-wrap: wrap;
    }

    .primary-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 18px;
        margin: 0;
    }

    .js .primary-nav {
        position: absolute;
        top: calc(100% - 1px);
        right: -10px;
        left: -10px;
        display: none;
        width: auto;
        max-height: calc(100vh - 110px);
        padding: 12px;
        overflow-y: auto;
        border: 1px solid var(--border);
        border-radius: 0 0 18px 18px;
        background: var(--surface);
        box-shadow: var(--shadow-lg);
    }

    .js .primary-nav.open {
        display: flex;
    }

    .primary-nav a {
        padding: 13px 12px;
        border-radius: 8px;
        font-size: 0.84rem;
    }

    .primary-nav a::after {
        display: none;
    }

    .primary-nav a:hover,
    .primary-nav a[aria-current="page"],
    .primary-nav a.is-active {
        background: var(--surface-soft);
    }

    .hero-grid,
    .image-split,
    .content-grid,
    .form-wrap,
    .footer-cta-inner {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 54px;
    }

    .hero-copy h1 {
        max-width: 680px;
    }

    .hero-visual {
        width: min(100%, 590px);
        margin-left: auto;
    }

    .hero-card {
        min-height: 620px;
    }

    .section-head {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards .card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .image-split .image-frame {
        order: -1;
    }

    .content-grid aside {
        position: static;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step:nth-child(2) {
        border-right: 0;
    }

    .step:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .footer-cta-inner {
        align-items: start;
        gap: 28px;
    }

    .footer-cta-action {
        max-width: 520px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-intro {
        grid-column: 1 / -1;
        padding-bottom: 12px;
    }
}

@media (max-width: 620px) {
    :root {
        --shell: min(100% - 28px, 560px);
    }

    body {
        font-size: 15px;
    }

    .utility-bar {
        display: none;
    }

    .nav-shell {
        min-height: 70px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .brand-copy small {
        display: none;
    }

    .menu-toggle {
        padding-inline: 12px;
    }

    .hero {
        padding: 58px 0 66px;
    }

    .hero::before {
        opacity: 0.55;
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 15.7vw, 4.7rem);
    }

    .hero-copy > p {
        margin-top: 20px;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-detail {
        display: grid;
        gap: 8px;
    }

    .hero-visual {
        padding: 14px 14px 0 0;
    }

    .hero-card {
        min-height: 440px;
        border-radius: 14px 52px 14px 14px;
    }

    .hero-visual::before {
        border-radius: 14px 52px 14px 14px;
    }

    .hero-index {
        top: 18px;
        left: 18px;
        width: 50px;
        height: 50px;
    }

    .hero-badge {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        min-height: 112px;
        padding: 23px 18px;
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border-dark);
    }

    .section {
        padding: 72px 0;
    }

    .section-tight {
        padding-top: 0;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .cards,
    .cards.two-up {
        grid-template-columns: 1fr;
    }

    .cards .card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .card {
        min-height: 280px;
        padding: 26px;
    }

    .card .num {
        margin-bottom: 42px;
    }

    .image-frame {
        min-height: 390px;
        border-radius: 48px 14px 14px 14px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step,
    .step:nth-child(2) {
        min-height: 0;
        padding: 28px 4px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .step::before {
        margin-bottom: 34px;
    }

    .page-hero {
        padding: 64px 0 54px;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 15.7vw, 4.8rem);
    }

    .page-hero::after {
        opacity: 0.55;
    }

    .photo-banner {
        height: 390px;
        min-height: 0;
        border-radius: 14px 52px 14px 14px;
    }

    .content-grid {
        gap: 48px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 26px 0;
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 22px;
    }

    .faq-q {
        min-height: 76px;
        font-size: 1rem;
    }

    .faq-a {
        padding-right: 4px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-intro,
    .footer-nav:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        margin-top: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
