:root {
    --ink: #071d2f;
    --ink-2: #15364d;
    --blue: #0789ca;
    --blue-dark: #006aab;
    --cyan: #42c7ee;
    --ice: #e9f8ff;
    --paper: #f7fbfd;
    --white: #fff;
    --muted: #607384;
    --line: #d7e4eb;
    --success: #0d805f;
    --danger: #b33838;
    --shadow: 0 18px 55px rgba(1, 30, 49, .12);
    --shadow-soft: 0 10px 30px rgba(1, 30, 49, .08);
    --radius: 26px;
    --radius-sm: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
    line-height: 1.22;
}

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

.section {
    padding: 104px 0;
}

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

.section--dark {
    color: var(--white);
    background: var(--ink);
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--blue);
    border-radius: 8px;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: none;
}

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

.top-strip {
    color: #d9f4ff;
    background: var(--ink);
    font-size: 13px;
    letter-spacing: .08em;
}

.top-strip__inner {
    display: flex;
    justify-content: space-between;
    min-height: 34px;
    align-items: center;
}

.top-strip__inner > span:first-child::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 9px;
    border-radius: 50%;
    background: #5ee9b5;
    box-shadow: 0 0 0 4px rgba(94, 233, 181, .13);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(215, 228, 235, .85);
    backdrop-filter: blur(16px);
    transition: box-shadow .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 26px rgba(7, 29, 47, .08);
}

.header-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.brand__word {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand__word strong {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: .03em;
}

.brand__word small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav > a:not(.button) {
    position: relative;
    font-size: 14px;
    font-weight: 700;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--blue);
    transform: scaleX(0);
    transition: transform .2s ease;
}

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

.menu-toggle {
    position: relative;
    display: none;
    width: 46px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--ice);
}

.menu-toggle > span:not(.sr-only) {
    position: absolute;
    left: 12px;
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: opacity .2s ease, transform .2s ease;
}

.menu-toggle > span:nth-child(1) {
    top: 14px;
}

.menu-toggle > span:nth-child(2) {
    top: 21px;
}

.menu-toggle > span:nth-child(3) {
    top: 28px;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-toggle:focus-visible {
    outline: 3px solid rgba(7, 137, 202, .35);
    outline-offset: 2px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--ink);
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button:focus-visible {
    outline: 3px solid rgba(66, 199, 238, .4);
    outline-offset: 3px;
}

.button--small {
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
}

.button--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    box-shadow: 0 10px 24px rgba(7, 137, 202, .22);
}

.button--dark {
    color: var(--white);
    background: var(--ink);
}

.button--white {
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.button--outline {
    border-color: var(--line);
    background: var(--white);
}

.button--outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, .55);
}

.button--block {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    color: var(--white);
    background: var(--ink);
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at 74% 30%, rgba(29, 137, 187, .2), transparent 34%),
        linear-gradient(90deg, #061f33 0%, #061f33 43%, #092a40 72%, #0a314a 100%);
}

.hero::after {
    position: absolute;
    top: -280px;
    left: 26%;
    width: 600px;
    height: 600px;
    content: "";
    border: 1px solid rgba(66, 199, 238, .25);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(66, 199, 238, .035), 0 0 0 170px rgba(66, 199, 238, .025);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 700px;
    padding: 84px 0 96px;
    align-items: center;
    grid-template-columns: 1fr;
}

.hero__content {
    position: relative;
    z-index: 3;
    width: min(59%, 720px);
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 8px 14px;
    align-items: center;
    gap: 9px;
    color: #bfeeff;
    border: 1px solid rgba(105, 220, 255, .35);
    border-radius: 999px;
    background: rgba(14, 102, 145, .2);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .1em;
}

.hero__eyebrow::before {
    width: 8px;
    height: 8px;
    content: "";
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 900;
    letter-spacing: -.045em;
}

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

.hero__lead {
    max-width: 650px;
    margin-bottom: 36px;
    color: #d7e8f1;
    font-size: 18px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__trust {
    display: flex;
    margin: 40px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 26px;
    color: #d7e8f1;
    list-style: none;
    font-size: 14px;
    font-weight: 600;
}

.hero__trust li::before {
    margin-right: 8px;
    color: var(--cyan);
    content: "✓";
    font-weight: 900;
}

.hero-card {
    position: relative;
    max-width: 370px;
    margin-left: auto;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 34px;
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
    backdrop-filter: blur(18px);
}

.hero-card__logo {
    overflow: hidden;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .98);
}

.hero-card__logo img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    object-fit: cover;
}

.hero-card__foot {
    display: flex;
    padding: 18px 6px 2px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hero-card__foot strong {
    display: block;
    font-size: 15px;
}

.hero-card__foot span {
    color: #b7d5e3;
    font-size: 12px;
}

.hero-card__roundel {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--ink);
    border-radius: 50%;
    background: var(--cyan);
    font-size: 20px;
    font-weight: 900;
}

.hero-visual {
    position: absolute;
    z-index: 1;
    top: 0;
    right: calc((100vw - 100%) / -2);
    bottom: 0;
    width: min(63vw, 800px);
    height: auto;
    margin: 0;
}

.hero-visual::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(6, 31, 51, .88) 0%, rgba(6, 31, 51, .34) 22%, transparent 52%);
    pointer-events: none;
}

.hero-visual__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    filter: saturate(.9) contrast(1.03);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .7) 14%, #000 30%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .7) 14%, #000 30%, #000 100%);
}

.hero-visual__brand {
    position: absolute;
    z-index: 2;
    top: 32px;
    right: 32px;
    overflow: hidden;
    width: 66px;
    height: 66px;
    padding: 3px;
    border: 3px solid rgba(255, 255, 255, .92);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

.hero-visual__brand img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero-visual__caption {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 36px;
    left: 31%;
    display: flex;
    padding: 15px 17px;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 17px;
    background: rgba(255, 255, 255, .91);
    box-shadow: 0 12px 30px rgba(3, 24, 38, .18);
    backdrop-filter: blur(12px);
}

.hero-visual__check {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--blue);
    font-weight: 900;
}

.hero-visual__caption strong,
.hero-visual__caption small {
    display: block;
}

.hero-visual__caption strong {
    font-size: 14px;
}

.hero-visual__caption small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
}

.hero-stats {
    position: relative;
    z-index: 3;
    margin-top: -42px;
}

.hero-stats__grid {
    display: grid;
    overflow: hidden;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow);
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    min-height: 122px;
    padding: 27px 30px;
    border-right: 1px solid var(--line);
}

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

.stat strong {
    display: block;
    margin-bottom: 6px;
    font-size: 20px;
    font-weight: 900;
}

.stat span {
    color: var(--muted);
    font-size: 13px;
}

.eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
}

.eyebrow--light {
    color: #9be7ff;
}

.section-heading {
    display: flex;
    margin-bottom: 50px;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading h2,
.content-heading h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -.035em;
}

.section-heading p {
    max-width: 440px;
    margin-bottom: 4px;
    color: var(--muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    border-color: rgba(7, 137, 202, .35);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.service-card__number {
    position: absolute;
    top: 30px;
    right: 34px;
    color: #d7ecf5;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
}

.service-card h3 {
    max-width: 330px;
    margin: 36px 0 16px;
    font-size: 28px;
    font-weight: 900;
}

.service-card p {
    max-width: 480px;
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    align-items: center;
    gap: 10px;
    color: var(--blue-dark);
    font-weight: 800;
}

.text-link:hover {
    gap: 14px;
}

.split {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 78px;
}

.photo-stack {
    position: relative;
    min-height: 570px;
}

.photo-stack__main {
    width: 82%;
    height: 540px;
    margin-left: auto;
    border-radius: 34px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.photo-stack__badge {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 220px;
    padding: 26px;
    color: var(--white);
    border-radius: 22px;
    background: var(--ink);
    box-shadow: var(--shadow);
}

.photo-stack__badge strong {
    display: block;
    margin-bottom: 8px;
    color: var(--cyan);
    font-size: 34px;
    font-weight: 900;
}

.content-heading > p {
    max-width: 590px;
    margin: 24px 0 0;
    color: var(--muted);
}

.check-list {
    display: grid;
    margin: 34px 0;
    padding: 0;
    list-style: none;
    gap: 18px;
}

.check-list li {
    position: relative;
    padding-left: 40px;
    font-weight: 700;
}

.check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 26px;
    height: 26px;
    content: "✓";
    place-items: center;
    color: var(--blue-dark);
    border-radius: 50%;
    background: var(--ice);
    font-size: 13px;
    font-weight: 900;
}

.process-grid {
    display: grid;
    counter-reset: steps;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.process-step {
    position: relative;
    padding-top: 66px;
}

.process-step::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 48px;
    height: 48px;
    counter-increment: steps;
    content: counter(steps, decimal-leading-zero);
    place-items: center;
    color: var(--ink);
    border-radius: 50%;
    background: var(--cyan);
    font-size: 13px;
    font-weight: 900;
}

.process-step:not(:last-child)::after {
    position: absolute;
    top: 23px;
    left: 62px;
    width: calc(100% - 50px);
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, .22);
}

.process-step h3 {
    font-size: 19px;
}

.process-step p {
    color: #b9cbd7;
    font-size: 14px;
}

.process-step--light {
    padding: 78px 24px 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--white);
}

.process-step--light::before {
    top: 20px;
    left: 24px;
}

.process-step--light:not(:last-child)::after {
    display: none;
}

.process-step--light p {
    color: var(--muted);
}

.process-step--light a {
    color: var(--blue);
    font-weight: 800;
}

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

.district-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.district-card h3 {
    margin-bottom: 18px;
    font-size: 20px;
}

.district-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.district-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.district-card__links a {
    padding: 4px 9px;
    color: var(--blue-dark);
    border-radius: 999px;
    background: var(--ice);
    font-size: 12px;
    font-weight: 800;
}

.district-card__links a:hover {
    color: var(--white);
    background: var(--blue-dark);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.quote-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
}

.quote-card__mark {
    color: var(--blue);
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.quote-card p {
    min-height: 110px;
    margin: 14px 0 22px;
}

.quote-card__person {
    color: var(--muted);
    font-size: 13px;
}

.faq-list {
    max-width: 900px;
    margin-inline: auto;
    border-top: 1px solid var(--line);
}

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

.faq-question {
    display: flex;
    width: 100%;
    padding: 26px 4px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--ink);
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 800;
}

.faq-question span:last-child {
    color: var(--blue);
    font-size: 24px;
    transition: transform .2s ease;
}

.faq-question[aria-expanded="true"] span:last-child {
    transform: rotate(45deg);
}

.faq-answer {
    max-width: 760px;
    padding: 0 4px 28px;
    color: var(--muted);
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 104px 0 90px;
    color: var(--white);
    background: var(--ink);
}

.page-hero::after {
    position: absolute;
    top: -140px;
    right: -80px;
    width: 500px;
    height: 500px;
    content: "";
    border: 1px solid rgba(66, 199, 238, .2);
    border-radius: 50%;
    box-shadow: 0 0 0 75px rgba(66, 199, 238, .025), 0 0 0 150px rgba(66, 199, 238, .018);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(44px, 6vw, 70px);
    font-weight: 900;
    letter-spacing: -.04em;
}

.page-hero p {
    max-width: 640px;
    margin-bottom: 0;
    color: #c9dce7;
    font-size: 18px;
}

.service-detail-list {
    display: grid;
    gap: 26px;
}

.service-detail {
    display: grid;
    padding: 42px;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    grid-template-columns: 120px 1fr 190px;
    gap: 34px;
}

.service-detail__num {
    color: #cce9f5;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.service-detail h2 {
    margin-bottom: 14px;
    font-size: 29px;
    font-weight: 900;
}

.service-detail p {
    margin-bottom: 0;
    color: var(--muted);
}

.service-detail__side {
    text-align: right;
}

.service-detail__price {
    display: block;
    margin-bottom: 16px;
    font-weight: 900;
}

.service-includes {
    display: flex;
    margin-top: 18px;
    padding: 0;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.service-includes li {
    padding: 6px 11px;
    color: var(--blue-dark);
    border-radius: 999px;
    background: var(--ice);
    font-size: 12px;
    font-weight: 700;
}

.form-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.form-card,
.info-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.form-card {
    padding: 42px;
}

.form-card h2 {
    margin-bottom: 8px;
    font-size: 28px;
}

.form-card__intro {
    margin-bottom: 30px;
    color: var(--muted);
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label,
.field > span {
    font-size: 14px;
    font-weight: 800;
}

.field label em {
    color: var(--danger);
    font-style: normal;
}

.input,
.select,
.textarea {
    width: 100%;
    min-height: 52px;
    padding: 12px 15px;
    color: var(--ink);
    border: 1px solid #cbdbe3;
    border-radius: 12px;
    outline: none;
    background: var(--white);
    transition: border-color .2s ease, box-shadow .2s ease;
}

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

.input:focus,
.select:focus,
.textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(7, 137, 202, .11);
}

.field-note {
    color: var(--muted);
    font-size: 12px;
}

.quantity {
    display: grid;
    border: 1px solid #cbdbe3;
    border-radius: 12px;
    grid-template-columns: 48px 1fr 48px;
}

.quantity button {
    border: 0;
    background: var(--ice);
    cursor: pointer;
    font-size: 21px;
}

.quantity button:first-child {
    border-radius: 11px 0 0 11px;
}

.quantity button:last-child {
    border-radius: 0 11px 11px 0;
}

.quantity input {
    width: 100%;
    border: 0;
    outline: none;
    text-align: center;
    font-weight: 800;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
}

.checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--blue);
}

.form-actions {
    display: flex;
    margin-top: 28px;
    align-items: center;
    gap: 16px;
}

.form-actions small {
    color: var(--muted);
}

.info-card {
    position: sticky;
    top: 110px;
    overflow: hidden;
}

.info-card__head {
    padding: 32px;
    color: var(--white);
    background: var(--ink);
}

.info-card__head h3 {
    font-size: 24px;
}

.info-card__head p {
    margin-bottom: 0;
    color: #c3d8e4;
    font-size: 14px;
}

.info-card__body {
    padding: 30px;
}

.info-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}

.contact-details {
    display: grid;
    font-style: normal;
    gap: 20px;
}

.contact-details > div {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
}

.contact-details strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}

.contact-details a,
.contact-details span span {
    color: var(--muted);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.contact-details a:hover {
    color: var(--blue);
}

.info-card__subheading {
    margin: 30px 0 18px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 15px;
}

.info-list--compact {
    gap: 16px;
}

.info-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
}

.info-list__icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--blue-dark);
    border-radius: 50%;
    background: var(--ice);
    font-weight: 900;
}

.info-list strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}

.info-list span:last-child {
    color: var(--muted);
    font-size: 13px;
}

.alert {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.alert--error {
    color: #862c2c;
    border: 1px solid #f0caca;
    background: #fff2f2;
}

.alert--success {
    color: #076248;
    border: 1px solid #bde4d6;
    background: #edfbf6;
}

.success-panel {
    max-width: 760px;
    margin-inline: auto;
    padding: 54px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.success-panel__icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    place-items: center;
    color: var(--success);
    border-radius: 50%;
    background: #e5f8f1;
    font-size: 34px;
    font-weight: 900;
}

.success-panel h1 {
    margin-bottom: 14px;
    font-size: 38px;
}

.success-panel p {
    color: var(--muted);
}

.reference-box {
    margin: 26px 0;
    padding: 18px;
    border-radius: 14px;
    background: var(--paper);
}

.reference-box strong {
    display: block;
    color: var(--blue-dark);
    font-size: 22px;
    letter-spacing: .06em;
}

.cta-band {
    padding: 70px 0;
    color: var(--white);
    background: linear-gradient(135deg, #00669f, #0799d8);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-band h2 {
    margin-bottom: 10px;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
}

.cta-band p {
    margin-bottom: 0;
    color: #d8f4ff;
}

.cta-band__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.site-footer {
    padding: 72px 0 28px;
    color: #c4d2db;
    background: #041623;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 58px;
}

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

.brand--footer .brand__word small {
    color: #8fa5b3;
}

.footer-brand p {
    max-width: 360px;
    margin-top: 22px;
    color: #8fa5b3;
    font-size: 14px;
}

.site-footer h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 15px;
}

.site-footer p {
    color: #8fa5b3;
    font-size: 13px;
}

.footer-contact {
    display: grid;
    color: #8fa5b3;
    font-size: 13px;
    font-style: normal;
    gap: 10px;
}

.footer-contact a,
.footer-contact span {
    color: inherit;
    overflow-wrap: anywhere;
}

.footer-contact a:hover {
    color: var(--cyan);
}

.footer-links {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 11px;
}

.footer-links a {
    color: #8fa5b3;
    font-size: 13px;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    margin-top: 58px;
    padding-top: 24px;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-bottom p {
    margin: 0;
}

.mobile-actions {
    display: none;
}

.whatsapp-float {
    position: fixed;
    z-index: 58;
    right: 26px;
    bottom: 26px;
    display: flex;
    min-height: 62px;
    padding: 8px 18px 8px 8px;
    align-items: center;
    gap: 11px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background: #16a967;
    box-shadow: 0 14px 36px rgba(3, 83, 48, .3);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.whatsapp-float:hover {
    background: #0e9459;
    box-shadow: 0 18px 42px rgba(3, 83, 48, .38);
    transform: translateY(-3px);
}

.whatsapp-float:focus-visible {
    outline: 3px solid rgba(37, 211, 102, .34);
    outline-offset: 4px;
}

.whatsapp-float__icon {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    color: #16a967;
    border-radius: 50%;
    background: var(--white);
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
}

.whatsapp-float__icon::after {
    position: absolute;
    bottom: 1px;
    left: 2px;
    width: 10px;
    height: 10px;
    content: "";
    background: var(--white);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: rotate(8deg);
}

.whatsapp-float__label {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.whatsapp-float__label strong {
    font-size: 13px;
    font-weight: 900;
}

.whatsapp-float__label small {
    margin-top: 3px;
    color: rgba(255, 255, 255, .82);
    font-size: 10px;
    letter-spacing: .04em;
}

.legal-copy {
    max-width: 840px;
}

.legal-copy h2 {
    margin: 40px 0 14px;
}

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

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

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

    .hero-visual {
        right: calc((100vw - 100%) / -2);
        width: 66vw;
        height: auto;
        margin: 0;
    }

    .split {
        gap: 46px;
    }

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

    .form-layout {
        grid-template-columns: 1fr 330px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 28px;
    }
}

@media (max-width: 840px) {
    .top-strip {
        display: none;
    }

    .site-header {
        backdrop-filter: none;
    }

    .header-inner {
        min-height: 72px;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        z-index: 40;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        padding: 28px 24px 110px;
        align-items: stretch;
        flex-direction: column;
        gap: 6px;
        background: var(--white);
        overflow-y: auto;
        overscroll-behavior: contain;
        pointer-events: none;
        transform: translateX(105%);
        transition: transform .25s ease;
        visibility: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .site-nav.is-open {
        pointer-events: auto;
        transform: none;
        visibility: visible;
    }

    .site-nav > a:not(.button) {
        padding: 14px 16px;
        border: 0;
        border-radius: 12px;
        font-size: 17px;
        transition: color .2s ease, background .2s ease;
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    .site-nav > a:not(.button):hover,
    .site-nav > a:not(.button):focus-visible,
    .site-nav > a:not(.button).is-active {
        color: var(--blue-dark);
        background: var(--ice);
    }

    .site-nav > a:not(.button):focus-visible {
        outline: 3px solid rgba(7, 137, 202, .28);
        outline-offset: 2px;
    }

    .site-nav .button {
        margin-top: 24px;
    }

    .hero,
    .hero__inner {
        min-height: auto;
    }

    .hero__inner {
        padding: 80px 0 120px;
        grid-template-columns: 1fr;
    }

    .hero-card {
        display: none;
    }

    .hero__content {
        width: min(72%, 650px);
    }

    .hero-visual {
        display: block;
        right: calc((100vw - 100%) / -2);
        width: 78vw;
        opacity: .58;
    }

    .hero-visual::before {
        background: linear-gradient(90deg, rgba(6, 31, 51, .95) 0%, rgba(6, 31, 51, .62) 38%, rgba(6, 31, 51, .12) 100%);
    }

    .hero-visual__photo {
        object-position: 62% center;
        filter: saturate(.78) contrast(1.02) brightness(.78);
    }

    .hero-visual__brand,
    .hero-visual__caption {
        display: none;
    }

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

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

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

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 18px;
    }

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

    .photo-stack {
        min-height: 510px;
    }

    .photo-stack__main {
        height: 480px;
    }

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

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

    .process-step:nth-child(2)::after {
        display: none;
    }

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

    .quote-card p {
        min-height: auto;
    }

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

    .service-detail__side {
        grid-column: 2;
        text-align: left;
    }

    .form-layout {
        grid-template-columns: 1fr;
    }

    .info-card {
        position: static;
    }

    .cta-band__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

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

@media (max-width: 620px) {
    body {
        padding-bottom: 68px;
    }

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

    .section {
        padding: 76px 0;
    }

    .brand__word strong {
        font-size: 18px;
    }

    .brand__word small {
        font-size: 9px;
    }

    .hero::before {
        background: linear-gradient(135deg, #061f33 0%, #082a40 100%);
    }

    .hero__inner {
        padding: 68px 0 100px;
    }

    .hero__content {
        width: 100%;
    }

    .hero-visual {
        width: 100vw;
        opacity: .42;
    }

    .hero-visual::before {
        background: linear-gradient(90deg, rgba(6, 31, 51, .98) 0%, rgba(6, 31, 51, .82) 48%, rgba(6, 31, 51, .38) 100%);
    }

    .hero h1 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .hero__lead {
        font-size: 16px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero__trust {
        gap: 10px 20px;
    }

    .hero-stats {
        margin-top: -34px;
    }

    .hero-stats__grid {
        border-radius: 18px;
    }

    .stat {
        min-height: 105px;
        padding: 22px 18px;
    }

    .stat strong {
        font-size: 17px;
    }

    .stat span {
        font-size: 11px;
    }

    .section-heading h2,
    .content-heading h2 {
        font-size: 34px;
    }

    .services-grid,
    .districts {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 300px;
        padding: 30px;
    }

    .photo-stack {
        min-height: 430px;
    }

    .photo-stack__main {
        width: 90%;
        height: 405px;
    }

    .photo-stack__badge {
        bottom: 22px;
        width: 190px;
        padding: 20px;
    }

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

    .process-grid--three {
        grid-template-columns: 1fr;
    }

    .process-step::after {
        display: none;
    }

    .page-hero {
        padding: 80px 0 70px;
    }

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

    .service-detail {
        padding: 28px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-detail__num {
        font-size: 40px;
    }

    .service-detail__side {
        grid-column: auto;
    }

    .form-card {
        padding: 26px 20px;
    }

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

    .field--full {
        grid-column: auto;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .success-panel {
        padding: 36px 22px;
    }

    .cta-band__actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-actions {
        position: fixed;
        z-index: 60;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        height: 68px;
        align-items: stretch;
        border-top: 1px solid var(--line);
        background: var(--white);
        box-shadow: 0 -8px 26px rgba(7, 29, 47, .1);
        grid-template-columns: repeat(3, 1fr);
    }

    .mobile-actions a {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        font-size: 11px;
        font-weight: 800;
    }

    .mobile-actions a span {
        margin-bottom: 2px;
        font-size: 17px;
    }

    .mobile-actions__primary {
        color: var(--white);
        background: var(--blue-dark);
    }

    .whatsapp-float {
        right: 14px;
        bottom: 82px;
        min-height: 56px;
        padding: 6px;
        border-radius: 50%;
    }

    .whatsapp-float__icon {
        width: 44px;
        height: 44px;
    }

    .whatsapp-float__label {
        display: none;
    }
}

.breadcrumbs {
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    font-size: 13px;
}

.breadcrumbs .container {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
}

.breadcrumbs a:hover {
    color: var(--blue-dark);
}

.area-hero .page-hero__content {
    max-width: 850px;
}

.area-hero__actions {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.area-trust {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    color: var(--white);
    background: #0a3048;
}

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

.area-trust__grid > div {
    min-height: 112px;
    padding: 24px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.area-trust__grid > div:last-child {
    border-right: 0;
}

.area-trust strong,
.area-trust span {
    display: block;
}

.area-trust strong {
    margin-bottom: 5px;
    font-size: 18px;
}

.area-trust span {
    color: #bcd4e1;
    font-size: 13px;
}

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

.area-price-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 30px 25px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.area-price-card.is-featured {
    border-color: rgba(7, 137, 202, .5);
    box-shadow: 0 20px 48px rgba(7, 137, 202, .16);
}

.area-price-card__badge {
    position: absolute;
    top: -13px;
    right: 20px;
    padding: 5px 12px;
    color: var(--white);
    border-radius: 999px;
    background: var(--blue-dark);
    font-size: 11px;
    font-weight: 800;
}

.area-price-card h3 {
    min-height: 52px;
    margin-bottom: 18px;
    font-size: 19px;
}

.area-price-card__price {
    display: flex;
    margin-bottom: 5px;
    align-items: baseline;
    gap: 5px;
}

.area-price-card__price > span,
.area-price-card__price > small {
    color: var(--muted);
    font-size: 12px;
}

.area-price-card__price strong {
    color: var(--blue-dark);
    font-size: 34px;
    letter-spacing: -.04em;
}

.area-price-card > p {
    color: var(--muted);
    font-size: 13px;
}

.area-price-card .check-list {
    margin-bottom: 24px;
    flex: 1;
}

.area-price-card .check-list li {
    font-size: 13px;
}

.area-price-note {
    display: grid;
    margin-top: 22px;
    padding: 22px 25px;
    align-items: center;
    border: 1px solid #bfe3f3;
    border-radius: 16px;
    background: var(--ice);
    grid-template-columns: auto 1fr auto;
    gap: 18px;
}

.area-price-note p {
    margin: 0;
    color: var(--ink-2);
}

.area-price-note > span {
    font-size: 13px;
    font-weight: 800;
}

.area-tags {
    display: flex;
    margin: 22px 0;
    flex-wrap: wrap;
    gap: 9px;
}

.area-tags span {
    padding: 7px 13px;
    color: var(--blue-dark);
    border: 1px solid #bfe3f3;
    border-radius: 999px;
    background: var(--ice);
    font-size: 13px;
    font-weight: 800;
}

.area-coverage__note {
    padding: 16px 18px;
    border-left: 3px solid var(--blue);
    background: var(--paper);
    font-size: 14px;
}

.faq-list--dark .faq-item {
    border-color: rgba(255, 255, 255, .15);
    background: rgba(255, 255, 255, .06);
}

.faq-list--dark .faq-question,
.faq-list--dark .faq-answer {
    color: var(--white);
}

.faq-list--dark .faq-answer {
    color: #c8dce7;
}

.area-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.area-link-grid a {
    display: grid;
    padding: 20px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 15px;
    grid-template-columns: 1fr auto;
}

.area-link-grid a:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-soft);
}

.area-link-grid strong,
.area-link-grid span {
    display: block;
}

.area-link-grid span {
    color: var(--muted);
    font-size: 12px;
}

.area-link-grid i {
    grid-column: 2;
    grid-row: 1 / 3;
    color: var(--blue-dark);
    font-style: normal;
}

.area-region + .area-region {
    margin-top: 72px;
}

.area-region__head {
    display: flex;
    margin-bottom: 20px;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.area-region__head h3 {
    margin-bottom: 14px;
    font-size: 27px;
}

.area-region__head span {
    color: var(--muted);
    font-size: 13px;
}

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

.area-directory-card {
    display: flex;
    min-width: 0;
    padding: 26px;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, border-color .2s ease;
}

.area-directory-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
}

.area-directory-card__region {
    color: var(--blue-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.area-directory-card h3 {
    margin: 8px 0;
    font-size: 21px;
}

.area-directory-card > p {
    color: var(--muted);
    font-size: 13px;
}

.area-directory-card > div {
    display: grid;
    margin: 8px 0 20px;
    gap: 5px;
    font-size: 13px;
}

.area-directory-card > strong {
    margin-top: auto;
    color: var(--blue-dark);
    font-size: 13px;
}

.cookie-settings-link {
    padding: 0;
    color: inherit;
    border: 0;
    background: transparent;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: flex;
    width: min(860px, calc(100% - 44px));
    margin: 0 auto;
    padding: 20px 22px;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 18px;
    background: rgba(5, 30, 48, .98);
    box-shadow: 0 22px 70px rgba(3, 22, 35, .38);
    gap: 24px;
}

.cookie-consent__copy {
    max-width: 570px;
}

.cookie-consent__copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.cookie-consent__copy p {
    margin: 0;
    color: #c6dce8;
    font-size: 13px;
    line-height: 1.65;
}

.cookie-consent__copy a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cookie-consent__actions .button--outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, .45);
}

@media (max-width: 1050px) {
    .area-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 760px) {
    .area-trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-trust__grid > div:nth-child(2) {
        border-right: 0;
    }

    .area-trust__grid > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .area-price-grid,
    .area-directory-grid,
    .area-link-grid {
        grid-template-columns: 1fr;
    }

    .area-price-note {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .area-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-consent {
        right: 12px;
        bottom: 78px;
        left: 12px;
        width: calc(100% - 24px);
        padding: 18px;
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .cookie-consent__actions .button {
        width: 100%;
        min-height: 46px;
        padding-inline: 12px;
    }
}

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