:root {
    --ink: #132238;
    --muted: #5f6e82;
    --blue: #203f92;
    --blue-strong: #142e7f;
    --teal: #18a7a7;
    --sky: #e8f3ff;
    --mint: #e8fbf7;
    --line: #dce5ef;
    --paper: #ffffff;
    --soft: #f7fafc;
    --shadow: 0 24px 70px rgba(19, 34, 56, 0.12);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(var(--max), calc(100% - 40px));
    margin: 16px auto 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(220, 229, 239, 0.9);
    border-radius: var(--radius);
    box-shadow: 0 12px 38px rgba(19, 34, 56, 0.08);
    backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.brand img,
.footer-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

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

.site-nav a {
    padding: 9px 11px;
    color: var(--muted);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

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

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--paper);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 54px;
    align-items: center;
    width: min(var(--max), calc(100% - 40px));
    min-height: calc(100vh - 110px);
    margin: 0 auto;
    padding: 70px 0 56px;
}

.hero h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero-copy,
.page-hero p {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.button.primary {
    color: #fff;
    background: var(--blue);
    box-shadow: 0 12px 28px rgba(32, 63, 146, 0.22);
}

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

.button.ghost {
    color: var(--blue);
    background: var(--sky);
    border-color: #cfe0f5;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(140deg, rgba(232, 243, 255, 0.94), rgba(232, 251, 247, 0.76)),
        radial-gradient(circle at 80% 15%, rgba(24, 167, 167, 0.22), transparent 35%);
    box-shadow: var(--shadow);
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 42px 22px auto auto;
    width: 230px;
    height: 230px;
    border: 26px solid rgba(32, 63, 146, 0.13);
    border-left-color: rgba(32, 63, 146, 0.48);
    border-radius: 50%;
}

.hero-logo-mark {
    position: absolute;
    top: 62px;
    right: 58px;
    width: 178px;
    height: 178px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 46px rgba(19, 34, 56, 0.12);
}

.hero-logo-mark img {
    width: 116px;
}

.care-card {
    position: relative;
    width: min(310px, 100%);
    padding: 20px;
    margin-top: 22px;
    border: 1px solid rgba(220, 229, 239, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 48px rgba(19, 34, 56, 0.08);
}

.care-card:first-of-type {
    margin-top: 210px;
}

.care-card:nth-of-type(3) {
    margin-left: auto;
}

.care-card strong,
.care-card span {
    display: block;
}

.care-card strong {
    font-size: 18px;
}

.care-card span {
    color: var(--muted);
    font-size: 14px;
}

.section,
.page-hero {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 84px 0;
}

.page-hero {
    padding-top: 82px;
    padding-bottom: 58px;
}

.page-hero.compact h1 {
    max-width: 900px;
    font-size: clamp(38px, 5vw, 64px);
}

.intro-band {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 40px;
    align-items: end;
    width: 100%;
    max-width: none;
    padding: 76px max(20px, calc((100vw - var(--max)) / 2));
    background: var(--soft);
}

.intro-band h2,
.section-heading h2,
.split h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: 0;
}

.intro-band p:last-child,
.split p,
.service-card p,
.service-list p,
.feature-grid p,
.values-panel p {
    color: var(--muted);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

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

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

.service-card,
.feature-grid article,
.service-list article,
.location-list article,
.values-panel,
.contact-details article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.service-card,
.feature-grid article,
.service-list article,
.location-list article,
.values-panel,
.contact-details article {
    padding: 24px;
}

.service-card h3,
.feature-grid h3,
.location-list h3,
.values-panel h3,
.contact-details h2,
.service-list h2 {
    margin: 0 0 10px;
    line-height: 1.2;
}

.service-card a,
.service-list a,
.contact-details a {
    color: var(--blue);
    font-weight: 800;
}

.icon-dot {
    display: block;
    width: 28px;
    height: 28px;
    margin-bottom: 18px;
    border: 8px solid var(--sky);
    border-left-color: var(--blue);
    border-radius: 50%;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
    gap: 44px;
    align-items: start;
}

.location-list,
.process-list {
    display: grid;
    gap: 16px;
}

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

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

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 13px;
    height: 7px;
    border-left: 3px solid var(--teal);
    border-bottom: 3px solid var(--teal);
    transform: rotate(-45deg);
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.stats-band article {
    padding: 34px;
    background: var(--soft);
}

.stats-band strong {
    display: block;
    color: var(--blue);
    font-size: 44px;
    line-height: 1;
}

.stats-band span {
    color: var(--muted);
    font-weight: 700;
}

.process-list article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.process-list span {
    grid-row: span 2;
    color: var(--teal);
    font-size: 24px;
    font-weight: 800;
}

.process-list strong {
    font-size: 19px;
}

.process-list p {
    margin: 2px 0 0;
    color: var(--muted);
}

.contact-section {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 34px;
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 14px;
}

.contact-details p {
    margin: 0;
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid #cbd7e4;
    border-radius: 7px;
    color: var(--ink);
    background: var(--paper);
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(24, 167, 167, 0.18);
    border-color: var(--teal);
}

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

.form-status {
    padding: 12px 14px;
    border-radius: 7px;
    background: var(--sky);
    color: var(--blue);
    font-weight: 800;
}

.form-status.success {
    background: var(--mint);
    color: #08776f;
}

.form-status.error {
    background: #fff0f0;
    color: #a42121;
}

.site-footer {
    margin-top: 70px;
    padding: 56px max(20px, calc((100vw - var(--max)) / 2)) 24px;
    color: #dfe8f5;
    background: #132238;
}

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

.footer-grid h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 17px;
}

.footer-grid p {
    margin: 0 0 8px;
    color: #b9c7d8;
}

.footer-grid a {
    color: #fff;
}

.footer-brand {
    margin-bottom: 14px;
    color: #fff;
}

.footer-brand img {
    background: #fff;
    border-radius: 7px;
}

.footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #aebed0;
    font-size: 14px;
}

.mailer-response {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 30px;
    text-align: center;
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
    }

    .nav-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--paper);
        box-shadow: 0 16px 40px rgba(19, 34, 56, 0.12);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero,
    .intro-band,
    .split,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 54px;
    }

    .hero-visual {
        min-height: 460px;
    }

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

@media (max-width: 680px) {
    .site-header,
    .hero,
    .section,
    .page-hero {
        width: min(100% - 28px, var(--max));
    }

    .brand span {
        font-size: 15px;
    }

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

    .hero-copy,
    .page-hero p {
        font-size: 16px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 430px;
        padding: 20px;
    }

    .hero-logo-mark {
        top: 34px;
        right: 28px;
        width: 128px;
        height: 128px;
    }

    .hero-logo-mark img {
        width: 84px;
    }

    .care-card:first-of-type {
        margin-top: 160px;
    }

    .service-grid,
    .feature-grid,
    .footer-grid,
    .service-list,
    .stats-band {
        grid-template-columns: 1fr;
    }

    .section,
    .page-hero {
        padding: 56px 0;
    }

    .intro-band {
        padding: 56px 20px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* Premium visual layer */
:root {
    --ink: #0b1935;
    --muted: #53657c;
    --blue: #2449b7;
    --blue-strong: #123185;
    --teal: #03a6b7;
    --aqua: #5ff1df;
    --coral: #ff7d66;
    --gold: #f3b84b;
    --sky: #eaf5ff;
    --mint: #e8fbf7;
    --line: rgba(154, 181, 210, 0.34);
    --paper: rgba(255, 255, 255, 0.9);
    --soft: #f5f9ff;
    --shadow: 0 26px 80px rgba(12, 29, 62, 0.16);
}

body {
    background:
        linear-gradient(115deg, rgba(234, 245, 255, 0.95) 0%, rgba(255, 255, 255, 0.94) 38%, rgba(232, 251, 247, 0.9) 100%),
        repeating-linear-gradient(90deg, rgba(36, 73, 183, 0.045) 0 1px, transparent 1px 92px);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(135deg, transparent 0 18%, rgba(95, 241, 223, 0.16) 18% 19%, transparent 19% 57%, rgba(36, 73, 183, 0.12) 57% 58%, transparent 58%),
        linear-gradient(45deg, transparent 0 68%, rgba(255, 125, 102, 0.08) 68% 69%, transparent 69%);
}

.site-header {
    padding: 13px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
    border-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 60px rgba(12, 29, 62, 0.13);
}

.brand img,
.footer-brand img {
    padding: 5px;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #eef7ff);
    box-shadow: inset 0 0 0 1px rgba(36, 73, 183, 0.08), 0 10px 24px rgba(12, 29, 62, 0.13);
}

.site-nav a {
    position: relative;
    overflow: hidden;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 5px;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--blue));
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
    background: rgba(234, 245, 255, 0.8);
}

.hero {
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 34px -32px 20px;
    z-index: -1;
    border-radius: 8px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.22)),
        linear-gradient(100deg, rgba(36, 73, 183, 0.08), rgba(3, 166, 183, 0.16), rgba(255, 125, 102, 0.07));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero h1,
.page-hero h1 {
    color: transparent;
    background: linear-gradient(115deg, #071733 0%, #2449b7 48%, #0097a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 7px 11px;
    color: #087782;
    border: 1px solid rgba(3, 166, 183, 0.18);
    border-radius: 999px;
    background: rgba(232, 251, 247, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--aqua));
    box-shadow: 0 0 0 4px rgba(3, 166, 183, 0.12);
}

.button {
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: translateX(-120%);
    transition: transform 420ms ease;
}

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

.button:hover::after {
    transform: translateX(120%);
}

.button.primary {
    background: linear-gradient(135deg, #2449b7, #03a6b7);
    box-shadow: 0 16px 38px rgba(36, 73, 183, 0.28);
}

.button.ghost {
    color: var(--blue-strong);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(234, 245, 255, 0.88));
    border-color: rgba(36, 73, 183, 0.15);
    box-shadow: 0 12px 28px rgba(12, 29, 62, 0.08);
}

.hero-visual {
    isolation: isolate;
    border-color: rgba(255, 255, 255, 0.7);
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22)),
        linear-gradient(135deg, rgba(36, 73, 183, 0.9), rgba(3, 166, 183, 0.74) 56%, rgba(95, 241, 223, 0.45));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-visual::before {
    inset: 38px 32px auto auto;
    width: 248px;
    height: 248px;
    border-width: 30px;
    border-color: rgba(255, 255, 255, 0.18);
    border-left-color: rgba(255, 255, 255, 0.62);
    border-bottom-color: rgba(95, 241, 223, 0.55);
    filter: drop-shadow(0 22px 38px rgba(4, 20, 56, 0.22));
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: auto 30px 28px;
    height: 92px;
    z-index: -1;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px 22px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
    transform: skewY(-4deg);
}

.hero-logo-mark,
.care-card,
.service-card,
.feature-grid article,
.service-list article,
.location-list article,
.values-panel,
.contact-details article,
.contact-form,
.process-list article,
.stats-band article {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56));
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 58px rgba(12, 29, 62, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
}

.hero-logo-mark {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 245, 255, 0.7));
}

.care-card {
    color: #ffffff;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
    border-color: rgba(255, 255, 255, 0.38);
}

.care-card strong {
    color: #ffffff;
}

.care-card span {
    color: rgba(255, 255, 255, 0.78);
}

.care-card::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 50%, #ffffff 0 18%, transparent 19%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(95, 241, 223, 0.26));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 12px 28px rgba(4, 20, 56, 0.18);
}

.intro-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(10, 28, 70, 0.96), rgba(28, 80, 183, 0.9) 58%, rgba(3, 166, 183, 0.82)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 48px);
}

.intro-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 42% 49%, transparent 49%);
    pointer-events: none;
}

.intro-band h2,
.intro-band p:last-child {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.intro-band .eyebrow {
    position: relative;
    z-index: 1;
    color: #d9fffb;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    padding: 74px 42px 64px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
        linear-gradient(120deg, rgba(234, 245, 255, 0.96), rgba(232, 251, 247, 0.82));
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.page-hero::before {
    content: "";
    position: absolute;
    right: 42px;
    top: 42px;
    width: 190px;
    height: 190px;
    border: 24px solid rgba(36, 73, 183, 0.12);
    border-left-color: rgba(36, 73, 183, 0.5);
    border-bottom-color: rgba(3, 166, 183, 0.38);
    border-radius: 50%;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: 72px;
    bottom: 34px;
    width: 260px;
    height: 76px;
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(36, 73, 183, 0.16) 0 1px, transparent 1px 18px),
        linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(95, 241, 223, 0.14));
    transform: skewY(-5deg);
}

.page-hero > * {
    position: relative;
    z-index: 1;
}

.service-card,
.feature-grid article,
.service-list article,
.location-list article,
.values-panel,
.contact-details article {
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after,
.feature-grid article::after,
.service-list article::after,
.location-list article::after,
.values-panel::after,
.contact-details article::after {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold));
}

.service-card:hover,
.feature-grid article:hover,
.service-list article:hover,
.location-list article:hover,
.contact-details article:hover {
    transform: translateY(-5px);
    border-color: rgba(3, 166, 183, 0.28);
    box-shadow: 0 28px 72px rgba(12, 29, 62, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.icon-dot,
.service-card::before,
.feature-grid article::before,
.service-list article::before,
.contact-details article::before,
.values-panel > h3::before {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 12%, transparent 13%),
        linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 14px 34px rgba(36, 73, 183, 0.24);
}

.icon-dot {
    position: relative;
}

.icon-dot::before {
    content: "";
    width: 28px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.service-card:nth-child(2) .icon-dot {
    background:
        linear-gradient(90deg, transparent 32%, rgba(255, 255, 255, 0.92) 32% 40%, transparent 40%),
        linear-gradient(135deg, #2449b7, #ff7d66);
}

.service-card:nth-child(3) .icon-dot {
    background:
        linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.9) 44% 56%, transparent 56%),
        linear-gradient(0deg, transparent 44%, rgba(255, 255, 255, 0.9) 44% 56%, transparent 56%),
        linear-gradient(135deg, #03a6b7, #f3b84b);
}

.feature-grid article::before,
.service-list article::before,
.contact-details article::before,
.values-panel > h3::before {
    content: "";
}

.feature-grid article:nth-child(1)::before,
.service-list article:nth-child(1)::before {
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 14%, transparent 15%),
        linear-gradient(135deg, #2449b7, #03a6b7);
}

.feature-grid article:nth-child(2)::before,
.service-list article:nth-child(2)::before {
    background:
        linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, 0.9) 30% 38%, transparent 38% 60%, rgba(255, 255, 255, 0.9) 60% 68%, transparent 68%),
        linear-gradient(135deg, #2449b7, #ff7d66);
}

.feature-grid article:nth-child(3)::before,
.service-list article:nth-child(3)::before {
    background:
        linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.9) 44% 56%, transparent 56%),
        linear-gradient(0deg, transparent 44%, rgba(255, 255, 255, 0.9) 44% 56%, transparent 56%),
        linear-gradient(135deg, #03a6b7, #f3b84b);
}

.feature-grid article:nth-child(4)::before,
.service-list article:nth-child(4)::before {
    background:
        radial-gradient(circle at 34% 50%, transparent 0 13%, rgba(255, 255, 255, 0.94) 14% 20%, transparent 21%),
        radial-gradient(circle at 66% 50%, transparent 0 13%, rgba(255, 255, 255, 0.94) 14% 20%, transparent 21%),
        linear-gradient(135deg, #2449b7, #03a6b7);
}

.service-list article:nth-child(5)::before {
    background:
        linear-gradient(90deg, transparent 45%, rgba(255, 255, 255, 0.9) 45% 55%, transparent 55%),
        linear-gradient(135deg, #ff7d66, #f3b84b);
}

.service-list article:nth-child(6)::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 22%, transparent 22% 38%, rgba(255, 255, 255, 0.9) 38% 62%, transparent 62% 78%, rgba(255, 255, 255, 0.9) 78%),
        linear-gradient(135deg, #123185, #03a6b7);
}

.contact-details article:nth-child(1)::before,
.contact-details article:nth-child(2)::before {
    background:
        linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, 0.92) 44% 56%, transparent 56%),
        linear-gradient(45deg, transparent 0 44%, rgba(255, 255, 255, 0.92) 44% 56%, transparent 56%),
        linear-gradient(135deg, #2449b7, #03a6b7);
}

.contact-details article:nth-child(3)::before {
    background:
        linear-gradient(45deg, transparent 20%, rgba(255, 255, 255, 0.9) 20% 31%, transparent 31% 54%, rgba(255, 255, 255, 0.9) 54% 66%, transparent 66%),
        linear-gradient(135deg, #03a6b7, #f3b84b);
}

.contact-details article:nth-child(4)::before,
.contact-details article:nth-child(5)::before {
    background:
        linear-gradient(135deg, transparent 0 44%, rgba(255, 255, 255, 0.9) 44% 56%, transparent 56%),
        linear-gradient(45deg, transparent 0 44%, rgba(255, 255, 255, 0.9) 44% 56%, transparent 56%),
        linear-gradient(135deg, #2449b7, #ff7d66);
}

.values-panel > h3 {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
}

.values-panel > h3::before {
    margin: 0;
    background:
        linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.9) 44% 56%, transparent 56%),
        linear-gradient(0deg, transparent 44%, rgba(255, 255, 255, 0.9) 44% 56%, transparent 56%),
        linear-gradient(135deg, #2449b7, #03a6b7);
}

.stats-band {
    border: 0;
    gap: 18px;
    overflow: visible;
    background: transparent;
}

.stats-band article {
    position: relative;
    overflow: hidden;
}

.stats-band strong {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.process-list article {
    border-left: 5px solid rgba(3, 166, 183, 0.72);
}

.process-list span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    box-shadow: 0 14px 30px rgba(36, 73, 183, 0.22);
}

.contact-form {
    position: relative;
    overflow: hidden;
    padding: 34px;
}

.contact-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--gold), var(--coral));
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-color: rgba(154, 181, 210, 0.48);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #071733, #122b68 58%, #087782),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 64px);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 46%, rgba(255, 255, 255, 0.1) 46% 52%, transparent 52%);
    pointer-events: none;
}

.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

@media (max-width: 980px) {
    .site-nav {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 245, 255, 0.92));
        backdrop-filter: blur(18px);
    }

    .page-hero::before,
    .page-hero::after {
        opacity: 0.32;
    }
}

@media (max-width: 680px) {
    .hero::before {
        inset: 24px -12px 12px;
    }

    .page-hero {
        padding: 48px 22px;
    }

    .page-hero::before,
    .page-hero::after {
        display: none;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .hero {
        gap: 34px;
        padding-top: 42px;
    }

    .hero-visual {
        display: grid;
        align-content: end;
        min-height: 382px;
        padding: 18px;
    }

    .hero-visual::before {
        width: 160px;
        height: 160px;
        border-width: 20px;
        inset: 26px 20px auto auto;
    }

    .hero-visual::after {
        height: 54px;
        inset: auto 18px 18px;
    }

    .hero-logo-mark {
        top: 28px;
        right: 28px;
        width: 108px;
        height: 108px;
    }

    .hero-logo-mark img {
        width: 70px;
    }

    .care-card {
        width: 100%;
        padding: 13px 14px;
        margin-top: 10px;
    }

    .care-card:first-of-type {
        margin-top: 132px;
    }

    .care-card::before {
        display: none;
    }

    .care-card strong {
        font-size: 16px;
    }

    .care-card span {
        font-size: 13px;
        line-height: 1.4;
    }
}
