:root {
    --ink: #202c35;
    --muted: #63717a;
    --line: #dfe8eb;
    --soft: #f4f8f9;
    --white: #ffffff;
    --teal: #00aaa8;
    --teal-dark: #087f8e;
    --blue: #07537c;
    --green: #67b63d;
    --shadow: 0 24px 70px rgba(20, 54, 66, .14);
    --radius: 18px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); }
.center { text-align: center; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    transform: translateY(-150%);
    background: var(--ink);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(223, 232, 235, .75);
    backdrop-filter: blur(18px);
}
.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand { display: inline-block; }
.brand img { width: 154px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav > a:not(.button) {
    text-decoration: none;
    color: #52616a;
    font-size: .94rem;
    font-weight: 600;
}
.main-nav > a:not(.button):hover,
.main-nav > a.is-active { color: var(--teal-dark); }
.nav-toggle { display: none; }

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 10px;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 170, 168, .22);
}
.button-secondary { border-color: var(--line); background: #fff; color: var(--ink); }
.button-light { background: #fff; color: var(--teal-dark); box-shadow: 0 12px 28px rgba(0, 0, 0, .1); }
.button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
    outline: 3px solid rgba(0, 170, 168, .32);
    outline-offset: 3px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 110px;
    background:
        radial-gradient(circle at 78% 15%, rgba(0, 170, 168, .11), transparent 30%),
        linear-gradient(180deg, #fff, #fbfdfd);
}
.hero-grid, .page-hero-grid, .split-grid, .network-grid, .statement-grid, .contact-grid {
    display: grid;
    align-items: center;
    gap: 72px;
}
.hero-grid { grid-template-columns: .92fr 1.08fr; }
.hero-copy { position: relative; z-index: 2; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(3.2rem, 6vw, 5.55rem); font-weight: 780; }
h1 span { color: var(--teal-dark); }
h2 { font-size: clamp(2.15rem, 4vw, 3.65rem); font-weight: 760; }
h3 { font-size: 1.25rem; font-weight: 750; }
p { margin: 0; }
.lead { max-width: 660px; margin-top: 28px; color: var(--muted); font-size: 1.18rem; line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { display: flex; align-items: center; gap: 11px; margin-top: 34px; color: var(--muted); font-size: .9rem; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(103, 182, 61, .13); }
.hero-visual { position: relative; min-width: 0; }
.hero-photo {
    position: absolute;
    z-index: 1;
    width: 112%;
    height: 390px;
    top: 84px;
    left: 4%;
    object-fit: cover;
    object-position: 58% center;
    border-radius: 18px;
    opacity: .9;
    box-shadow: 0 24px 65px rgba(20, 54, 66, .12);
    -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
}
.hero-product-shot {
    position: relative;
    z-index: 2;
    width: 96%;
    margin-left: auto;
    overflow: hidden;
    border: 1px solid #e3ecee;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}
.hero-product-shot img { width: 100%; height: auto; }

.product-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    min-height: 400px;
    background: #fff;
    border: 1px solid #e3ecee;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.product-topbar { height: 50px; padding: 0 16px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid #eef3f4; }
.product-mark { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 7px; background: var(--teal); color: #fff; font-weight: 800; }
.product-search { width: 120px; height: 9px; border-radius: 5px; background: #edf3f4; }
.product-user { width: 24px; height: 24px; margin-left: auto; border-radius: 50%; background: #dfeaec; }
.product-body { min-height: 350px; display: grid; grid-template-columns: 52px 1fr; }
.product-sidebar { display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 25px; background: #17323d; }
.product-sidebar span { width: 17px; height: 17px; border-radius: 5px; background: rgba(255, 255, 255, .22); }
.product-sidebar span.active { background: var(--teal); }
.product-canvas { padding: 22px; min-width: 0; background: #f7fafb; }
.product-canvas-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; font-size: .8rem; color: #40525a; }
.product-canvas-head span { width: 76px; height: 22px; border-radius: 6px; background: var(--teal); }
.dispatch-map { position: relative; height: 198px; overflow: hidden; border-radius: 10px; background: linear-gradient(135deg, #edf4f4, #e2eeee); }
.map-line { position: absolute; height: 3px; border-radius: 10px; background: #fff; transform-origin: left center; }
.line-one { width: 90%; top: 42%; left: 5%; transform: rotate(-18deg); }
.line-two { width: 75%; top: 70%; left: 14%; transform: rotate(22deg); }
.pin { position: absolute; width: 12px; height: 12px; border: 3px solid #fff; border-radius: 50% 50% 50% 0; background: var(--teal); transform: rotate(-45deg); box-shadow: 0 4px 12px rgba(0, 82, 111, .2); }
.pin-one { top: 32%; left: 25%; }.pin-two { top: 57%; left: 59%; }.pin-three { top: 21%; left: 75%; background: var(--green); }
.dispatch-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 13px; }
.dispatch-list span { height: 52px; border-radius: 8px; background: #fff; border: 1px solid #e6edef; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.admin-stats i { height: 72px; border-radius: 9px; background: #fff; border: 1px solid #e6edef; }
.admin-table { display: grid; gap: 7px; margin-top: 14px; }
.admin-table span { height: 33px; border-radius: 6px; background: #fff; border: 1px solid #e6edef; }
.product-placeholder {
    position: absolute;
    right: 16px;
    bottom: 12px;
    padding: 5px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .9);
    color: #87949a;
    font-size: .66rem;
}

.section { padding: 112px 0; }
.section-label { margin-bottom: 16px; color: var(--teal-dark); font-size: .78rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.section-lead { margin-top: 24px; color: var(--muted); font-size: 1.1rem; line-height: 1.8; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 70px; }
.process-item { border-top: 2px solid var(--line); padding-top: 24px; }
.process-item span, .network-benefits span { color: var(--teal); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }
.process-item h3, .network-benefits h3 { margin-top: 30px; }
.process-item p, .network-benefits p { margin-top: 14px; color: var(--muted); font-size: .96rem; }
.soft-section { background: var(--soft); }
.split-grid { grid-template-columns: 1.05fr .95fr; }
.split-grid.reverse { grid-template-columns: .9fr 1.1fr; }
.media-panel { min-width: 0; }
.photo-frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-frame img { width: 100%; min-height: 430px; object-fit: cover; object-position: center; }
.content-block p:not(.section-label) { margin-top: 22px; color: var(--muted); font-size: 1.06rem; }
.check-list { display: grid; gap: 14px; padding: 0; margin: 30px 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: #485861; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .52em; width: 12px; height: 7px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.text-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 10px; color: var(--teal-dark); text-decoration: none; font-weight: 750; }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .2s ease; }

.network-preview { background: linear-gradient(135deg, #063f5f, #087f8e); color: #fff; }
.network-grid { grid-template-columns: 1fr 1fr; }
.light-copy .section-label { color: #8ddbd8; }
.light-copy p:not(.section-label) { color: rgba(255, 255, 255, .76); }
.light-copy .button { margin-top: 30px; }
.network-statement { display: grid; gap: 12px; padding-left: 10%; }
.network-statement span { display: block; color: rgba(255, 255, 255, .45); font-size: clamp(1.7rem, 3.2vw, 3rem); font-weight: 750; letter-spacing: -.04em; }
.network-statement span:nth-child(2), .network-statement span:nth-child(4) { color: #fff; }
.origin-visual { position: relative; min-height: 360px; overflow: hidden; border-radius: var(--radius); background: linear-gradient(145deg, #eaf5f5, #d6e8eb); }
.road { position: absolute; height: 3px; border-radius: 10px; background: #fff; transform-origin: left center; }
.road-one { width: 120%; top: 36%; left: -8%; transform: rotate(-18deg); }
.road-two { width: 120%; top: 74%; left: -4%; transform: rotate(15deg); }
.origin-pin { position: absolute; width: 110px; height: 110px; top: 35%; left: 45%; border-radius: 50% 50% 50% 0; background: linear-gradient(135deg, var(--teal), var(--blue)); transform: rotate(-45deg); box-shadow: 0 20px 40px rgba(7, 83, 124, .22); }
.origin-pin span { position: absolute; width: 42px; height: 42px; top: 34px; left: 34px; border-radius: 50%; background: #fff; }
.origin-photo { background: #dce9ec; box-shadow: var(--shadow); }
.origin-photo img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: center; }

.cta-band { padding: 72px 0; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 760px; font-size: clamp(2rem, 4vw, 3.35rem); }
.cta-band p { margin-top: 15px; color: rgba(255, 255, 255, .8); }

.page-hero { position: relative; overflow: hidden; padding: 95px 0 105px; background: linear-gradient(180deg, #fff, #f8fbfb); }
.page-hero-grid { grid-template-columns: .9fr 1.1fr; }
.page-hero h1 { font-size: clamp(3rem, 5.5vw, 5rem); }
.page-hero .button { margin-top: 32px; }
.feature-flow { padding-bottom: 112px; }
.feature-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 34px;
    align-items: start;
    padding: 42px 0;
    border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-number { color: var(--teal); font-size: .8rem; font-weight: 800; letter-spacing: .12em; }
.feature-row h2 { font-size: 2rem; }
.feature-row p { margin-top: 14px; color: var(--muted); }
.feature-detail { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-detail span { padding: 7px 11px; border: 1px solid #dce8ea; border-radius: 7px; color: #5a6970; background: #fff; font-size: .82rem; }

.network-page-hero { min-height: 650px; }
.network-page-hero .narrow { position: relative; z-index: 2; }
.network-orbit { position: absolute; width: 730px; height: 350px; left: 50%; bottom: -220px; transform: translateX(-50%); border: 1px solid rgba(0, 170, 168, .2); border-radius: 50%; }
.network-orbit::before, .network-orbit::after { content: ""; position: absolute; inset: 45px; border: 1px solid rgba(0, 170, 168, .15); border-radius: 50%; }
.network-orbit::after { inset: 95px; }
.network-orbit i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--teal); }
.network-orbit i:nth-child(1) { left: 5%; top: 35%; }.network-orbit i:nth-child(2) { right: 8%; top: 30%; }.network-orbit i:nth-child(3) { left: 24%; top: 8%; }.network-orbit i:nth-child(4) { right: 25%; top: 10%; }.network-orbit i:nth-child(5) { left: 34%; top: 35%; }.network-orbit i:nth-child(6) { right: 34%; top: 35%; }
.orbit-center { position: absolute; top: 20px; left: 50%; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--teal); color: #fff; font-size: 1.8rem; font-weight: 800; transform: translateX(-50%); }
.statement-grid { grid-template-columns: 1fr .85fr; }
.statement-copy h2 { color: var(--blue); font-size: clamp(2.4rem, 5vw, 4.6rem); }
.network-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.network-benefits article { min-height: 260px; padding: 32px; background: #fff; border: 1px solid #e2ebed; border-radius: 14px; }
.network-visual { background: linear-gradient(135deg, #e8f5f4, #cfe5e8); }

.contact-hero { padding-bottom: 70px; }
.contact-grid { grid-template-columns: .75fr 1.25fr; align-items: start; }
.contact-aside { position: sticky; top: 120px; }
.contact-aside h2 { font-size: clamp(2rem, 3.4vw, 3rem); }
.contact-steps { display: grid; gap: 20px; padding: 0; margin: 34px 0 0; list-style: none; }
.contact-steps li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; color: var(--muted); }
.contact-steps span { color: var(--teal); font-size: .78rem; font-weight: 800; }
.direct-contact { margin-top: 45px; padding-top: 25px; border-top: 1px solid var(--line); }
.direct-contact h3 { margin-bottom: 12px; font-size: 1rem; letter-spacing: 0; }
.direct-contact a { display: block; width: fit-content; color: var(--teal-dark); text-decoration: none; }
.form-card { padding: 42px; border: 1px solid #e1eaec; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 21px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { color: #46565e; font-size: .88rem; font-weight: 700; }
.field input, .field select, .field textarea {
    width: 100%;
    border: 1px solid #cfdbde;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    padding: 12px 13px;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field input, .field select { height: 48px; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(0, 170, 168, .08); outline: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b63d4d; }
.field-error { min-height: 15px; color: #a93646; font-size: .76rem; }
.honeypot { position: absolute; left: -9999px; }
.checkbox-field { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.checkbox-field input { width: 18px; height: 18px; margin-top: 3px; }
.checkbox-field label { font-weight: 500; line-height: 1.55; }
.checkbox-field label a { color: var(--teal-dark); }
.checkbox-field .field-error { grid-column: 2; }
.form-submit { margin-top: 24px; }
.form-status { display: none; margin-bottom: 22px; padding: 12px 14px; border-radius: 8px; font-size: .9rem; }
.form-status.is-visible { display: block; }
.form-status.success { background: #edf8e9; color: #346c20; }
.form-status.error { background: #fff1f2; color: #8f2d3b; }

.site-footer { padding-top: 70px; background: #172a33; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; }
.footer-brand {
    padding: 8px 12px;
    border-radius: 10px;
    background: #fff;
}
.footer-brand img { width: 140px; }
.site-footer p { max-width: 280px; margin-top: 18px; color: rgba(255, 255, 255, .58); font-size: .9rem; }
.site-footer h2 { margin-bottom: 18px; color: rgba(255, 255, 255, .6); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a:not(.brand) { display: block; width: fit-content; margin-top: 10px; color: rgba(255, 255, 255, .8); text-decoration: none; font-size: .9rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { margin-top: 55px; padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .1); }
.footer-bottom p { margin: 0; font-size: .8rem; }

.legal-hero { padding-bottom: 72px; }
.legal-hero h1 { font-size: clamp(3rem, 5.5vw, 5rem); }
.legal-section { padding-top: 78px; }
.legal-content { display: grid; gap: 38px; }
.legal-content section { padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { font-size: 1.35rem; letter-spacing: -.02em; }
.legal-content p { margin-top: 14px; color: var(--muted); }
.legal-content a { color: var(--teal-dark); }

@media (max-width: 920px) {
    .hero-grid, .page-hero-grid, .split-grid, .split-grid.reverse, .network-grid, .statement-grid, .contact-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 70px; }
    .hero-copy { max-width: 680px; }
    .hero-visual { max-width: 720px; }
    .hero-photo { width: 105%; left: 2%; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .network-statement { padding-left: 0; }
    .feature-row { grid-template-columns: 50px 1fr; }
    .feature-detail { grid-column: 2; }
    .contact-aside { position: static; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
    .site-header { backdrop-filter: none; }
    .header-inner { min-height: 68px; }
    .brand img { width: 130px; }
    .nav-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; border: 0; border-radius: 8px; background: transparent; }
    .nav-toggle span:not(.sr-only) { width: 22px; height: 2px; display: block; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { position: absolute; top: 68px; left: 0; right: 0; display: none; padding: 18px 20px 24px; align-items: stretch; gap: 8px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(22, 49, 58, .08); }
    .main-nav.is-open { display: flex; flex-direction: column; }
    .main-nav > a:not(.button) { padding: 11px 6px; }
    .nav-cta { margin-top: 8px; }
    .hero, .page-hero { padding: 62px 0 74px; }
    h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
    h2 { font-size: clamp(2rem, 10vw, 2.9rem); }
    .lead { font-size: 1.05rem; }
    .button-row .button { width: 100%; }
    .product-frame { min-height: 320px; }
    .hero-product-shot { width: 100%; }
    .hero-photo { height: 260px; top: 110px; object-position: 62% center; }
    .product-body { min-height: 270px; grid-template-columns: 42px 1fr; }
    .product-canvas { padding: 14px; }
    .dispatch-map { height: 150px; }
    .dispatch-list { grid-template-columns: repeat(2, 1fr); }
    .dispatch-list span:nth-child(n+3) { display: none; }
    .photo-frame img { min-height: 300px; }
    .section { padding: 78px 0; }
    .process-grid, .network-benefits, .form-grid { grid-template-columns: 1fr; }
    .process-grid { gap: 28px; margin-top: 48px; }
    .network-statement span { font-size: 1.65rem; }
    .cta-band { padding: 54px 0; }
    .cta-band-inner { align-items: flex-start; flex-direction: column; }
    .cta-band .button { width: 100%; }
    .feature-row { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
    .feature-detail { grid-column: auto; }
    .network-page-hero { min-height: 560px; }
    .network-orbit { width: 560px; }
    .form-card { padding: 24px 18px; }
    .field-full { grid-column: auto; }
    .checkbox-field { grid-template-columns: 18px 1fr; }
    .checkbox-field .field-error { grid-column: 2; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

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