:root {
    --bg: #071512;
    --bg-deep: #030a09;
    --surface: rgba(17, 42, 37, 0.88);
    --surface-strong: #173b34;
    --text: #f7f4ec;
    --muted: #b5c3bb;
    --primary: #f2a45f;
    --primary-dark: #d98238;
    --accent: #72d4bd;
    --cream: #f3efe5;
    --ink: #14231f;
    --border: rgba(214, 235, 225, 0.15);
    --shadow: 0 24px 70px rgba(0, 8, 6, 0.28);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 4%, rgba(114, 212, 189, 0.16), transparent 25rem),
        radial-gradient(circle at 95% 20%, rgba(242, 164, 95, 0.13), transparent 22rem),
        linear-gradient(145deg, var(--bg) 0%, #0b211d 48%, var(--bg-deep) 100%);
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.page-shell {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 48px;
}
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(8, 26, 22, 0.82);
    border: 1px solid var(--border);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border-radius: 999px;
    padding: 14px 18px;
    position: sticky;
    top: 14px;
    z-index: 20;
    box-shadow: 0 14px 40px rgba(0, 8, 6, 0.24);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.brand-mark {
    width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
    color: var(--ink);
    background: linear-gradient(135deg, var(--accent), #bce8cf);
    border: 1px solid rgba(255,255,255,0.28);
    box-shadow: 0 8px 22px rgba(114, 212, 189, 0.18);
}
.brand small { display: block; color: var(--muted); font-size: 0.72rem; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { color: var(--muted); font-weight: 500; }
.nav-links a.active, .nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 0; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 4px 0; border-radius: 2px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: 999px; padding: 13px 18px; border: 1px solid var(--border); transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    color: #26170b; background: linear-gradient(135deg, #ffc486, var(--primary));
    border-color: rgba(255, 207, 157, 0.55);
    box-shadow: 0 12px 30px rgba(242, 164, 95, 0.22);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(242, 164, 95, 0.3); }
.btn-small { padding: 10px 14px; }
.hero, .section, .service-card, .solution-card, .step-card, .contact-card, .info-card {
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow: var(--shadow);
}
.hero {
    padding: 26px 26px 26px 52px;
    border-radius: var(--radius-xl);
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
    gap: 42px;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute; inset: -20% auto auto -10%; width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(114,212,189,0.22), transparent 70%);
    filter: blur(12px);
}
.hero > div { align-self: center; position: relative; z-index: 1; padding: 30px 0; }
.hero h1 { max-width: 760px; font-size: clamp(2.35rem, 4.4vw, 4.2rem); letter-spacing: -0.045em; line-height: 1.02; margin: 0 0 18px; }
.hero p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 22px; }
.eyebrow {
    display: inline-block; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-size: 0.8rem; font-weight: 700; margin-bottom: 10px;
}
.hero-stats { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.stat-pill {
    padding: 9px 13px; border-radius: 999px; background: rgba(114,212,189,0.07); border: 1px solid rgba(114,212,189,0.18);
    color: #d9e8e0; font-size: 0.9rem;
}
.hero-visual {
    min-width: 0;
    min-height: 500px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #0a1715;
    border: 1px solid rgba(255,255,255,0.18);
}
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; }
.hero-visual img { position: absolute; inset: 0; object-fit: cover; object-position: 66% center; }
.hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,20,17,.28), transparent 34%), linear-gradient(0deg, rgba(3,10,9,.58), transparent 45%); pointer-events: none; }
.hero-visual figcaption { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 12px; width: fit-content; max-width: calc(100% - 40px); padding: 13px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: rgba(5,20,17,.78); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); color: var(--muted); font-size: .82rem; }
.hero-visual figcaption strong { display: block; color: var(--text); font-size: .92rem; margin-bottom: 2px; }
.visual-status { flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(114,212,189,.12); }
.section { margin-top: 24px; padding: 28px; border-radius: var(--radius-xl); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 18px; }
.section-heading h2 { font-size: 1.5rem; margin: 0; }
.section-heading p { margin: 0; color: var(--muted); }
.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card, .solution-card, .step-card, .info-card { padding: 24px; border-radius: var(--radius-lg); transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.service-card:hover, .solution-card:hover, .info-card:hover { transform: translateY(-3px); border-color: rgba(114,212,189,.28); }
.service-card h3, .solution-card h3, .step-card h3, .info-card h3 { margin-top: 0; }
.service-card p, .solution-card p, .step-card p, .info-card p { color: var(--muted); line-height: 1.7; }
.service-card .tag, .solution-card .tag { color: var(--accent); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; }
.service-icon { width: 48px; height: 48px; margin-bottom: 20px; display: grid; place-items: center; color: var(--accent); border: 1px solid rgba(114,212,189,.22); border-radius: 15px; background: rgba(114,212,189,.09); transition: transform .22s ease, background .22s ease; }
.service-icon svg { width: 25px; height: 25px; display: block; }
.service-card:hover .service-icon { transform: rotate(-3deg) scale(1.05); background: rgba(114,212,189,.15); }
.section .link-row { margin-top: 16px; color: var(--accent); font-weight: 600; }
.services-section { counter-reset: services; background: var(--cream); border-color: rgba(255,255,255,.42); color: var(--ink); }
.services-section .section-heading p { color: #607069; }
.services-section .service-card { counter-increment: services; position: relative; overflow: hidden; background: #fffdf8; border-color: #dbe2db; box-shadow: 0 12px 34px rgba(23, 50, 42, .07); }
.services-section .service-card::after { content: '0' counter(services); position: absolute; top: 17px; right: 19px; color: #c9d4cc; font-weight: 800; letter-spacing: .08em; font-size: .78rem; }
.services-section .service-card:nth-child(2), .services-section .service-card:nth-child(5) { background: #edf7f2; }
.services-section .service-card:nth-child(3), .services-section .service-card:nth-child(6) { background: #fff4e8; }
.services-section .service-card p { color: #607069; }
.services-section .service-card .tag, .services-section .link-row { color: #217866; }
.services-section .service-card h3 { color: var(--ink); font-size: 1.08rem; }
.services-section .service-icon { color: #217866; border-color: rgba(33,120,102,.17); background: rgba(33,120,102,.08); }
.services-section .service-card:hover .service-icon { background: rgba(33,120,102,.14); }
.service-catalog .service-card { position: relative; }
.service-catalog .service-icon { margin-bottom: 18px; }
.approach-section { background: linear-gradient(135deg, rgba(21,59,52,.92), rgba(11,34,29,.92)); }
.quote-section { background: transparent; box-shadow: none; border-color: rgba(114,212,189,.12); }
.quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.quote-card { min-height: 250px; margin: 0; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(23,59,52,.9), rgba(9,29,25,.92)); border: 1px solid rgba(114,212,189,.16); }
.quote-card::before { content: '“'; height: 38px; color: var(--primary); font-family: Georgia, serif; font-size: 4.5rem; line-height: .8; }
.quote-card blockquote { margin: 20px 0 28px; color: var(--text); font-family: Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.45; }
.quote-card figcaption { display: flex; justify-content: space-between; align-items: end; gap: 14px; color: var(--muted); font-size: .78rem; }
.quote-card figcaption strong { color: var(--accent); font-size: .9rem; }
.quote-card figcaption a:hover { color: var(--text); }
.service-catalog .service-card { padding: 0; overflow: hidden; }
.catalog-image { width: 100%; height: 190px; object-fit: cover; border-bottom: 1px solid var(--border); transition: transform .4s ease; }
.service-catalog .service-card:hover .catalog-image { transform: scale(1.025); }
.catalog-card-body { padding: 24px; }
.service-hero { margin-top: 22px; display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); gap: 20px; padding: 22px; border-radius: var(--radius-xl); background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); }
.service-hero-copy { padding: 36px 28px; align-self: center; }
.service-hero h1 { max-width: 720px; margin: 0 0 18px; font-size: clamp(2.35rem, 4.7vw, 4.25rem); line-height: 1.02; letter-spacing: -.045em; }
.service-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 0 0 24px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.service-hero-image, .service-inline-image { margin: 0; overflow: hidden; border-radius: var(--radius-lg); }
.service-hero-image { min-height: 520px; }
.service-hero-image img, .service-inline-image img { width: 100%; height: 100%; object-fit: cover; }
.service-story { display: grid; grid-template-columns: .8fr 1.2fr; gap: 52px; align-items: start; }
.service-story h2, .service-content-grid h2, .service-benefits h2, .service-process h2, .service-cta h2 { margin: 0; font-size: clamp(1.55rem, 3vw, 2.4rem); line-height: 1.15; }
.service-prose p { margin: 0 0 16px; color: var(--muted); font-size: 1.04rem; line-height: 1.8; }
.service-scope-note { margin-top: 24px; padding: 18px 20px; display: grid; gap: 6px; border: 1px solid rgba(0,113,227,.14); border-radius: 16px; background: #f0f7ff; }
.service-scope-note strong { color: var(--text); }
.service-scope-note span { color: var(--muted); line-height: 1.65; }
.service-content-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 18px; }
.service-content-grid .info-card { box-shadow: none; }
.service-inline-image { min-height: 470px; border: 1px solid var(--border); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.benefit-item { min-height: 145px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; border: 1px solid rgba(114,212,189,.15); border-radius: var(--radius-md); background: rgba(114,212,189,.06); }
.benefit-item span, .step-number { color: var(--primary); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.benefit-item strong { line-height: 1.45; }
.service-process .step-card { box-shadow: none; }
.service-cta { margin-top: 24px; padding: 38px 42px; display: flex; justify-content: space-between; align-items: center; gap: 24px; border-radius: var(--radius-xl); color: var(--ink); background: var(--cream); }
.service-cta .eyebrow { color: #217866; }
.service-cta p:last-child { max-width: 720px; margin-bottom: 0; color: #607069; line-height: 1.7; }
.about-hero { margin-top: 22px; padding: 24px; display: grid; grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr); gap: 24px; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow); }
.about-hero-copy { align-self: center; padding: 38px 28px; }
.about-hero h1 { max-width: 720px; margin: 0 0 20px; font-size: clamp(2.45rem, 4.8vw, 4.4rem); line-height: 1; letter-spacing: -.05em; }
.about-lead { max-width: 700px; margin: 0; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.about-lead strong { color: var(--text); }
.about-facts { margin-top: 28px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.about-facts span { padding: 12px; color: var(--text); border: 1px solid rgba(114,212,189,.14); border-radius: 14px; background: rgba(114,212,189,.05); font-size: .82rem; line-height: 1.35; }
.about-facts small { margin-bottom: 4px; display: block; color: var(--accent); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.about-hero-visual { min-height: 560px; margin: 0; position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.about-hero-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.about-hero-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,10,9,.65), transparent 50%); }
.about-hero-visual figcaption { position: absolute; z-index: 1; right: 20px; bottom: 20px; left: 20px; padding: 15px 17px; display: flex; align-items: center; gap: 12px; color: var(--text); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(5,20,17,.75); backdrop-filter: blur(16px); }
.about-opening { background: var(--cream); color: var(--ink); }
.about-opening .eyebrow, .about-design .eyebrow { color: #217866; }
.about-opening-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; }
.about-opening h2, .about-journey h2, .about-manifesto h2, .about-design h2, .about-closing h2 { margin: 0; font-size: clamp(1.8rem,3.5vw,3rem); line-height: 1.12; letter-spacing: -.03em; }
.about-prose p, .about-design-copy p { margin: 0 0 18px; color: #56665f; font-size: 1.02rem; line-height: 1.82; }
.about-prose strong { color: var(--ink); }
.about-journey { padding: 34px; }
.journey-list { display: grid; gap: 12px; }
.journey-item { padding: 22px; display: grid; grid-template-columns: 56px .8fr 1.2fr; gap: 22px; align-items: start; border: 1px solid rgba(114,212,189,.13); border-radius: var(--radius-md); background: rgba(114,212,189,.04); }
.journey-number { color: var(--primary); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.journey-item .tag { margin: 0 0 7px; color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.journey-item h3 { margin: 0; font-size: 1.1rem; }
.journey-item > p { margin: 0; color: var(--muted); line-height: 1.72; }
.about-manifesto { margin-top: 24px; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-xl); background: linear-gradient(140deg,#173b34,#0b211d); box-shadow: var(--shadow); }
.about-manifesto-image { min-height: 650px; margin: 0; }
.about-manifesto-image img { width: 100%; height: 100%; object-fit: cover; }
.about-manifesto-copy { align-self: center; padding: 48px; }
.about-manifesto-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.78; }
.about-manifesto blockquote { margin: 28px 0; padding: 24px 0 24px 24px; color: var(--text); border-left: 3px solid var(--primary); font-family: Georgia,serif; font-size: clamp(1.35rem,2.4vw,2rem); line-height: 1.45; }
.about-design { padding: 40px; color: var(--ink); background: var(--cream); }
.about-design-heading { max-width: 850px; margin-bottom: 30px; }
.about-design-copy { columns: 2; column-gap: 48px; }
.design-principles { margin-top: 28px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.design-principles article { padding: 22px; border: 1px solid #d7dfd7; border-radius: var(--radius-md); background: #fffdf8; }
.design-principles span { color: #217866; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.design-principles h3 { margin: 22px 0 8px; font-size: 1rem; }
.design-principles p { margin: 0; color: #607069; line-height: 1.6; }
.about-closing { margin-top: 24px; padding: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface); box-shadow: var(--shadow); }
.about-closing-copy { align-self: center; padding: 34px 28px; }
.about-closing-copy > p:not(.eyebrow) { margin: 20px 0 26px; color: var(--muted); line-height: 1.8; }
.about-closing figure { min-height: 430px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); }
.about-closing img { width: 100%; height: 100%; object-fit: cover; }
.process-list { display: grid; gap: 14px; }
.process-item { display: flex; gap: 12px; padding: 16px 18px; border-radius: var(--radius-md); background: rgba(255,255,255,0.05); }
.process-item strong { display: block; margin-bottom: 4px; }
.process-item span { color: var(--muted); }
.contact-card { padding: 26px; border-radius: var(--radius-xl); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid { display: grid; gap: 12px; }
label { font-size: 0.95rem; color: var(--muted); }
input, textarea, select { width: 100%; padding: 13px 14px; border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; background: rgba(255,255,255,0.07); color: var(--text); font: inherit; }
input:focus, textarea:focus, select:focus { outline: 2px solid rgba(114,212,189,0.3); border-color: rgba(114,212,189,0.5); }
textarea { min-height: 120px; resize: vertical; }
.form-note { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.site-footer { padding-top: 28px; }
.footer-card { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding: 28px; border-radius: var(--radius-xl); background: linear-gradient(120deg, #173b34, #0e2b26); border: 1px solid rgba(114,212,189,.18); }
.footer-meta { display: flex; justify-content: space-between; color: var(--muted); padding: 14px 4px 0; }
.footer-links { display: flex; gap: 16px; }
.page-header { padding: 32px 0 8px; }
.page-header h1 { font-size: clamp(2rem, 3.8vw, 2.8rem); margin: 0 0 10px; }
.page-header p { color: var(--muted); max-width: 760px; line-height: 1.7; }
.breadcrumbs { color: var(--muted); font-size: .95rem; margin-bottom: 10px; }
.list-check { padding-left: 18px; line-height: 1.9; color: var(--muted); }
.list-check li { margin-bottom: 6px; }
.notice { padding: 14px 16px; border-radius: 16px; background: rgba(114,212,189,0.15); border: 1px solid rgba(114,212,189,0.26); color: #dffcf5; }
.alert { padding: 14px 16px; border-radius: 16px; background: rgba(255,128,128,0.15); border: 1px solid rgba(255,128,128,0.24); color: #ffd9d9; }
@media (max-width: 920px) {
    .hero, .contact-card { grid-template-columns: 1fr; }
    .service-hero, .service-story, .service-content-grid { grid-template-columns: 1fr; }
    .about-hero, .about-opening-grid, .about-manifesto, .about-closing { grid-template-columns: 1fr; }
    .hero { padding: 38px; gap: 20px; }
    .hero-visual { min-height: 390px; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .quote-grid { grid-template-columns: 1fr; }
    .quote-card { min-height: 220px; }
    .benefit-grid { grid-template-columns: 1fr 1fr; }
    .service-hero-image { min-height: 400px; }
    .about-hero-visual { min-height: 430px; }
    .journey-item { grid-template-columns: 44px 1fr; }
    .journey-item > p { grid-column: 2; }
    .about-manifesto-image { min-height: 430px; }
}
@media (max-width: 760px) {
    .page-shell { width: min(100% - 20px, 1280px); }
    .topbar { border-radius: 24px; padding: 12px 14px; }
    .nav-toggle { display: block; }
    .nav-links { display: none; position: absolute; top: calc(100% + 10px); right: 0; left: 0; flex-direction: column; background: rgba(7,21,18,0.97); border: 1px solid rgba(255,255,255,0.14); border-radius: 18px; padding: 14px; }
    .nav-links.open { display: flex; }
    .hero { padding: 28px; }
    .hero > div { padding: 6px 0 14px; }
    .hero h1 { font-size: clamp(2.15rem, 10vw, 3rem); }
    .hero-visual { min-height: 310px; }
    .section { padding: 22px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .benefit-grid { grid-template-columns: 1fr; }
    .service-hero { padding: 12px; }
    .service-hero-copy { padding: 24px 16px; }
    .service-hero-image, .service-inline-image { min-height: 300px; }
    .service-story { gap: 18px; }
    .about-hero { padding: 12px; }
    .about-hero-copy { padding: 24px 16px; }
    .about-facts, .design-principles { grid-template-columns: 1fr; }
    .about-hero-visual { min-height: 330px; }
    .about-opening-grid { gap: 24px; }
    .about-journey, .about-design { padding: 24px; }
    .journey-item { grid-template-columns: 1fr; gap: 14px; }
    .journey-item > p { grid-column: auto; }
    .about-manifesto-copy { padding: 30px; }
    .about-manifesto-image { min-height: 300px; }
    .about-design-copy { columns: 1; }
    .about-closing-copy { padding: 24px 16px; }
    .about-closing figure { min-height: 300px; }
    .service-cta { padding: 28px; flex-direction: column; align-items: flex-start; }
    .footer-card, .footer-meta { flex-direction: column; align-items: flex-start; }
}

/* Minimal, product-led visual direction inspired by contemporary editorial tech sites. */
:root {
    --bg: #f5f5f7;
    --bg-deep: #e8e8ed;
    --surface: #ffffff;
    --surface-strong: #f5f5f7;
    --text: #1d1d1f;
    --muted: #6e6e73;
    --primary: #0071e3;
    --primary-dark: #0066cc;
    --accent: #0071e3;
    --cream: #f5f5f7;
    --ink: #1d1d1f;
    --border: rgba(0, 0, 0, .08);
    --shadow: 0 10px 40px rgba(0, 0, 0, .045);
    --radius-xl: 30px;
    --radius-lg: 22px;
}

body {
    color: var(--text);
    background: var(--bg);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.page-shell { width: min(1440px, calc(100% - 28px)); padding-top: 10px; }
.topbar {
    top: 8px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 16px;
    color: var(--text);
    background: rgba(255, 255, 255, .82);
    border-color: rgba(0, 0, 0, .06);
    box-shadow: 0 5px 24px rgba(0, 0, 0, .055);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.brand-mark {
    width: 38px; height: 38px;
    color: #fff;
    background: #1d1d1f;
    border: 0;
    box-shadow: none;
    font-size: .82rem;
}
.brand small, .nav-links a { color: var(--muted); }
.nav-links a.active, .nav-links a:hover { color: var(--text); }
.nav-toggle span { background: var(--text); }
.btn { padding: 12px 20px; font-weight: 500; border-color: transparent; }
.btn-primary { color: #fff; background: var(--primary); border-color: var(--primary); box-shadow: none; }
.btn-primary:hover { background: var(--primary-dark); box-shadow: none; }
.btn-secondary { color: var(--primary); background: transparent; border-color: rgba(0, 113, 227, .28); }
.btn-secondary:hover { background: rgba(0, 113, 227, .06); }
.eyebrow { color: var(--primary); letter-spacing: .08em; }

.hero, .section, .service-card, .solution-card, .step-card, .contact-card, .info-card {
    background: #fff;
    border-color: var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.hero { min-height: 680px; margin-top: 14px; padding: 46px 26px 26px 58px; grid-template-columns: minmax(0,.88fr) minmax(440px,1.12fr); }
.hero::before { background: radial-gradient(circle, rgba(0,113,227,.08), transparent 70%); }
.hero h1, .service-hero h1, .about-hero h1 { color: var(--text); font-weight: 700; letter-spacing: -.055em; }
.hero p { color: var(--muted); }
.hero-stats { gap: 8px; }
.stat-pill { color: #515154; background: #f5f5f7; border-color: rgba(0,0,0,.06); }
.hero-visual { border: 0; }
.hero-visual figcaption, .about-hero-visual figcaption { color: #f5f5f7; background: rgba(24,24,26,.72); border-color: rgba(255,255,255,.14); }
.visual-status { background: #30d158; box-shadow: 0 0 0 5px rgba(48,209,88,.14); }
.section { margin-top: 14px; padding: 38px; }
.section-heading { margin-bottom: 26px; }
.section-heading h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -.035em; }
.section-heading p { color: var(--muted); }
.service-card, .solution-card, .step-card, .info-card { background: var(--surface-strong); box-shadow: none; }
.service-card:hover, .solution-card:hover, .info-card:hover { border-color: rgba(0,113,227,.2); }
.service-card p, .solution-card p, .step-card p, .info-card p { color: var(--muted); }
.service-card .tag, .solution-card .tag, .section .link-row { color: var(--primary); }
.service-icon { color: var(--primary); background: #fff; border-color: rgba(0,113,227,.14); }
.service-card:hover .service-icon { background: rgba(0,113,227,.07); }

.services-section { color: var(--text); background: #fff; border-color: var(--border); }
.services-section .section-heading p, .services-section .service-card p { color: var(--muted); }
.services-section .service-card { background: #f5f5f7; border-color: transparent; box-shadow: none; }
.services-section .service-card:nth-child(2), .services-section .service-card:nth-child(5) { background: #f0f7ff; }
.services-section .service-card:nth-child(3), .services-section .service-card:nth-child(6) { background: #f7f2ff; }
.services-section .service-card .tag, .services-section .link-row, .services-section .service-icon { color: var(--primary); }
.services-section .service-icon { background: #fff; border-color: rgba(0,113,227,.12); }
.approach-section { background: #000; border-color: #000; }
.approach-section .info-card { color: #f5f5f7; background: #1d1d1f; border-color: rgba(255,255,255,.08); }
.approach-section .info-card p { color: #a1a1a6; }
.approach-section .eyebrow, .approach-section .link-row { color: #2997ff; }

.quote-section { background: transparent; }
.quote-card { background: #fff; border-color: var(--border); box-shadow: var(--shadow); }
.quote-card:nth-child(2) { background: #000; }
.quote-card:nth-child(3) { background: #eef5ff; }
.quote-card::before { color: var(--primary); }
.quote-card blockquote { color: var(--text); }
.quote-card figcaption { color: var(--muted); }
.quote-card figcaption strong { color: var(--primary); }
.quote-card:nth-child(2) blockquote { color: #f5f5f7; }
.quote-card:nth-child(2) figcaption { color: #a1a1a6; }
.quote-card:nth-child(2) figcaption strong, .quote-card:nth-child(2)::before { color: #2997ff; }

.service-catalog .service-card { background: #fff; box-shadow: var(--shadow); }
.catalog-image { border-color: var(--border); }
.service-hero, .about-hero, .about-closing { background: #fff; border-color: var(--border); box-shadow: var(--shadow); }
.service-hero-copy > p:not(.eyebrow), .service-prose p, .about-lead, .about-closing-copy > p:not(.eyebrow) { color: var(--muted); }
.about-lead strong { color: var(--text); }
.service-content-grid .info-card, .service-process .step-card { background: #f5f5f7; }
.benefit-item { background: #f5f5f7; border-color: transparent; }
.benefit-item span, .step-number { color: var(--primary); }
.service-cta { color: var(--text); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.service-cta .eyebrow { color: var(--primary); }
.service-cta p:last-child { color: var(--muted); }

.about-facts span { color: var(--text); background: #f5f5f7; border-color: transparent; }
.about-facts small { color: var(--primary); }
.about-opening, .about-design { color: var(--text); background: #fff; }
.about-opening .eyebrow, .about-design .eyebrow { color: var(--primary); }
.about-prose p, .about-design-copy p, .design-principles p { color: var(--muted); }
.about-prose strong { color: var(--text); }
.journey-item { background: #f5f5f7; border-color: transparent; }
.journey-number, .journey-item .tag { color: var(--primary); }
.journey-item > p { color: var(--muted); }
.about-manifesto { background: #000; border-color: #000; }
.about-manifesto-copy h2, .about-manifesto blockquote { color: #f5f5f7; }
.about-manifesto-copy > p:not(.eyebrow) { color: #a1a1a6; }
.about-manifesto .eyebrow { color: #2997ff; }
.about-manifesto blockquote { border-color: #2997ff; }
.design-principles article { background: #f5f5f7; border-color: transparent; }
.design-principles span { color: var(--primary); }

.contact-card { background: #fff; }
input, textarea, select { color: var(--text); background: #f5f5f7; border-color: rgba(0,0,0,.1); }
input:focus, textarea:focus, select:focus { outline-color: rgba(0,113,227,.22); border-color: var(--primary); }
label, .form-note, .list-check, .breadcrumbs { color: var(--muted); }
.notice { color: #146c2e; background: #eaf8ee; border-color: #c3ebcf; }
.alert { color: #b42318; background: #fff0ef; border-color: #f6cbc7; }

.site-footer { padding-top: 14px; }
.footer-card { color: var(--text); background: #fff; border-color: var(--border); }
.footer-card h3 { letter-spacing: -.025em; }
.footer-meta { color: var(--muted); }

@media (max-width: 920px) {
    .hero { min-height: 0; grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .page-shell { width: min(100% - 12px, 1440px); }
    .topbar { top: 6px; }
    .nav-links { background: rgba(255,255,255,.97); border-color: rgba(0,0,0,.08); box-shadow: 0 12px 35px rgba(0,0,0,.1); }
    .hero { padding: 28px 18px 18px; }
    .section { padding: 26px 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

/* Full-width, compact navigation bar. */
.page-shell { padding-top: 0; }
.topbar {
    width: 100vw;
    max-width: none;
    min-height: 48px;
    margin-left: calc(50% - 50vw);
    padding: 0 max(22px, calc((100vw - 1120px) / 2));
    position: sticky;
    top: 0;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-radius: 0;
    background: rgba(250, 250, 252, .84);
    box-shadow: none;
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
}
.brand { min-width: 170px; gap: 0; }
.brand-name {
    color: #1d1d1f;
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: -.015em;
    white-space: nowrap;
}
.nav-links { gap: 30px; }
.nav-links > a:not(.btn) {
    position: relative;
    color: #424245;
    font-size: .76rem;
    font-weight: 400;
    letter-spacing: .005em;
}
.nav-links > a:not(.btn)::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: #1d1d1f;
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .2s ease, transform .2s ease;
}
.nav-links > a:not(.btn):hover::after,
.nav-links > a:not(.btn).active::after { opacity: 1; transform: scaleX(1); }
.nav-links .btn-small { padding: 7px 14px; font-size: .76rem; }

@media (max-width: 760px) {
    .topbar { min-height: 48px; padding: 0 18px; top: 0; }
    .brand { min-width: 0; }
    .brand-name { font-size: .84rem; }
    .nav-toggle { padding: 8px 0 8px 12px; }
    .nav-toggle span { width: 20px; height: 1px; margin: 5px 0; }
    .nav-links {
        top: 48px;
        right: 0;
        left: 0;
        gap: 0;
        align-items: stretch;
        padding: 12px 18px 18px;
        border: 0;
        border-bottom: 1px solid rgba(0,0,0,.08);
        border-radius: 0 0 18px 18px;
        background: rgba(250,250,252,.97);
        box-shadow: 0 20px 30px rgba(0,0,0,.08);
    }
    .nav-links > a:not(.btn) { padding: 13px 2px; font-size: .9rem; }
    .nav-links > a:not(.btn)::after { display: none; }
    .nav-links .btn-small { margin-top: 10px; padding: 11px 16px; }
}

/* Refined brand lockup and structured footer. */
.topbar { min-height: 58px; }
.brand { min-width: 220px; gap: 11px; }
.brand-accent { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(0,113,227,.08); }
.brand-copy { display: grid; gap: 1px; }
.brand-copy small { color: #86868b; font-size: .65rem; font-weight: 400; letter-spacing: .01em; }
.brand-name { font-size: .9rem; }
.nav-links > a:not(.btn) { padding: 8px 10px; border-radius: 8px; transition: color .2s ease, background .2s ease; }
.nav-links > a:not(.btn)::after { display: none; }
.nav-links > a:not(.btn):hover { background: #f0f0f2; }
.nav-links > a:not(.btn).active { color: #1d1d1f; background: #ececef; }
.nav-links .btn-small { display: inline-flex; gap: 6px; }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus-visible { color: #fff; }

.footer-main { margin-top: 14px; padding: 42px 36px; display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-xl); background: #fff; }
.footer-brand { display: inline-block; margin-bottom: 12px; font-size: 1.1rem; font-weight: 650; letter-spacing: -.025em; }
.footer-identity p { max-width: 330px; margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .82rem; }
.footer-column strong { margin-bottom: 4px; color: var(--text); font-size: .76rem; }
.footer-column a { transition: color .2s ease; }
.footer-column a:hover { color: var(--primary); }
.phone-reveal { padding: 0; color: inherit; background: transparent; border: 0; font: inherit; text-align: left; cursor: pointer; }
.phone-reveal:hover, .phone-revealed:hover { color: var(--primary); }
.footer-phone-reveal { color: var(--muted); }
.footer-meta { align-items: center; font-size: .75rem; }

@media (max-width: 920px) {
    .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-legal { grid-column: 2; }
}

@media (max-width: 760px) {
    .topbar { min-height: 56px; }
    .brand { min-width: 0; }
    .brand-copy small { display: none; }
    .nav-links { top: 56px; }
    .footer-main { padding: 30px 26px; grid-template-columns: 1fr 1fr; gap: 30px 22px; }
    .footer-identity { grid-column: 1 / -1; }
    .footer-legal { grid-column: auto; }
}

@media (max-width: 480px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-identity { grid-column: auto; }
}

/* Contact experience. */
.contact-hero { max-width: 940px; margin: 0 auto; padding: 84px 28px 52px; text-align: center; }
.contact-hero .breadcrumbs { margin-bottom: 32px; }
.contact-hero h1 { margin: 0; font-size: clamp(3rem, 7vw, 6rem); line-height: .96; letter-spacing: -.065em; }
.contact-hero > p:last-child { max-width: 720px; margin: 24px auto 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.65; }
.contact-layout { display: grid; grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr); gap: 14px; }
.contact-intro-card, .contact-form-card { min-width: 0; overflow: hidden; border-radius: var(--radius-xl); }
.contact-intro-card { padding: 42px; display: flex; flex-direction: column; justify-content: space-between; gap: 36px; color: #f5f5f7; background: #000; }
.contact-intro-card h2, .contact-form-heading h2 { margin: 0; font-size: clamp(1.8rem, 3.4vw, 3rem); line-height: 1.08; letter-spacing: -.04em; }
.contact-intro-card > div > p:not(.eyebrow) { max-width: 570px; color: #a1a1a6; line-height: 1.75; }
.contact-intro-card .eyebrow { color: #2997ff; }
.contact-methods { margin-top: 28px; display: grid; gap: 9px; }
.contact-methods > a, .contact-methods > div { padding: 13px 14px; display: flex; align-items: center; gap: 13px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: #1d1d1f; transition: background .2s ease, transform .2s ease; }
.contact-methods > a:hover { background: #29292c; transform: translateX(2px); }
.contact-method-icon { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; color: #2997ff; border-radius: 10px; background: rgba(41,151,255,.12); font-size: .9rem; }
.contact-methods small, .contact-methods strong { display: block; }
.contact-methods small { margin-bottom: 2px; color: #86868b; font-size: .65rem; font-weight: 400; }
.contact-methods strong { color: #f5f5f7; font-size: .82rem; font-weight: 500; overflow-wrap: anywhere; }
.contact-phone-reveal, .contact-methods .phone-revealed { color: #f5f5f7; font-size: .82rem; font-weight: 500; }
.contact-visual { height: 270px; margin: 0; overflow: hidden; border-radius: 20px; }
.contact-visual img { width: 100%; height: 100%; object-fit: cover; }
.contact-form-card { padding: 44px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form-heading { margin-bottom: 30px; }
.contact-form-heading > p:last-child { margin: 10px 0 0; color: var(--muted); font-size: .78rem; }
.contact-form { display: grid; gap: 18px; }
.form-honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; clip-path: inset(50%) !important; white-space: nowrap !important; }
.privacy-content { max-width: 1040px; margin-right: auto; margin-left: auto; padding: 42px; }
.privacy-updated { margin: 0 0 28px; color: var(--muted); font-size: .78rem; }
.privacy-content article { padding: 25px 0; display: grid; grid-template-columns: 54px 1fr; gap: 20px; border-top: 1px solid var(--border); }
.privacy-content article > span { padding-top: 4px; color: var(--primary); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.privacy-content h2 { margin: 0 0 10px; font-size: 1.2rem; letter-spacing: -.02em; }
.privacy-content article p, .privacy-note p { margin: 0; color: var(--muted); line-height: 1.75; }
.privacy-content a { color: var(--primary); }
.privacy-note { margin-top: 24px; padding: 24px; border-radius: 18px; background: #f0f7ff; }
.privacy-note strong { display: block; margin-bottom: 8px; }
@media (max-width: 760px) {
    .privacy-content { padding: 26px 22px; }
    .privacy-content article { grid-template-columns: 1fr; gap: 8px; }
}
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label:not(.privacy-check) { display: grid; gap: 8px; color: #424245; font-size: .78rem; font-weight: 500; }
.contact-form label:not(.privacy-check) > span { color: var(--primary); }
.contact-form input, .contact-form select, .contact-form textarea { padding: 15px 16px; border-radius: 13px; background: #f5f5f7; }
.contact-form textarea { min-height: 180px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a1a1a6; }
.privacy-check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .74rem; line-height: 1.5; }
.privacy-check input { width: 16px; height: 16px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--primary); }
.privacy-check a { color: var(--primary); }
.contact-submit { padding-top: 4px; display: flex; align-items: center; gap: 16px; }
.contact-submit small { max-width: 210px; color: var(--muted); font-size: .7rem; line-height: 1.45; }
.contact-step-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.contact-step-grid article { padding: 26px; border-radius: var(--radius-lg); background: #f5f5f7; }
.contact-step-grid span { color: var(--primary); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.contact-step-grid h3 { margin: 28px 0 8px; font-size: 1rem; }
.contact-step-grid p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.6; }

@media (max-width: 920px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-intro-card { display: grid; grid-template-columns: 1fr .8fr; align-items: end; }
    .contact-visual { height: 100%; min-height: 380px; }
}

@media (max-width: 760px) {
    .contact-hero { padding: 64px 18px 36px; }
    .contact-hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
    .contact-intro-card { padding: 28px; display: flex; }
    .contact-visual { min-height: 260px; }
    .contact-form-card { padding: 30px 24px; }
    .contact-form-row, .contact-step-grid { grid-template-columns: 1fr; }
    .contact-submit { align-items: flex-start; flex-direction: column; }
}

/* Shared editorial hero language for internal pages. */
.inner-hero {
    max-width: 1080px;
    margin: 0 auto;
    padding: 84px 28px 58px;
    text-align: center;
}
.inner-hero .breadcrumbs { margin-bottom: 32px; }
.inner-hero h1 {
    margin: 0;
    font-size: clamp(3rem, 6.6vw, 5.8rem);
    line-height: .97;
    letter-spacing: -.065em;
}
.inner-hero > p:last-child {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.65;
}
.inner-hero-compact { max-width: 900px; padding-bottom: 48px; }
.inner-hero-compact h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.error-hero { min-height: 64vh; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.error-actions { margin-top: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.error-countdown { margin-top: 18px; color: var(--muted); font-size: .84rem; }

/* Privacy-first Analytics preferences. */
.footer-link-button { padding: 0; color: inherit; border: 0; background: transparent; font: inherit; cursor: pointer; }
.footer-link-button:hover { color: var(--primary); }
.cookie-banner[hidden] { display: none; }
.cookie-banner {
    position: fixed;
    z-index: 1000;
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: 920px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    align-items: end;
    gap: 28px;
    color: #f5f5f7;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 22px;
    background: rgba(29,29,31,.96);
    box-shadow: 0 24px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(22px);
}
.cookie-banner-close { position: absolute; top: 13px; right: 14px; width: 32px; height: 32px; display: grid; place-items: center; color: #f5f5f7; border: 1px solid #56565b; border-radius: 50%; background: #2c2c2e; font-size: 1.1rem; line-height: 1; cursor: pointer; }
.cookie-banner-close:hover { background: #3a3a3c; }
.cookie-banner .eyebrow { margin: 0 0 7px; color: #2997ff; }
.cookie-banner h2 { margin: 0 0 9px; color: #fff; font-size: 1.3rem; letter-spacing: -.025em; }
.cookie-banner p:not(.eyebrow) { max-width: 650px; margin: 0; color: #c7c7cc; font-size: .82rem; line-height: 1.65; }
.cookie-banner p.cookie-status { margin-top: 8px; color: #a1a1a6; font-size: .72rem; }
.cookie-banner .cookie-status strong { color: #f5f5f7; font-weight: 600; }
.cookie-banner a { color: #64b5ff; }
.cookie-actions { display: flex; gap: 9px; }
.cookie-actions .btn { min-width: 118px; justify-content: center; white-space: nowrap; }
.cookie-actions .btn-cookie-choice { color: #f5f5f7; border-color: #6b6b70; background: #2c2c2e; }
.cookie-actions .btn-cookie-choice:hover { color: #fff; background: #3a3a3c; }
.cookie-settings-page-button { margin-top: 20px; }
.cookie-table-wrap { margin-top: 18px; overflow-x: auto; border: 1px solid var(--border); border-radius: 16px; }
.cookie-table { width: 100%; min-width: 760px; border-collapse: collapse; color: var(--muted); font-size: .78rem; line-height: 1.55; }
.cookie-table th, .cookie-table td { padding: 15px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.cookie-table th { color: var(--text); background: #f5f5f7; font-size: .7rem; letter-spacing: .02em; }
.cookie-table tbody tr:last-child td { border-bottom: 0; }
.cookie-table code, .privacy-content code { padding: 2px 6px; color: var(--text); border-radius: 6px; background: #f0f0f2; font-size: .86em; }

@media (max-width: 760px) {
    .cookie-banner { right: 10px; bottom: 10px; left: 10px; padding: 21px; grid-template-columns: 1fr; gap: 20px; }
    .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .cookie-actions .btn { min-width: 0; padding-right: 14px; padding-left: 14px; }
}

.service-hero-stacked {
    margin-top: 0;
    padding: 0 22px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.service-hero-stacked .service-hero-copy {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 84px 28px 58px;
    text-align: center;
}
.service-hero-stacked .breadcrumbs { margin-bottom: 32px; }
.service-hero-stacked h1 {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(3rem, 6.4vw, 5.7rem);
    line-height: .97;
}
.service-hero-stacked .service-hero-copy > p:not(.eyebrow) {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.05rem, 2vw, 1.23rem);
}
.service-hero-stacked .service-hero-image {
    width: 100%;
    min-height: min(620px, 62vw);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.about-hero-stacked {
    margin-top: 0;
    padding: 0 22px 22px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}
.about-hero-stacked .about-hero-copy {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 84px 28px 58px;
    text-align: center;
}
.about-hero-stacked .breadcrumbs { margin-bottom: 32px; }
.about-hero-stacked h1 { max-width: 1000px; margin-right: auto; margin-left: auto; font-size: clamp(3rem, 6.5vw, 5.8rem); }
.about-hero-stacked .about-lead { max-width: 780px; margin-right: auto; margin-left: auto; font-size: clamp(1.05rem, 2vw, 1.23rem); }
.about-hero-stacked .about-facts { max-width: 720px; margin-right: auto; margin-left: auto; }
.about-hero-stacked .about-hero-visual { width: 100%; min-height: min(620px, 62vw); border-radius: var(--radius-xl); box-shadow: var(--shadow); }

@media (max-width: 760px) {
    .inner-hero { padding: 64px 18px 40px; }
    .inner-hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
    .service-hero-stacked, .about-hero-stacked { padding: 0 6px 6px; }
    .service-hero-stacked .service-hero-copy, .about-hero-stacked .about-hero-copy { padding: 64px 18px 40px; }
    .service-hero-stacked h1, .about-hero-stacked h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
    .service-hero-stacked .service-hero-image, .about-hero-stacked .about-hero-visual { min-height: 360px; }
}

/* Accessibilita: collegamento di salto e focus visibile coerente. */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; padding: 12px 20px; border-radius: 0 0 14px 0; background: var(--accent, #0071e3); color: #fff; font-size: .9rem; font-weight: 600; text-decoration: none; }
.skip-link:focus { left: 0; }
main:focus { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible { outline: 3px solid var(--accent, #0071e3); outline-offset: 3px; border-radius: 6px; }
