:root {
    --ink: #121821;
    --ink-soft: #59616d;
    --navy: #07111f;
    --navy-2: #0d1b2d;
    --paper: #f7f6f1;
    --paper-2: #eeede7;
    --white: #fff;
    --line: rgba(18, 24, 33, .13);
    --line-light: rgba(255, 255, 255, .14);
    --accent: #f4d44d;
    --accent-strong: #eac52d;
    --success: #2b7c50;
    --danger: #b23a48;
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 32px;
    --shadow: 0 28px 80px rgba(10, 18, 29, .12);
    --container: 1240px;
    --header-height: 88px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
select {
    cursor: pointer;
}

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

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

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

.section {
    padding: 128px 0;
}

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

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

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: var(--navy);
    background: var(--accent);
    border-radius: 9px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

.offer-bar {
    position: relative;
    z-index: 1002;
    color: var(--navy);
    background: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
}

.offer-bar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.offer-bar__dot {
    width: 7px;
    height: 7px;
    background: var(--navy);
    border-radius: 50%;
}

.offer-bar a {
    margin-left: 12px;
    border-bottom: 1px solid currentColor;
}

.site-header {
    position: absolute;
    z-index: 1000;
    top: 38px;
    left: 0;
    right: 0;
    color: var(--white);
    border-bottom: 1px solid var(--line-light);
    transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-header--no-offer:not(.is-fixed) {
    top: 0;
}

.site-header.is-fixed {
    position: fixed;
    top: 0;
    color: var(--ink);
    background: rgba(247, 246, 241, .92);
    box-shadow: 0 8px 40px rgba(8, 17, 31, .08);
    border-bottom-color: var(--line);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 36px;
}

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

.brand__mark {
    position: relative;
    width: 42px;
    height: 30px;
    border: 2px solid currentColor;
    border-radius: 7px;
}

.brand__mark::before,
.brand__mark::after {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 11px;
    height: 2px;
    background: currentColor;
}

.brand__mark::before { left: 6px; transform: rotate(-18deg); }
.brand__mark::after { right: 6px; transform: rotate(18deg); }

.brand__mark span {
    position: absolute;
    inset: 5px;
    background: linear-gradient(135deg, transparent 43%, var(--accent) 44% 57%, transparent 58%);
    opacity: .9;
}

.brand__copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand__copy strong {
    font-size: 16px;
    letter-spacing: .08em;
}

.brand__copy small {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .11em;
    opacity: .62;
    text-transform: uppercase;
}

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

.main-nav a {
    position: relative;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-contact {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
}

.header-contact span {
    margin-bottom: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    opacity: .55;
    text-transform: uppercase;
}

.header-contact a {
    font-size: 17px;
    font-weight: 750;
    letter-spacing: .015em;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    margin: 5px auto;
    background: currentColor;
    transition: transform .25s ease;
}

.hero {
    position: relative;
    min-height: min(900px, 100vh);
    overflow: hidden;
    isolation: isolate;
}

.hero__media,
.hero__veil {
    position: absolute;
    inset: 0;
}

.hero__media {
    z-index: -3;
}

.hero__media picture,
.hero__media img {
    width: 100%;
    height: 100%;
}

.hero__media img {
    object-fit: cover;
    object-position: 50% center;
}

.hero__veil {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 13, 24, .99) 0%, rgba(5, 13, 24, .94) 29%, rgba(5, 13, 24, .55) 58%, rgba(5, 13, 24, .11) 82%),
        linear-gradient(0deg, rgba(5, 13, 24, .9) 0%, transparent 42%);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 620px;
    height: 620px;
    top: 48%;
    left: -420px;
    border: 1px solid rgba(244, 212, 77, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(244, 212, 77, .025), 0 0 0 200px rgba(244, 212, 77, .015);
}

.hero__inner {
    position: relative;
    min-height: min(900px, 100vh);
    padding-top: calc(var(--header-height) + 112px);
    padding-bottom: 94px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__content {
    width: min(675px, 61%);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 27px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow {
    color: rgba(255, 255, 255, .7);
}

.eyebrow span {
    width: 31px;
    height: 1px;
    background: var(--accent);
}

.hero h1,
.section-heading h2,
.diagnostic h2,
.promo h2,
.request h2,
.faq h2,
.contacts h2 {
    margin-bottom: 0;
    font-size: clamp(52px, 6.1vw, 92px);
    font-weight: 650;
    line-height: .95;
    letter-spacing: -.055em;
}

.hero h1 em {
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.045em;
}

.hero__lead {
    max-width: 605px;
    margin: 30px 0 34px;
    color: rgba(255, 255, 255, .7);
    font-size: 19px;
    line-height: 1.65;
}

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

.button {
    min-height: 58px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
}

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

.button:active {
    transform: translateY(0);
}

.button--accent {
    color: var(--navy);
    background: var(--accent);
}

.button--accent:hover {
    background: #ffe370;
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .045);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.button--ghost:hover {
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .1);
}

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

.button--dark:hover {
    background: #15263c;
}

.button--wide {
    width: 100%;
    border-radius: var(--radius-sm);
}

.hero__proof {
    margin-top: 62px;
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line-light);
}

.hero__proof > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero__proof strong {
    color: var(--accent);
    font-size: 11px;
    letter-spacing: .08em;
}

.hero__proof span {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.45;
}

.hero__address {
    position: absolute;
    right: 0;
    bottom: 62px;
}

.glass-card {
    width: 326px;
    padding: 18px 18px;
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 13px;
    background: rgba(8, 17, 31, .64);
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: background .25s ease, transform .25s var(--ease);
}

.glass-card:hover {
    background: rgba(8, 17, 31, .82);
    transform: translateY(-3px);
}

.glass-card__pin {
    position: relative;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(244, 212, 77, .5);
    border-radius: 50% 50% 50% 8px;
    transform: rotate(-45deg) scale(.75);
}

.glass-card__pin::after {
    content: "";
    position: absolute;
    inset: 12px;
    background: var(--accent);
    border-radius: 50%;
}

.glass-card > span:nth-child(2) {
    display: flex;
    flex-direction: column;
}

.glass-card small,
.glass-card em {
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    font-style: normal;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.glass-card strong {
    margin: 4px 0 3px;
    font-size: 13px;
}

.hero__scroll {
    position: absolute;
    bottom: 90px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .35);
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.hero__scroll span {
    width: 42px;
    height: 1px;
    background: currentColor;
}

.quick-help {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.quick-help__inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.quick-help p {
    flex: 0 0 auto;
    margin: 0;
    font-size: 13px;
}

.quick-help p span {
    display: block;
    font-weight: 800;
}

.symptom-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.symptom-list::-webkit-scrollbar { display: none; }

.symptom-list button {
    flex: 0 0 auto;
    padding: 10px 15px;
    color: var(--ink-soft);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.symptom-list button:hover {
    color: var(--navy);
    background: var(--accent);
    border-color: var(--accent);
}

.section-heading {
    margin-bottom: 62px;
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    align-items: end;
    gap: 60px;
}

.section-heading h2,
.diagnostic h2,
.request h2,
.faq h2,
.contacts h2 {
    font-size: clamp(44px, 5vw, 72px);
}

.section-kicker {
    color: #7c6b19;
}

.section-kicker::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
}

.section-kicker--light {
    color: var(--accent);
}

.section-heading p,
.diagnostic__intro > p,
.request__copy > p,
.faq__intro > p {
    margin-bottom: 4px;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.7;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 350px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: rgba(255, 255, 255, .34);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: color .35s ease, background .35s ease, transform .35s var(--ease);
}

.service-card:hover {
    z-index: 2;
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-card--feature {
    grid-column: span 2;
    min-height: 430px;
    background: var(--accent);
}

.service-card--feature:hover {
    background: #ffe476;
}

.service-card--dark {
    color: var(--white);
    background: var(--navy);
}

.service-card--dark:hover {
    color: var(--white);
    background: #101e30;
}

.service-card__num {
    position: absolute;
    top: 27px;
    left: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    opacity: .55;
}

.service-card__body {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

.service-card p {
    min-height: 72px;
    margin-bottom: 22px;
    color: var(--ink-soft);
    font-size: 14px;
}

.service-card--dark p {
    color: rgba(255, 255, 255, .58);
}

.text-link {
    padding: 0 0 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    font-size: 12px;
    font-weight: 800;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translate(2px, -2px);
}

.tv-visual {
    position: absolute;
    top: 54px;
    right: 26px;
    width: 58%;
    aspect-ratio: 16 / 10;
    border: 10px solid var(--navy);
    border-radius: 10px;
    background:
        radial-gradient(circle at 68% 37%, rgba(244, 212, 77, .8) 0 3%, transparent 4%),
        repeating-linear-gradient(125deg, transparent 0 18px, rgba(7, 17, 31, .1) 19px 20px),
        var(--paper);
    box-shadow: 14px 18px 0 rgba(7, 17, 31, .11);
}

.tv-visual::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -32px;
    width: 76px;
    height: 22px;
    border-bottom: 7px solid var(--navy);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    transform: translateX(-50%);
}

.tv-visual span,
.tv-visual span::before,
.tv-visual span::after {
    position: absolute;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(7, 17, 31, .3);
}

.tv-visual span {
    width: 68px;
    height: 68px;
    top: 28%;
    left: 22%;
}

.tv-visual span::before { content: ""; inset: 11px; }
.tv-visual span::after { content: ""; inset: 24px; background: var(--navy); }

.screen-lines {
    position: absolute;
    inset: 0;
    opacity: .42;
}

.screen-lines i {
    position: absolute;
    top: -10%;
    bottom: -10%;
    width: 1px;
    background: linear-gradient(transparent, var(--accent), transparent);
    transform: rotate(14deg);
}

.screen-lines i:nth-child(1) { left: 23%; }
.screen-lines i:nth-child(2) { left: 44%; }
.screen-lines i:nth-child(3) { left: 65%; }
.screen-lines i:nth-child(4) { left: 86%; }

.diagnostic__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
}

.diagnostic__intro {
    position: sticky;
    top: 140px;
    align-self: start;
}

.diagnostic__intro > p {
    margin: 28px 0 34px;
    max-width: 500px;
}

.diagnostic__list {
    border-top: 1px solid var(--line);
}

.diagnostic__list button {
    width: 100%;
    min-height: 126px;
    padding: 25px 16px;
    display: grid;
    grid-template-columns: 48px 1fr auto 30px;
    align-items: center;
    gap: 18px;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    transition: padding .25s ease, background .25s ease;
}

.diagnostic__list button:hover {
    padding-left: 27px;
    padding-right: 5px;
    background: rgba(255, 255, 255, .38);
}

.diagnostic__list button > span {
    color: #8f7920;
    font-size: 11px;
    font-weight: 800;
}

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

.diagnostic__list em {
    max-width: 180px;
    color: var(--ink-soft);
    font-size: 12px;
    font-style: normal;
}

.diagnostic__list i {
    font-size: 22px;
    font-style: normal;
}

.process {
    overflow: hidden;
}

.process-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
}

.process-list li {
    position: relative;
    min-height: 275px;
    padding: 24px 42px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid var(--ink);
}

.process-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: -5px;
    right: 32px;
    width: 9px;
    height: 9px;
    background: var(--accent-strong);
    border-radius: 50%;
}

.process-list li:not(:last-child) {
    margin-right: 14px;
}

.process-list li > span {
    color: #8f7920;
    font-size: 12px;
    font-weight: 800;
}

.process-list h3 {
    margin-bottom: 14px;
    font-size: 24px;
    letter-spacing: -.025em;
}

.process-list p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 14px;
}

.promo {
    position: relative;
    padding: 92px 0;
    overflow: hidden;
}

.promo__orb {
    position: absolute;
    top: -220px;
    left: 38%;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(244, 212, 77, .15);
    border-radius: 50%;
    box-shadow: 0 0 120px rgba(244, 212, 77, .06);
}

.promo__inner {
    position: relative;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 60px;
}

.promo__badge {
    width: 190px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 212, 77, .55);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.promo__badge strong {
    color: var(--accent);
    font-size: 52px;
    line-height: 1;
    letter-spacing: -.06em;
}

.promo__badge span {
    margin-top: 7px;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
}

.promo h2 {
    font-size: clamp(38px, 4vw, 60px);
}

.request__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
    align-items: start;
}

.request__copy {
    padding-top: 24px;
}

.request__copy > p {
    max-width: 470px;
    margin: 30px 0 44px;
}

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

.request__direct > div {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line);
}

.request__direct span {
    margin-bottom: 7px;
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.request__direct a {
    font-size: 15px;
    font-weight: 750;
}

.lead-form {
    padding: 42px;
    background: var(--white);
    border: 1px solid rgba(18, 24, 33, .08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.field {
    position: relative;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.field > span {
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 58px;
    padding: 15px 17px;
    background: var(--paper);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.field input::placeholder,
.field textarea::placeholder {
    color: #9aa0a8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    background: var(--white);
    border-color: #8b7a2c;
    box-shadow: 0 0 0 4px rgba(244, 212, 77, .2);
}

.field.is-error input,
.field.is-error select,
.field.is-error textarea {
    border-color: var(--danger);
}

.field-error {
    min-height: 16px;
    margin-top: 4px;
    color: var(--danger);
    font-size: 11px;
}

.field--hidden {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.check-field {
    margin: 4px 0 22px;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--ink-soft);
    font-size: 11px;
}

.check-field input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--navy);
}

.check-field a {
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.check-field.is-error {
    color: var(--danger);
}

.form-note {
    margin: 15px auto 0;
    max-width: 460px;
    color: #858b93;
    font-size: 10px;
    text-align: center;
}

.form-status {
    display: none;
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 10px;
    font-size: 13px;
}

.form-status.is-visible { display: block; }
.form-status.is-success { color: #175337; background: #e7f5ed; }
.form-status.is-error { color: #7a1f2a; background: #fae9eb; }

.lead-form.is-loading .button {
    opacity: .65;
    pointer-events: none;
}

.faq__grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 110px;
}

.faq__intro > p {
    max-width: 380px;
    margin-top: 28px;
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion details {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    min-height: 94px;
    padding: 22px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    list-style: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary i {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.accordion summary i::before,
.accordion summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.accordion summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
    max-width: 670px;
    margin: -5px 58px 28px 0;
    color: var(--ink-soft);
    font-size: 15px;
}

.contacts {
    padding: 128px 0;
}

.contacts__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: stretch;
}

.contacts h2 {
    max-width: 650px;
}

.contact-list {
    margin-top: 58px;
    border-top: 1px solid var(--line-light);
}

.contact-list a {
    min-height: 76px;
    display: grid;
    grid-template-columns: 110px 1fr 24px;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--line-light);
    transition: padding .2s ease, background .2s ease;
}

.contact-list a:hover {
    padding-left: 12px;
    padding-right: 8px;
    background: rgba(255, 255, 255, .035);
}

.contact-list span {
    color: rgba(255, 255, 255, .42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.contact-list strong {
    font-size: 15px;
}

.contact-list i {
    color: var(--accent);
    font-style: normal;
}

.location-card {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-rows: minmax(340px, 1fr) auto;
    overflow: hidden;
    color: var(--ink);
    background: #eef0ed;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 65px rgba(0, 0, 0, .2);
}

.location-card__map {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: #dce3df;
}

.location-card__map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.location-card__top {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 13px 9px 10px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(7, 17, 31, .08);
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(7, 17, 31, .14);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.location-card__pin {
    position: relative;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50% 50% 50% 5px;
    transform: rotate(-45deg);
}

.location-card__pin::after {
    content: "";
    position: absolute;
    inset: 7px;
    background: var(--navy);
    border-radius: 50%;
}

.location-card__address {
    position: relative;
    z-index: 2;
    padding: 24px 28px 28px;
    background: #fff;
    border-top: 1px solid rgba(7, 17, 31, .08);
}

.location-card__address > span {
    color: var(--ink-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.location-card__address strong {
    margin: 10px 0 3px;
    display: block;
    font-size: 20px;
    line-height: 1.3;
}

.location-card__address p {
    margin-bottom: 18px;
    color: var(--ink-soft);
    font-size: 13px;
}

.location-card__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.location-card__address a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
}

.location-card__route {
    min-height: 42px;
    padding: 0 17px;
    color: var(--white);
    background: var(--navy);
    border-radius: 999px;
    transition: transform .2s ease, background .2s ease;
}

.location-card__route:hover {
    background: #13243b;
    transform: translateY(-1px);
}

.location-card__details {
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
}

.site-footer {
    color: rgba(255, 255, 255, .72);
    background: #040b14;
}

.site-footer__top {
    min-height: 160px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 30px;
}

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

.site-footer__top p {
    max-width: 360px;
    margin: 0;
    font-size: 13px;
}

.footer-phone {
    justify-self: end;
    color: var(--white);
    font-size: 24px;
    font-weight: 750;
}

.site-footer__bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 28px;
    color: rgba(255, 255, 255, .38);
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 10px;
}

.site-footer__bottom span {
    margin-right: auto;
}

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

.footer-cookie {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font-size: inherit;
}

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

.floating-whatsapp {
    position: fixed;
    z-index: 850;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: #1faF63;
    border: 5px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    box-shadow: 0 12px 38px rgba(7, 17, 31, .2);
    transition: transform .25s var(--ease);
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp span {
    font-size: 18px;
    font-weight: 900;
}

.mobile-actions {
    display: none;
}

.cookie-banner {
    position: fixed;
    z-index: 1500;
    right: 24px;
    bottom: 24px;
    left: 24px;
    max-width: 820px;
    margin: 0 auto;
    padding: 18px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 22px;
    color: var(--white);
    background: rgba(7, 17, 31, .97);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    box-shadow: 0 22px 80px rgba(0, 0, 0, .25);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.cookie-banner:not([hidden]) {
    display: grid;
}

.cookie-banner strong {
    font-size: 13px;
}

.cookie-banner p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: 11px;
}

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

.cookie-banner__actions {
    display: flex;
    gap: 8px;
}

.cookie-banner button {
    min-height: 40px;
    padding: 0 14px;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 750;
}

.cookie-banner button.is-primary {
    color: var(--navy);
    background: var(--accent);
    border-color: var(--accent);
}

.noscript {
    position: fixed;
    z-index: 1900;
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 14px;
    color: var(--white);
    background: var(--danger);
    border-radius: 10px;
    text-align: center;
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

@media (max-width: 1120px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        order: 3;
        grid-column: 1 / -1;
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        padding: 22px 24px 30px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        color: var(--ink);
        background: var(--paper);
        box-shadow: 0 25px 50px rgba(7, 17, 31, .14);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    }

    .main-nav a {
        padding: 15px 0;
        border-bottom: 1px solid var(--line);
    }

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

    .header-contact {
        display: none;
    }

    .nav-toggle {
        justify-self: end;
        display: block;
    }

    .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

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

    .hero__address,
    .hero__scroll {
        display: none;
    }

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

    .service-card--feature {
        grid-column: span 2;
    }

    .diagnostic__grid,
    .request__grid {
        gap: 60px;
    }

    .promo__inner {
        grid-template-columns: 180px 1fr;
        gap: 40px;
    }

    .promo__inner > .button {
        grid-column: 2;
        justify-self: start;
    }

    .promo__badge {
        grid-row: span 2;
        width: 160px;
        height: 160px;
    }

    .contacts__grid {
        gap: 55px;
    }
}

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

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

    .section {
        padding: 90px 0;
    }

    .hero,
    .hero__inner {
        min-height: 780px;
    }

    .hero__media img {
        object-position: 61% center;
    }

    .hero__veil {
        background: linear-gradient(90deg, rgba(5, 13, 24, .97), rgba(5, 13, 24, .77) 60%, rgba(5, 13, 24, .35));
    }

    .hero__inner {
        padding-top: 150px;
    }

    .hero__content {
        width: min(620px, 86%);
    }

    .hero__proof {
        max-width: 580px;
    }

    .quick-help__inner {
        padding: 18px 0;
        flex-direction: column;
        align-items: stretch;
        gap: 13px;
    }

    .section-heading,
    .diagnostic__grid,
    .request__grid,
    .faq__grid,
    .contacts__grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        gap: 28px;
    }

    .section-heading p {
        max-width: 600px;
    }

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

    .diagnostic__intro {
        position: static;
    }

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

    .process-list li {
        min-height: auto;
        padding: 28px 0;
        display: grid;
        grid-template-columns: 60px 1fr;
    }

    .process-list li:not(:last-child) {
        margin-right: 0;
    }

    .process-list li:not(:last-child)::after {
        display: none;
    }

    .promo__inner {
        grid-template-columns: 160px 1fr;
    }

    .request__grid,
    .faq__grid {
        gap: 55px;
    }

    .request__copy {
        padding-top: 0;
    }

    .faq__grid {
        gap: 45px;
    }

    .location-card {
        min-height: 540px;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__top p {
        display: none;
    }
}

@media (max-width: 620px) {
    :root { --radius-lg: 24px; }

    body {
        padding-bottom: 64px;
    }

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

    .section {
        padding: 74px 0;
    }

    .offer-bar__inner {
        justify-content: flex-start;
        overflow: hidden;
        white-space: nowrap;
    }

    .offer-bar a {
        display: none;
    }

    .brand__mark {
        width: 36px;
        height: 26px;
    }

    .brand__copy strong { font-size: 14px; }
    .brand__copy small { font-size: 8px; }

    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .hero,
    .hero__inner {
        min-height: 760px;
    }

    .hero__inner {
        padding-top: 122px;
        padding-bottom: 56px;
        justify-content: flex-end;
    }

    .hero__media img {
        object-position: 71% center;
    }

    .hero__veil {
        background:
            linear-gradient(0deg, rgba(5, 13, 24, .99) 2%, rgba(5, 13, 24, .94) 37%, rgba(5, 13, 24, .45) 76%, rgba(5, 13, 24, .36)),
            linear-gradient(90deg, rgba(5, 13, 24, .66), transparent);
    }

    .hero__content {
        width: 100%;
    }

    .eyebrow,
    .section-kicker {
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 60px);
        line-height: .98;
    }

    .hero__lead {
        margin: 23px 0 27px;
        font-size: 16px;
        line-height: 1.55;
    }

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

    .hero__actions .button {
        width: 100%;
    }

    .hero__proof {
        margin-top: 36px;
        padding-top: 18px;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .hero__proof > div:nth-child(3) {
        display: none;
    }

    .quick-help p {
        font-size: 12px;
    }

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

    .section-heading h2,
    .diagnostic h2,
    .request h2,
    .faq h2,
    .contacts h2 {
        font-size: 42px;
    }

    .section-heading p,
    .diagnostic__intro > p,
    .request__copy > p,
    .faq__intro > p {
        font-size: 15px;
    }

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

    .service-card,
    .service-card--feature {
        grid-column: auto;
        min-height: 300px;
        padding: 25px;
    }

    .service-card--feature {
        min-height: 380px;
    }

    .service-card__num {
        top: 23px;
        left: 25px;
    }

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

    .tv-visual {
        top: 45px;
        right: 20px;
        width: 70%;
    }

    .diagnostic__grid {
        gap: 48px;
    }

    .diagnostic__list button {
        min-height: 116px;
        grid-template-columns: 34px 1fr 26px;
    }

    .diagnostic__list em {
        display: none;
    }

    .diagnostic__list strong {
        font-size: 15px;
    }

    .promo {
        padding: 70px 0;
    }

    .promo__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promo__badge {
        grid-row: auto;
        width: 120px;
        height: 120px;
    }

    .promo__badge strong { font-size: 38px; }

    .promo__inner > .button {
        grid-column: auto;
        width: 100%;
    }

    .promo h2 {
        font-size: 38px;
    }

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

    .lead-form {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .accordion summary {
        min-height: 82px;
        font-size: 15px;
    }

    .contacts {
        padding: 76px 0;
    }

    .contacts__grid {
        gap: 54px;
    }

    .contact-list a {
        grid-template-columns: 1fr 24px;
        padding: 15px 0;
    }

    .contact-list a > span {
        grid-column: 1 / -1;
    }

    .contact-list strong {
        font-size: 14px;
    }

    .location-card {
        min-height: 520px;
        grid-template-rows: minmax(310px, 1fr) auto;
        border-radius: 23px;
    }

    .location-card__map {
        min-height: 310px;
    }

    .location-card__top {
        top: 14px;
        left: 14px;
    }

    .location-card__address {
        padding: 21px 20px 23px;
    }

    .location-card__address strong {
        font-size: 17px;
    }

    .location-card__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__top {
        min-height: 160px;
        padding: 32px 0;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-phone {
        justify-self: start;
    }

    .site-footer__bottom {
        padding: 22px 0;
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .site-footer__bottom span { margin-right: 0; }

    .floating-whatsapp {
        display: none;
    }

    .mobile-actions {
        position: fixed;
        z-index: 900;
        right: 0;
        bottom: 0;
        left: 0;
        height: 64px;
        padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 7px;
        color: var(--white);
        background: rgba(7, 17, 31, .96);
        border-top: 1px solid rgba(255, 255, 255, .12);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px);
    }

    .mobile-actions a {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 11px;
        font-size: 12px;
        font-weight: 800;
    }

    .mobile-actions a:last-child {
        color: var(--navy);
        background: var(--accent);
        border-color: var(--accent);
    }

    .cookie-banner {
        right: 10px;
        bottom: 74px;
        left: 10px;
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

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

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .js .reveal { opacity: 1; transform: none; }
}

@media print {
    .offer-bar,
    .site-header,
    .floating-whatsapp,
    .mobile-actions,
    .cookie-banner,
    .hero__actions,
    .button { display: none !important; }
    .hero { min-height: auto; color: var(--ink); background: var(--white); }
    .hero__media, .hero__veil { display: none; }
    .hero__inner { min-height: auto; padding: 60px 0; }
    .hero__content { width: 100%; }
    .js .reveal { opacity: 1; transform: none; }
}
