:root {
    --blue: #155eef;
    --blue-dark: #0f49c7;
    --navy: #102a43;
    --navy-deep: #062744;
    --green: #16a36a;
    --orange: #ff641f;
    --orange-dark: #ed5110;
    --ink: #111827;
    --muted: #637083;
    --line: #e6ebf2;
    --soft: #f6f8fc;
    --white: #ffffff;
    --shadow-sm: 0 8px 24px rgba(16, 42, 67, 0.08);
    --shadow-md: 0 18px 48px rgba(16, 42, 67, 0.12);
    --radius: 12px;
    --shell: 1280px;
    --header-height: 102px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

p,
h1,
h2,
h3 {
    margin-top: 0;
}

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

.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: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 25px;
    border: 0;
    border-radius: 7px;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(21, 94, 239, 0.17);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.site-menu a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(21, 94, 239, 0.24);
    outline-offset: 3px;
}

.button-blue {
    background: var(--blue);
}

.button-blue:hover {
    background: var(--blue-dark);
    box-shadow: 0 10px 22px rgba(21, 94, 239, 0.25);
}

.button-orange {
    background: var(--orange);
    box-shadow: 0 8px 18px rgba(255, 100, 31, 0.22);
}

.button-orange:hover {
    background: var(--orange-dark);
    box-shadow: 0 10px 22px rgba(255, 100, 31, 0.29);
}

.site-header {
    position: relative;
    z-index: 50;
}

.topbar {
    height: 38px;
    color: rgba(255, 255, 255, 0.94);
    background: linear-gradient(90deg, #0e68ef, #155eef 52%, #0b57d0);
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.topbar p {
    margin: 0;
}

.topbar p span {
    padding-inline: 8px;
    color: rgba(255, 255, 255, 0.55);
}

.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.navbar {
    height: 72px;
    border-bottom: 1px solid rgba(220, 227, 237, 0.82);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 12px rgba(16, 42, 67, 0.025);
}

.nav-inner {
    display: flex;
    height: 100%;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.brand-mark {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--white);
    background: var(--blue);
}

.site-menu {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 43px;
    margin-left: auto;
    margin-right: 52px;
}

.site-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #222c3a;
    font-size: 15px;
    font-weight: 600;
}

.site-menu a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--blue);
    content: "";
    opacity: 0;
    transform: scaleX(0.55);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-menu a:hover,
.site-menu a.is-active {
    color: var(--blue);
}

.site-menu a:hover::after,
.site-menu a.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-cta {
    min-height: 42px;
    padding-inline: 20px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 600px;
    background:
        radial-gradient(circle at 10% 18%, rgba(232, 241, 255, 0.8), transparent 32%),
        linear-gradient(90deg, #f7faff 0%, #ffffff 45%, #f6f9fc 100%);
}

.hero-inner {
    position: relative;
    display: grid;
    min-height: 548px;
    grid-template-columns: 45% 55%;
}

.hero-copy {
    position: relative;
    z-index: 3;
    align-self: center;
    padding: 34px 48px 83px 10px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.eyebrow span {
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
}

.hero h1 {
    margin-bottom: 20px;
    color: #0c1729;
    font-size: clamp(44px, 4vw, 62px);
    font-weight: 900;
    line-height: 1.23;
    letter-spacing: -0.055em;
}

.hero h1 span {
    color: var(--blue);
}

.hero-subtitle {
    margin-bottom: 28px;
    color: #3d4653;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 20px 0 0;
    color: #647184;
    font-size: 13px;
}

.hero-note .icon {
    color: var(--green);
}

.hero-photo {
    position: relative;
    min-width: 0;
    height: 548px;
    overflow: hidden;
    background: #e9eef3;
}

.mockup-source {
    position: absolute;
    max-width: none;
    user-select: none;
    pointer-events: none;
}

.hero-source {
    top: -23%;
    left: -70.2%;
    width: 171%;
}

.hero-photo-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.62), transparent 17%),
        linear-gradient(180deg, transparent 66%, rgba(4, 19, 36, 0.06));
    pointer-events: none;
}

.trust-strip {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 112px;
    grid-template-columns: repeat(4, 1fr);
    padding: 17px 20px;
    border: 1px solid rgba(225, 231, 239, 0.95);
    border-radius: 13px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 26px;
}

.trust-item + .trust-item {
    border-left: 1px solid var(--line);
}

.trust-icon {
    display: inline-flex;
    width: 57px;
    height: 57px;
    flex: 0 0 57px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.trust-icon.blue {
    background: linear-gradient(145deg, #2075ff, #0b56df);
}

.trust-icon.green {
    background: linear-gradient(145deg, #1cbf7c, #09905a);
}

.trust-item strong,
.trust-item small {
    display: block;
}

.trust-item strong {
    margin-bottom: 2px;
    color: #192333;
    font-size: 18px;
    font-weight: 700;
}

.trust-item small {
    color: #7d8795;
    font-size: 12px;
    white-space: nowrap;
}

.section {
    padding-block: 78px;
}

.section-heading {
    margin-bottom: 38px;
    text-align: center;
}

.section-heading > p,
.mini-heading > p {
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.section-heading h2 {
    margin-bottom: 8px;
    color: #0c1626;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.section-heading > span,
.mini-heading > span {
    display: block;
    width: 38px;
    height: 3px;
    margin-inline: auto;
    border-radius: 999px;
    background: var(--blue);
}

.services-section {
    padding-top: 95px;
    padding-bottom: 80px;
    background: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.service-card {
    display: flex;
    min-height: 238px;
    flex-direction: column;
    align-items: center;
    padding: 28px 18px 21px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 6px 20px rgba(16, 42, 67, 0.035);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
    border-color: rgba(21, 94, 239, 0.28);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.service-icon {
    display: inline-flex;
    height: 63px;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    color: var(--blue);
}

.service-card h3 {
    margin-bottom: 8px;
    color: #18212e;
    font-size: 19px;
    line-height: 1.35;
}

.service-card p {
    margin-bottom: 15px;
    color: #788291;
    font-size: 13px;
    line-height: 1.65;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(3px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-card:hover a,
.service-card:focus-within a {
    opacity: 1;
    transform: translateY(0);
}

.pricing-section {
    padding-top: 70px;
    padding-bottom: 64px;
    background: linear-gradient(180deg, #f8faff, #ffffff);
}

.price-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 28px;
}

.price-item {
    display: flex;
    min-height: 92px;
    align-items: center;
    gap: 19px;
    padding-inline: 29px;
}

.price-item + .price-item {
    border-left: 1px solid var(--line);
}

.price-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: #edf4ff;
}

.price-item h3 {
    margin-bottom: 0;
    color: #3d4755;
    font-size: 15px;
    font-weight: 500;
}

.price-item p {
    display: flex;
    align-items: baseline;
    margin: -2px 0 0;
    color: var(--orange);
}

.price-item p strong {
    font-size: 39px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.price-item p span {
    margin-left: 3px;
    color: #47505c;
    font-size: 12px;
}

.price-note {
    margin: 0;
    padding: 11px 18px;
    color: #868f9d;
    background: #f8f9fb;
    font-size: 12px;
    text-align: center;
}

.process-section {
    padding-top: 68px;
    padding-bottom: 72px;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
    align-items: center;
}

.process-card {
    position: relative;
    display: grid;
    min-height: 112px;
    grid-template-columns: 58px auto;
    align-items: center;
    gap: 15px;
    padding: 19px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 7px 18px rgba(16, 42, 67, 0.045);
}

.process-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: #edf4ff;
}

.process-number {
    position: absolute;
    top: 12px;
    left: 74px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
}

.process-card h3 {
    margin: 11px 0 2px;
    color: #243043;
    font-size: 16px;
}

.process-card p {
    margin: 0;
    color: #8a93a0;
    font-size: 11px;
    white-space: nowrap;
}

.process-arrow {
    display: inline-flex;
    justify-content: center;
    color: #b3bcc8;
}

.area-section {
    padding-top: 32px;
    padding-bottom: 65px;
}

.area-card {
    display: grid;
    min-height: 225px;
    grid-template-columns: 52% 48%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: linear-gradient(100deg, #f6f9fd 0%, #f9fbfe 40%, #eef4fa 100%);
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.045);
}

.area-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 27px 48px;
}

.mini-heading h2 {
    margin-bottom: 7px;
    color: #111b2c;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.mini-heading > span {
    width: 34px;
    margin: 0;
}

.area-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 29px 0 7px;
    color: var(--blue);
}

.area-title strong {
    color: #1c2736;
    font-size: 18px;
}

.area-copy > p {
    margin-bottom: 17px;
    padding-left: 42px;
    color: #778291;
    font-size: 13px;
}

.area-copy > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding-left: 42px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.map-visual {
    position: relative;
    min-height: 225px;
    overflow: hidden;
    background:
        linear-gradient(25deg, transparent 39%, rgba(169, 186, 203, 0.3) 40%, rgba(169, 186, 203, 0.3) 42%, transparent 43%),
        linear-gradient(150deg, transparent 42%, rgba(169, 186, 203, 0.26) 43%, rgba(169, 186, 203, 0.26) 45%, transparent 46%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0 2px, transparent 2px 76px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.72) 0 2px, transparent 2px 66px),
        #eaf0f4;
}

.map-visual::before,
.map-visual::after {
    position: absolute;
    border-radius: 3px;
    background: #d9e7ce;
    content: "";
}

.map-visual::before {
    top: 25px;
    right: 80px;
    width: 122px;
    height: 62px;
    transform: rotate(-8deg);
}

.map-visual::after {
    bottom: 20px;
    left: 60px;
    width: 150px;
    height: 48px;
    transform: rotate(12deg);
}

.coverage-shape {
    position: absolute;
    z-index: 2;
    top: 44px;
    right: 68px;
    bottom: 38px;
    left: 78px;
    border: 3px solid rgba(21, 94, 239, 0.75);
    background: rgba(21, 94, 239, 0.18);
    clip-path: polygon(7% 26%, 33% 4%, 66% 14%, 94% 36%, 84% 82%, 48% 96%, 10% 73%);
}

.road {
    position: absolute;
    z-index: 3;
    height: 6px;
    border: 1px solid rgba(236, 171, 34, 0.5);
    border-radius: 999px;
    background: rgba(255, 229, 153, 0.92);
}

.road-a {
    top: 72px;
    left: -5%;
    width: 110%;
    transform: rotate(-8deg);
}

.road-b {
    top: 185px;
    left: -5%;
    width: 113%;
    transform: rotate(7deg);
}

.road-c {
    top: 50%;
    left: 13%;
    width: 82%;
    transform: rotate(-24deg);
}

.road-d {
    top: 50%;
    left: 2%;
    width: 90%;
    transform: rotate(24deg);
}

.road-e {
    top: -10%;
    left: 55%;
    width: 70%;
    transform: rotate(82deg);
}

.map-pin {
    position: absolute;
    z-index: 5;
    top: 47%;
    left: 55%;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 5px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 8px 20px rgba(21, 94, 239, 0.3);
    transform: translate(-50%, -50%);
}

.map-label {
    position: absolute;
    z-index: 5;
    top: calc(47% + 29px);
    left: 55%;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.94);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 42, 67, 0.1);
    transform: translateX(-50%);
}

.cases-section {
    padding-top: 58px;
    padding-bottom: 78px;
    background: linear-gradient(180deg, #ffffff, #f8faff);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.case-card {
    min-height: 0;
    padding: 20px 21px 19px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 7px 22px rgba(16, 42, 67, 0.05);
}

.case-head {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    display: block;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    overflow: hidden;
    border: 3px solid #dce9ff;
    border-radius: 50%;
    background: #eaf1fb;
    box-shadow: 0 3px 10px rgba(16, 42, 67, 0.12);
}

.avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.case-head h3 {
    margin-bottom: 2px;
    color: #283342;
    font-size: 16px;
}

.stars {
    margin: 0;
    color: var(--orange);
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0.1em;
}

.case-card > p {
    margin: 12px 0 0;
    color: #4d5867;
    font-size: 13px;
    line-height: 1.7;
}

.contact-section {
    padding-top: 56px;
    padding-bottom: 72px;
    background: var(--soft);
}

.contact-card {
    display: grid;
    min-height: 420px;
    grid-template-columns: 31% 45% 24%;
    overflow: hidden;
    border: 1px solid #e1e7f0;
    border-radius: 13px;
    background:
        radial-gradient(circle at 6% 0%, rgba(229, 240, 255, 0.95), transparent 50%),
        var(--white);
    box-shadow: var(--shadow-md);
}

.contact-details {
    padding: 35px 36px;
}

.contact-details .mini-heading {
    margin-bottom: 27px;
}

.contact-details ul {
    display: grid;
    gap: 17px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-details li > span {
    display: inline-flex;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: #edf4ff;
}

.contact-details li small,
.contact-details li a,
.contact-details li p {
    display: block;
    margin: 0;
}

.contact-details li small {
    color: #8b95a2;
    font-size: 10px;
}

.contact-details li a,
.contact-details li p {
    color: #344051;
    font-size: 13px;
    font-weight: 600;
}

.contact-phone {
    width: 100%;
    min-height: 46px;
}

.appointment-form {
    align-self: center;
    padding: 34px 30px;
    border-left: 1px solid var(--line);
}

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

.form-grid label {
    position: relative;
    display: block;
}

.form-grid label > span {
    display: block;
    margin-bottom: 5px;
    color: #586576;
    font-size: 11px;
    font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    border: 1px solid #dfe5ee;
    border-radius: 7px;
    color: #263244;
    background: rgba(255, 255, 255, 0.94);
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-grid input,
.form-grid select {
    height: 46px;
    padding: 0 13px;
}

.form-grid textarea {
    min-height: 84px;
    padding: 11px 13px;
    resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
    color: #a2aab5;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: rgba(21, 94, 239, 0.7);
    box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.08);
}

.form-message {
    grid-column: 1 / -1;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
}

.submit-button {
    width: 100%;
    margin-top: 16px;
}

.button-loading {
    display: none;
}

.submit-button.is-loading .button-label {
    display: none;
}

.submit-button.is-loading .button-loading {
    display: inline;
}

.form-status {
    min-height: 24px;
    margin: 8px 0 0;
    border-radius: 6px;
    font-size: 12px;
    text-align: center;
}

.form-status.is-success,
.form-status.is-error {
    padding: 6px 9px;
}

.form-status.is-success {
    color: #087645;
    background: #e8f8f0;
}

.form-status.is-error {
    color: #b42318;
    background: #fff0ee;
}

.privacy-note {
    margin: 5px 0 0;
    color: #9aa3af;
    font-size: 10px;
    text-align: center;
}

.contact-photo {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #edf2f7;
}

.contact-source {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.subpage-main {
    min-height: 640px;
    background: #f7f9fc;
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 82% 18%, rgba(86, 151, 255, 0.34), transparent 27%),
        linear-gradient(118deg, #082e52 0%, #0d4380 52%, #155eef 100%);
}

.page-hero::before,
.page-hero::after {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.055);
    content: "";
    pointer-events: none;
}

.page-hero::before {
    top: -170px;
    right: 5%;
    width: 390px;
    height: 390px;
}

.page-hero::after {
    right: 31%;
    bottom: -190px;
    width: 300px;
    height: 300px;
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 370px;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    align-items: center;
    gap: 90px;
    padding-block: 56px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb strong {
    color: rgba(255, 255, 255, 0.93);
    font-weight: 600;
}

.page-eyebrow {
    margin-bottom: 9px;
    color: #a9cbff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.page-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.045em;
}

.page-hero-copy > p:last-of-type {
    max-width: 720px;
    margin-bottom: 27px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}

.page-hero-actions {
    display: flex;
    gap: 13px;
}

.page-hero-summary {
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 46px rgba(4, 24, 49, 0.18);
    backdrop-filter: blur(10px);
}

.page-hero-icon {
    display: inline-flex;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.page-hero-summary h2 {
    margin: 0 0 15px;
    font-size: 20px;
}

.page-hero-summary ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-hero-summary li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.page-hero-summary li .icon {
    flex: 0 0 auto;
    color: #80e2b6;
}

.subpage-section {
    padding-block: 76px 88px;
    background: var(--white);
}

.subpage-services .service-card {
    min-height: 230px;
}

.service-detail-section {
    padding-block: 76px 88px;
    background: #f5f8fd;
}

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

.service-detail-card {
    overflow: hidden;
    border: 1px solid #e0e7f0;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 9px 28px rgba(16, 42, 67, 0.055);
}

.service-detail-card > header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 23px 25px;
    border-bottom: 1px solid #e5ebf3;
    background: linear-gradient(110deg, #eef5ff, #f9fbff);
}

.service-detail-card > header > span {
    display: inline-flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--white);
    box-shadow: 0 5px 16px rgba(21, 94, 239, 0.12);
}

.service-detail-card h3 {
    margin-bottom: 3px;
    color: #172234;
    font-size: 19px;
}

.service-detail-card header p {
    margin: 0;
    color: #748094;
    font-size: 12px;
}

.service-detail-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 22px 25px;
    list-style: none;
}

.service-detail-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #4f5c6e;
    font-size: 13px;
}

.service-detail-card li .icon {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--green);
}

.service-detail-card > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 25px;
    border-top: 1px solid #edf1f6;
    background: #fbfcfe;
}

.service-detail-card > footer a {
    color: #6c788a;
    font-size: 12px;
    font-weight: 700;
}

.service-detail-card > footer a:last-child {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--blue);
}

.service-detail-card > footer a:hover {
    color: var(--orange);
}

.service-prep {
    display: grid;
    grid-template-columns: 1.05fr 1.5fr;
    align-items: center;
    gap: 36px;
    margin-top: 28px;
    padding: 25px 28px;
    border-radius: 13px;
    color: var(--white);
    background: linear-gradient(112deg, #093a69, #155eef);
    box-shadow: 0 16px 34px rgba(21, 94, 239, 0.17);
}

.service-prep-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-prep-title > span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
}

.service-prep h2 {
    margin-bottom: 2px;
    font-size: 18px;
}

.service-prep p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.service-prep > ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-prep > ul li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
}

.service-prep > ul .icon {
    flex: 0 0 auto;
    color: #80e2b6;
}

.subpage-process {
    padding-block: 74px 86px;
    background: #f5f8fd;
}

.services-page-process {
    background: var(--white);
}

.subpage-pricing .price-panel,
.subpage-area .area-card,
.subpage-contact .contact-card {
    box-shadow: 0 18px 48px rgba(16, 42, 67, 0.09);
}

.pricing-subheading {
    margin: 66px 0 28px;
    text-align: center;
}

.pricing-subheading > p {
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.pricing-subheading h2 {
    margin-bottom: 8px;
    color: #0c1626;
    font-size: 30px;
    line-height: 1.3;
}

.pricing-subheading > span {
    display: block;
    width: 38px;
    height: 3px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: var(--blue);
}

.pricing-subheading > small {
    color: #7b8796;
    font-size: 12px;
}

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

.price-table-card {
    overflow: hidden;
    border: 1px solid #e1e8f2;
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 9px 28px rgba(16, 42, 67, 0.055);
}

.price-table-card > header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 24px;
    border-bottom: 1px solid #e5ebf3;
    background: linear-gradient(110deg, #f0f6ff, #f8fbff);
}

.price-table-card > header > span {
    display: inline-flex;
    width: 51px;
    height: 51px;
    flex: 0 0 51px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--white);
    box-shadow: 0 5px 16px rgba(21, 94, 239, 0.12);
}

.price-table-card h3 {
    margin-bottom: 3px;
    color: #172234;
    font-size: 18px;
}

.price-table-card header p {
    margin: 0;
    color: #758194;
    font-size: 12px;
}

.price-table-card ul {
    margin: 0;
    padding: 0 24px;
    list-style: none;
}

.price-table-card li {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-block: 13px;
}

.price-table-card li + li {
    border-top: 1px solid #edf1f6;
}

.price-table-card li div {
    min-width: 0;
}

.price-table-card li strong,
.price-table-card li small {
    display: block;
}

.price-table-card li strong {
    margin-bottom: 2px;
    color: #283343;
    font-size: 14px;
}

.price-table-card li small {
    color: #8a95a4;
    font-size: 11px;
}

.price-table-card li > span {
    flex: 0 0 auto;
    color: var(--orange);
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.pricing-rules-heading {
    margin-top: 62px;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 30px;
    padding: 25px 28px;
    border-radius: 13px;
    color: var(--white);
    background: linear-gradient(110deg, #0b3e73, #155eef);
    box-shadow: 0 16px 34px rgba(21, 94, 239, 0.18);
}

.pricing-cta > div {
    display: flex;
    align-items: center;
    gap: 17px;
}

.pricing-cta > div > span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
}

.pricing-cta h2 {
    margin-bottom: 2px;
    font-size: 19px;
}

.pricing-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
}

.pricing-cta .button {
    flex: 0 0 auto;
}

.pricing-faq-section {
    padding-block: 76px 86px;
    background: #f5f8fd;
}

.pricing-faq-list {
    display: grid;
    max-width: 1100px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px;
    margin-inline: auto;
}

.pricing-faq-intro {
    max-width: 720px;
    margin: -17px auto 27px;
    color: #748195;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
}

.pricing-faq-list details {
    overflow: hidden;
    border: 1px solid #e0e7f0;
    border-radius: 11px;
    background: var(--white);
    box-shadow: 0 7px 22px rgba(16, 42, 67, 0.04);
}

.pricing-faq-list details[open] {
    border-color: #cbdcff;
    box-shadow: 0 10px 28px rgba(21, 94, 239, 0.08);
}

.pricing-faq-list summary {
    position: relative;
    padding: 19px 58px 19px 22px;
    color: #202c3d;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.pricing-faq-list summary::-webkit-details-marker {
    display: none;
}

.pricing-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 22px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: #edf4ff;
    content: "+";
    font-size: 19px;
    line-height: 1;
    transform: translateY(-50%);
}

.pricing-faq-list details[open] summary::after {
    content: "−";
}

.pricing-faq-list details[open] summary {
    color: var(--blue);
}

.pricing-faq-list details p {
    margin: 0;
    padding: 0 58px 20px 22px;
    color: #697688;
    font-size: 13px;
    line-height: 1.8;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.detail-card {
    padding: 27px 28px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fbfcfe;
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.04);
}

.detail-card > span {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    color: var(--blue);
    background: #eaf2ff;
}

.detail-card h3 {
    margin-bottom: 7px;
    color: #1c2736;
    font-size: 17px;
}

.detail-card p {
    margin: 0;
    color: #667386;
    font-size: 13px;
    line-height: 1.75;
}

.area-zones-heading {
    margin: 62px 0 28px;
    text-align: center;
}

.area-zones-heading > p {
    margin-bottom: 5px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.area-zones-heading h2 {
    margin-bottom: 8px;
    color: #0c1626;
    font-size: 30px;
    line-height: 1.3;
}

.area-zones-heading > span {
    display: block;
    width: 38px;
    height: 3px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: var(--blue);
}

.area-zones-heading > small {
    color: #7b8796;
    font-size: 12px;
}

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

.service-zone-card {
    padding: 24px 25px 22px;
    border: 1px solid #e0e7f0;
    border-radius: 12px;
    background: #fbfcfe;
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.045);
}

.service-zone-card.is-core {
    border-color: #b9d0ff;
    background: linear-gradient(140deg, #eef5ff, #ffffff);
    box-shadow: 0 12px 28px rgba(21, 94, 239, 0.09);
}

.service-zone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 16px;
}

.service-zone-top > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: #eaf2ff;
}

.service-zone-card.is-core .service-zone-top > span {
    color: var(--white);
    background: var(--blue);
}

.service-zone-top em {
    padding: 4px 9px;
    border-radius: 999px;
    color: #66758a;
    background: #eef2f7;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.service-zone-card.is-core .service-zone-top em {
    color: var(--blue);
    background: #e1ecff;
}

.service-zone-card h3 {
    margin-bottom: 7px;
    color: #1a2637;
    font-size: 18px;
}

.service-zone-card p {
    min-height: 46px;
    margin: 0 0 15px;
    color: #697689;
    font-size: 12px;
    line-height: 1.75;
}

.service-zone-card > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.service-zone-card > a:hover {
    color: var(--orange);
}

.area-arrangement-heading {
    margin-top: 58px;
    margin-bottom: 0;
}

.subpage-area .area-card {
    min-height: 285px;
    grid-template-columns: 44% 56%;
}

.subpage-area .map-visual {
    min-height: 285px;
}

.subpage-contact {
    background: #f5f8fd;
}

.site-footer {
    color: rgba(255, 255, 255, 0.76);
    background: linear-gradient(120deg, #082e4c, #07253f 58%, #052039);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.2fr;
    gap: 0;
    padding-top: 56px;
    padding-bottom: 45px;
}

.footer-grid > div {
    min-width: 0;
    padding: 0 38px;
}

.footer-grid > div:first-child {
    padding-left: 0;
}

.footer-grid > div + div {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.brand-light {
    color: var(--white);
}

.brand-light .brand-mark {
    background: rgba(255, 255, 255, 0.12);
}

.footer-brand > p {
    margin: 18px 0 14px;
    font-size: 13px;
    line-height: 1.9;
}

.footer-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
}

.footer-column h2 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 17px;
}

.footer-column a,
.footer-column p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
}

.footer-column a {
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact {
    display: grid;
    align-content: start;
    gap: 7px;
}

.footer-contact h2 {
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}

.mobile-actions {
    display: none;
}

@media (max-width: 1180px) {
    .site-menu {
        gap: 27px;
        margin-right: 30px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .trust-item {
        padding-inline: 17px;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-card {
        min-height: 220px;
    }

    .price-item {
        padding-inline: 18px;
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .process-arrow {
        display: none;
    }

    .process-card {
        grid-template-columns: 50px auto;
        padding-inline: 15px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
    }

    .process-number {
        left: 63px;
    }

    .contact-card {
        grid-template-columns: 34% 66%;
    }

    .contact-photo {
        display: none;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .shell {
        width: min(calc(100% - 40px), 760px);
    }

    .topbar {
        display: none;
    }

    .navbar {
        position: fixed;
        z-index: 80;
        top: 0;
        right: 0;
        left: 0;
        height: 72px;
    }

    .site-header {
        height: 72px;
    }

    .brand {
        font-size: 20px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

    .menu-toggle {
        position: relative;
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        padding: 0;
        border: 0;
        border-radius: 8px;
        color: var(--navy);
        background: transparent;
    }

    .menu-close {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-open {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .menu-close {
        display: inline-flex;
    }

    .site-menu {
        position: fixed;
        z-index: 75;
        top: 72px;
        right: 0;
        left: 0;
        display: grid;
        align-content: start;
        gap: 0;
        margin: 0;
        padding: 14px 20px 26px;
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.99);
        box-shadow: 0 18px 36px rgba(16, 42, 67, 0.14);
        opacity: 0;
        transform: translateY(-14px);
        visibility: hidden;
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    }

    .site-menu.is-open {
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }

    .site-menu a {
        min-height: 51px;
        justify-content: center;
        border-bottom: 1px solid #edf0f4;
    }

    .site-menu a::after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: 740px;
    }

    .hero-inner {
        min-height: 740px;
        grid-template-columns: 1fr;
        grid-template-rows: auto 330px;
    }

    .hero-copy {
        padding: 60px 20px 48px;
        text-align: center;
    }

    .eyebrow,
    .hero-note {
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(39px, 7vw, 55px);
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-photo {
        height: 330px;
    }

    .hero-source {
        top: -28%;
        left: -10%;
        width: 113%;
    }

    .hero-photo-shade {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 30%);
    }

    .trust-strip {
        bottom: -130px;
        grid-template-columns: repeat(2, 1fr);
        padding: 13px;
    }

    .trust-item {
        padding: 12px 18px;
    }

    .trust-item + .trust-item {
        border-left: 0;
    }

    .trust-item:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .trust-item:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

    .services-section {
        padding-top: 200px;
    }

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

    .price-item:nth-child(3) {
        border-left: 0;
    }

    .price-item:nth-child(n + 3) {
        border-top: 1px solid var(--line);
    }

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

    .area-card {
        grid-template-columns: 1fr;
    }

    .area-copy {
        padding: 38px 40px;
    }

    .map-visual {
        min-height: 260px;
    }

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

    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-details {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 10px 40px;
    }

    .contact-details .mini-heading {
        grid-column: 1;
        grid-row: 1;
    }

    .contact-details ul {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .contact-phone {
        grid-column: 1;
    }

    .appointment-form {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

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

    .footer-grid > div {
        padding-inline: 30px;
    }

    .footer-grid > div:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 64px;
    }

    body {
        padding-bottom: 66px;
        font-size: 15px;
    }

    .shell {
        width: min(calc(100% - 28px), 520px);
    }

    .navbar {
        height: 64px;
    }

    .site-header {
        height: 64px;
    }

    .nav-inner {
        width: calc(100% - 28px);
    }

    .site-menu {
        top: 64px;
    }

    .brand {
        gap: 8px;
        font-size: 18px;
    }

    .brand-mark {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .hero {
        min-height: auto;
    }

    .hero-inner {
        width: 100%;
        min-height: auto;
        grid-template-rows: auto 245px;
    }

    .hero-copy {
        padding: 48px 22px 40px;
    }

    .eyebrow {
        margin-bottom: 15px;
        font-size: 11px;
    }

    .hero h1 {
        margin-bottom: 15px;
        font-size: clamp(34px, 10vw, 45px);
        line-height: 1.26;
    }

    .hero-subtitle {
        margin-bottom: 23px;
        font-size: 16px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-actions .button {
        min-height: 48px;
        flex: 1;
        padding-inline: 14px;
    }

    .hero-note {
        align-items: flex-start;
        margin-top: 17px;
        font-size: 11px;
        text-align: left;
    }

    .hero-photo {
        height: 245px;
    }

    .hero-source {
        top: -17%;
        left: -19%;
        width: 123%;
    }

    .trust-strip {
        right: 14px;
        bottom: -169px;
        left: 14px;
        min-height: 0;
        padding: 8px;
        border-radius: 11px;
    }

    .trust-item {
        gap: 10px;
        padding: 12px 8px;
    }

    .trust-icon {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
    }

    .trust-icon .icon {
        width: 22px;
        height: 22px;
    }

    .trust-item strong {
        font-size: 14px;
    }

    .trust-item small {
        font-size: 9px;
        white-space: normal;
    }

    .section {
        padding-block: 58px;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .services-section {
        padding-top: 224px;
        padding-bottom: 55px;
    }

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

    .service-card {
        min-height: 205px;
        padding: 23px 12px 18px;
    }

    .service-icon {
        height: 52px;
        margin-bottom: 13px;
    }

    .service-icon .icon {
        width: 43px;
        height: 43px;
    }

    .service-card h3 {
        margin-bottom: 6px;
        font-size: 16px;
    }

    .service-card p {
        font-size: 11px;
    }

    .service-card a {
        opacity: 1;
        transform: none;
    }

    .pricing-section {
        padding-block: 56px;
    }

    .price-grid {
        padding: 8px;
    }

    .price-item {
        min-height: 112px;
        gap: 11px;
        padding-inline: 10px;
    }

    .price-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .price-icon .icon {
        width: 26px;
        height: 26px;
    }

    .price-item h3 {
        font-size: 12px;
    }

    .price-item p strong {
        font-size: 30px;
    }

    .price-note {
        padding: 10px 14px;
        font-size: 10px;
        text-align: left;
    }

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

    .process-card {
        min-height: 96px;
        grid-template-columns: 54px auto;
        padding: 14px 18px;
    }

    .process-number {
        top: 14px;
        left: 78px;
    }

    .process-card h3 {
        margin-top: 9px;
    }

    .area-section {
        padding-top: 20px;
    }

    .area-copy {
        padding: 30px 24px;
    }

    .mini-heading h2 {
        font-size: 25px;
    }

    .area-title {
        margin-top: 24px;
    }

    .area-title strong {
        font-size: 15px;
    }

    .area-copy > p,
    .area-copy > a {
        padding-left: 0;
    }

    .map-visual {
        min-height: 220px;
    }

    .coverage-shape {
        right: 25px;
        left: 25px;
    }

    .case-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .case-card {
        min-height: 0;
        padding: 21px;
    }

    .contact-section {
        padding-top: 38px;
        padding-bottom: 46px;
    }

    .contact-details {
        display: block;
        padding: 29px 23px 25px;
    }

    .contact-details .mini-heading {
        margin-bottom: 24px;
    }

    .contact-details ul {
        margin-bottom: 22px;
    }

    .appointment-form {
        padding: 27px 22px 24px;
    }

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

    .form-message {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 42px;
        padding-bottom: 32px;
    }

    .footer-grid > div,
    .footer-grid > div:first-child,
    .footer-grid > div:nth-child(3) {
        padding: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 0;
    }

    .footer-grid > div:first-child {
        padding-top: 0;
        border-top: 0;
    }

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

    .footer-bottom {
        min-height: 76px;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        text-align: center;
    }

    .mobile-actions {
        position: fixed;
        z-index: 100;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        height: 66px;
        grid-template-columns: repeat(2, 1fr);
        padding: 7px 9px calc(7px + env(safe-area-inset-bottom));
        border-top: 1px solid #dce3ec;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 -8px 24px rgba(16, 42, 67, 0.12);
        backdrop-filter: blur(12px);
    }

    .mobile-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0 4px;
        border-radius: 7px;
        color: var(--white);
        background: var(--blue);
        font-weight: 700;
    }

    .mobile-actions a:last-child {
        background: var(--orange);
    }
}

@media (max-width: 900px) {
    .page-hero-inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 50px;
    }

    .page-hero-summary {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0 20px;
        padding: 22px 25px;
    }

    .page-hero-icon {
        grid-row: 1 / span 2;
        margin: 0;
    }

    .page-hero-summary h2 {
        align-self: end;
        margin-bottom: 7px;
    }

    .subpage-section,
    .subpage-process {
        padding-block: 64px 72px;
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-prep {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .price-table-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .subpage-area .area-card {
        grid-template-columns: 1fr;
    }

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

    .subpage-area .map-visual {
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .page-hero-inner {
        gap: 24px;
        padding-block: 38px 42px;
    }

    .breadcrumb {
        margin-bottom: 18px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .page-hero-copy > p:last-of-type {
        margin-bottom: 22px;
        font-size: 14px;
    }

    .page-hero-actions .button {
        min-height: 47px;
        flex: 1;
        padding-inline: 12px;
    }

    .page-hero-summary {
        display: block;
        padding: 22px;
    }

    .page-hero-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 13px;
    }

    .page-hero-icon .icon {
        width: 31px;
        height: 31px;
    }

    .subpage-section,
    .subpage-process {
        padding-block: 52px 58px;
    }

    .subpage-services .service-card {
        min-height: 205px;
    }

    .service-detail-section {
        padding-block: 52px 58px;
    }

    .service-detail-grid {
        gap: 13px;
    }

    .service-detail-card > header {
        padding: 20px;
    }

    .service-detail-card ul {
        padding: 19px 20px;
    }

    .service-detail-card > footer {
        padding: 15px 20px;
    }

    .service-prep {
        margin-top: 20px;
        padding: 22px;
    }

    .service-prep > ul {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .detail-grid {
        gap: 12px;
        margin-top: 20px;
    }

    .detail-card {
        padding: 22px;
    }

    .area-zones-heading {
        margin-top: 48px;
    }

    .area-zones-heading h2 {
        font-size: 26px;
    }

    .area-zones-heading > small {
        display: block;
        line-height: 1.7;
        text-align: left;
    }

    .service-zone-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-zone-card {
        padding: 21px;
    }

    .service-zone-card p {
        min-height: 0;
    }

    .pricing-subheading {
        margin-top: 48px;
    }

    .pricing-subheading h2 {
        font-size: 26px;
    }

    .price-table-card > header {
        padding: 19px;
    }

    .price-table-card ul {
        padding-inline: 19px;
    }

    .price-table-card li {
        min-height: 72px;
        gap: 12px;
    }

    .pricing-cta {
        margin-top: 22px;
        padding: 22px;
    }

    .pricing-cta > div {
        align-items: flex-start;
    }

    .pricing-cta > div > span {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
    }

    .pricing-cta h2 {
        font-size: 17px;
    }

    .pricing-cta .button {
        width: 100%;
    }

    .pricing-faq-section {
        padding-block: 52px 58px;
    }

    .pricing-faq-intro {
        margin-top: -12px;
        margin-bottom: 22px;
        font-size: 12px;
        text-align: left;
    }

    .pricing-faq-list summary {
        padding: 17px 52px 17px 18px;
        font-size: 13px;
    }

    .pricing-faq-list {
        grid-template-columns: 1fr;
    }

    .pricing-faq-list summary::after {
        right: 17px;
    }

    .pricing-faq-list details p {
        padding: 0 18px 18px;
        font-size: 12px;
    }

    .subpage-area .map-visual {
        min-height: 220px;
    }
}

@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;
    }
}
