@font-face {
    font-family: "BPG Ingiri Display";
    src: url("/assets/fonts/BPG-Ingiri.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "FiraGO";
    src: url("/assets/fonts/FiraGO-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "FiraGO";
    src: url("/assets/fonts/FiraGO-SemiBold.woff2") format("woff2");
    font-style: normal;
    font-weight: 500 800;
    font-display: swap;
}

:root {
    color-scheme: light;
    --ink: #17223a;
    --ink-deep: #101a31;
    --muted: #687387;
    --blue: #3157d5;
    --blue-dark: #2445ad;
    --blue-soft: #e9eeff;
    --blue-pale: #f3f6ff;
    --green: #1f9d55;
    --green-dark: #167543;
    --warm: #f2e9dc;
    --paper: #f6f7fb;
    --surface: #ffffff;
    --line: #dfe4ed;
    --line-dark: rgba(255, 255, 255, 0.16);
    --font-body: "FiraGO", sans-serif;
    --font-display: "BPG Ingiri Display", "FiraGO", sans-serif;
    --shadow-sm: 0 14px 34px rgba(23, 34, 58, 0.07);
    --shadow-lg: 0 30px 80px rgba(23, 34, 58, 0.12);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --header-height: 78px;
    --shell: min(1240px, calc(100% - 64px));
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    background: var(--paper);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: clip;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
picture {
    display: block;
    width: 100%;
}

img {
    height: 100%;
    object-fit: cover;
}

figure,
h1,
h2,
h3 {
    margin: 0;
}

p,
ul,
ol {
    margin-top: 0;
}

h1,
h2,
h3 {
    margin-bottom: 0;
    color: var(--ink-deep);
    font-family: var(--font-display);
    font-synthesis: none;
    font-weight: 400;
    letter-spacing: -0.018em;
    text-wrap: balance;
}

h1 {
    font-size: clamp(3.6rem, 5.6vw, 5.6rem);
    line-height: 1.03;
}

h2 {
    font-size: clamp(2.55rem, 4.1vw, 4.25rem);
    line-height: 1.08;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    line-height: 1.2;
}

p {
    color: var(--muted);
    text-wrap: pretty;
}

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

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

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

:focus-visible {
    outline: 3px solid rgba(49, 87, 213, 0.45);
    outline-offset: 4px;
}

::selection {
    background: var(--blue);
    color: #fff;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    position: relative;
    padding: clamp(88px, 9vw, 138px) 0;
}

.section-muted {
    background: var(--blue-pale);
}

.section-dark {
    background: var(--ink-deep);
    color: #fff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--ink-deep);
    color: #fff;
    translate: 0 -160%;
    transition: translate 180ms ease;
}

.skip-link:focus {
    translate: 0 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.eyebrow::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.eyebrow-light {
    color: #aebfff;
}

.site-header {
    position: sticky;
    z-index: 200;
    top: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(223, 228, 237, 0.85);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 10px 34px rgba(23, 34, 58, 0.07);
}

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

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

.brand-mark {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    place-items: center;
    overflow: hidden;
    border-radius: 14px;
    background: var(--blue);
}

.brand-mark::before {
    width: 18px;
    height: 12px;
    border: 2px solid #fff;
    border-top: 0;
    border-radius: 2px 2px 5px 5px;
    content: "";
    transform: skewX(-9deg);
}

.brand-mark::after {
    position: absolute;
    top: 11px;
    right: 11px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
}

.brand-mark > span {
    position: absolute;
    right: 12px;
    bottom: 11px;
    width: 5px;
    height: 5px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    color: var(--ink-deep);
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 700;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.63rem;
    letter-spacing: 0.035em;
}

.site-navigation,
.nav-links {
    display: flex;
    align-items: center;
}

.site-navigation {
    gap: clamp(24px, 3.2vw, 48px);
}

.nav-links {
    gap: clamp(17px, 1.8vw, 30px);
}

.nav-links a {
    position: relative;
    color: #4e5a70;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
    content: "";
    scale: 0 1;
    transform-origin: right center;
    transition: scale 280ms var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
    color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
    scale: 1 1;
    transform-origin: left center;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--ink);
    transition: rotate 240ms ease, translate 240ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-last-child(2) {
    translate: 0 3.5px;
    rotate: 45deg;
}

.menu-toggle[aria-expanded="true"] > span:last-child {
    translate: 0 -3.5px;
    rotate: -45deg;
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: translate 240ms var(--ease), background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.button:hover {
    translate: 0 -3px;
}

.button-accent {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 12px 28px rgba(49, 87, 213, 0.2);
}

.button-accent:hover {
    background: var(--blue-dark);
    box-shadow: 0 16px 34px rgba(49, 87, 213, 0.26);
}

.button-dark {
    background: var(--ink-deep);
    color: #fff;
}

.button-whatsapp {
    background: var(--green);
    color: #fff;
    box-shadow: 0 12px 28px rgba(31, 157, 85, 0.2);
}

.button-whatsapp:hover {
    background: var(--green-dark);
    box-shadow: 0 16px 34px rgba(31, 157, 85, 0.24);
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.button-outline-light:hover {
    border-color: #fff;
    background: #fff;
    color: var(--ink-deep);
}

.button-small {
    min-height: 44px;
    padding: 10px 17px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.button-large {
    min-height: 62px;
    padding-inline: 24px;
}

.button strong {
    font-family: var(--font-body);
    font-weight: 700;
}

.button i {
    display: grid;
    width: 30px;
    height: 30px;
    margin-left: 4px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    font-style: normal;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink-deep);
    font-size: 0.86rem;
    font-weight: 700;
}

.text-link span {
    color: var(--blue);
    transition: translate 220ms var(--ease);
}

.text-link:hover span {
    translate: 3px -2px;
}

.text-link-light {
    color: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(49, 87, 213, 0.09), transparent 28rem),
        linear-gradient(135deg, #f8f9fc 0%, #f3f6ff 100%);
}

.hero-grid {
    display: grid;
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    gap: clamp(48px, 6vw, 92px);
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.82fr);
    padding: 44px 0 62px;
}

.hero-copy,
.hero-visual {
    min-width: 0;
}

.hero-actions,
.cta-actions,
.nav-contact-actions,
.footer-contact-actions,
.mobile-call {
    gap: 12px;
}

.hero-actions,
.cta-actions,
.footer-contact-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nav-contact-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-contact-actions .button {
    white-space: nowrap;
}

.footer-contact-actions {
    margin-top: 18px;
}

.footer-contact-actions .button,
.hero-actions .button,
.cta-actions .button {
    flex: 0 1 auto;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    padding: 8px 12px;
    border: 1px solid #dce3f4;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted);
    font-size: 0.7rem;
}

.hero-status strong {
    color: var(--blue);
    font-weight: 700;
}

.status-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(49, 87, 213, 0.1);
}

.kinetic-title {
    max-width: 760px;
    margin-bottom: 26px;
    font-size: clamp(3.65rem, 5.25vw, 5.45rem);
    line-height: 1.04;
}

.title-line {
    display: block;
}

.title-line em {
    color: var(--blue);
    font-style: normal;
    font-weight: 400;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: clamp(1.02rem, 1.25vw, 1.18rem);
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-points {
    display: grid;
    max-width: 690px;
    margin: 38px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
    grid-template-columns: repeat(3, 1fr);
}

.hero-points li {
    display: grid;
    gap: 3px;
    padding-right: 16px;
}

.hero-points strong {
    color: var(--blue);
    font-size: 0.68rem;
}

.hero-points span {
    color: #47536a;
    font-size: 0.78rem;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    height: min(620px, calc(100svh - 184px));
    min-height: 480px;
}

.hero-image-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 8px solid #fff;
    border-radius: 34px;
    background: #dfe5ed;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrap picture {
    height: 100%;
}

.hero-image-wrap img {
    object-position: 52% 54%;
    scale: 1.02;
    transition: scale 1.1s var(--ease);
}

.hero-image-label {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    gap: 3px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.hero-image-label span {
    color: var(--blue);
    font-size: 0.64rem;
    font-weight: 700;
}

.hero-image-label strong {
    color: var(--ink-deep);
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 650;
}

.route-badge {
    position: absolute;
    z-index: 4;
    bottom: 38px;
    left: -48px;
    display: grid;
    max-width: 280px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    grid-template-columns: auto 1fr;
}

.route-dot {
    width: 12px;
    height: 12px;
    border: 3px solid #cfd9ff;
    border-radius: 50%;
    background: var(--blue);
    box-sizing: content-box;
}

.route-badge div {
    display: grid;
}

.route-badge span:not(.route-dot) {
    color: var(--muted);
    font-size: 0.63rem;
}

.route-badge strong {
    color: var(--ink-deep);
    font-size: 0.74rem;
    line-height: 1.45;
}

.trust-bar {
    border-top: 1px solid #d8e0f5;
    border-bottom: 1px solid #d8e0f5;
    background: var(--blue-soft);
}

.trust-bar-inner {
    display: grid;
    min-height: 76px;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
}

.trust-bar-inner > * {
    padding: 8px 22px;
    border-right: 1px solid #d3dbf0;
    color: #42506a;
    font-size: 0.76rem;
    font-weight: 700;
    text-align: center;
}

.trust-bar-inner > *:first-child {
    border-left: 1px solid #d3dbf0;
}

.trust-bar-inner a {
    color: var(--blue);
}

.section-heading {
    margin-bottom: clamp(42px, 5vw, 70px);
}

.heading-split {
    display: grid;
    align-items: end;
    gap: 48px;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.62fr);
}

.heading-split > * {
    min-width: 0;
}

.heading-split p {
    margin-bottom: 5px;
}

.section-services {
    background: #fff;
}

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

.service-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 300px;
    flex-direction: column;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--paper);
    transition: translate 300ms var(--ease), border-color 240ms ease, background-color 240ms ease, box-shadow 300ms ease;
}

.service-card::before,
.service-card::after,
[data-spotlight]::after {
    display: none;
}

.service-card:hover {
    border-color: #bac8f4;
    background: #fff;
    box-shadow: var(--shadow-sm);
    translate: 0 -5px;
}

.card-number,
.highlight-card > span,
.factor-card > span,
.value-grid article > span {
    display: inline-flex;
    width: fit-content;
    min-width: 42px;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    margin-bottom: 44px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
}

.service-card h3 {
    margin-bottom: 13px;
}

.service-card p {
    margin-bottom: 26px;
    font-size: 0.9rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--ink-deep);
    font-size: 0.78rem;
    font-weight: 700;
}

.card-link > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
}

.wide-service-card {
    display: grid;
    min-height: 170px;
    align-items: center;
    gap: 30px;
    margin-top: 18px;
    padding: 32px;
    border-radius: 22px;
    background: var(--blue);
    color: #fff;
    grid-template-columns: auto 1fr auto;
    transition: translate 260ms var(--ease), background-color 220ms ease;
}

.wide-service-card:hover {
    background: var(--blue-dark);
    translate: 0 -4px;
}

.wide-service-card .card-number {
    margin: 0;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.wide-service-card h3,
.wide-service-card p {
    color: #fff;
}

.wide-service-card h3 {
    margin-bottom: 8px;
}

.wide-service-card p {
    margin-bottom: 0;
    opacity: 0.72;
}

.wide-service-card .card-link {
    border: 0;
    color: #fff;
}

.section-process {
    background: #fff;
}

.section-process .shell {
    padding: clamp(38px, 5vw, 68px);
    border: 1px solid #dce4f9;
    border-radius: 30px;
    background: var(--blue-pale);
}

.process-layout {
    display: grid;
    align-items: start;
    gap: clamp(52px, 7vw, 100px);
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
}

.process-intro {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.process-intro h2 {
    margin-bottom: 22px;
}

.process-intro .text-link {
    margin-top: 12px;
}

.process-list {
    margin-bottom: 0;
    padding-left: 0;
    border-top: 1px solid #cfd8ee;
    list-style: none;
}

.process-list li {
    display: grid;
    align-items: start;
    gap: 24px;
    padding: 25px 0;
    border-bottom: 1px solid #cfd8ee;
    grid-template-columns: 42px 1fr;
}

.process-list li > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: #fff;
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
    transition: background-color 240ms ease, color 240ms ease;
}

.process-list li.is-active > span {
    background: var(--blue);
    color: #fff;
}

.process-list h3 {
    margin-bottom: 8px;
    font-size: 1.28rem;
}

.process-list p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.photo-story {
    background: #fff;
}

.photo-story-grid,
.about-story-grid {
    display: grid;
    align-items: center;
    gap: clamp(55px, 8vw, 112px);
    grid-template-columns: minmax(380px, 0.82fr) minmax(0, 1fr);
}

.photo-panel,
.about-image {
    position: relative;
    height: 650px;
    overflow: hidden;
    border-radius: 28px;
    background: #dce2ea;
    box-shadow: var(--shadow-lg);
}

.photo-panel picture,
.about-image picture {
    height: 100%;
}

.photo-panel img,
.about-image img {
    object-position: 52% 56%;
}

.photo-panel figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink-deep);
    font-size: 0.72rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.photo-story-copy h2,
.about-copy h2 {
    margin-bottom: 24px;
}

.photo-story-copy > p,
.about-copy > p {
    font-size: 1rem;
}

.trust-grid {
    display: grid;
    margin-top: 34px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(2, 1fr);
}

.trust-grid > div {
    display: grid;
    min-height: 110px;
    align-content: space-between;
    padding: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-grid strong {
    color: var(--blue);
    font-size: 0.68rem;
}

.trust-grid span {
    color: var(--ink-deep);
    font-size: 0.78rem;
    font-weight: 650;
}

.price-preview {
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 8%, rgba(101, 130, 235, 0.3), transparent 24rem),
        var(--ink-deep);
}

.price-preview-grid {
    display: grid;
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
    grid-template-columns: minmax(0, 0.85fr) minmax(370px, 0.75fr);
}

.price-preview h2,
.price-preview p {
    color: #fff;
}

.price-preview h2 {
    margin-bottom: 22px;
}

.price-preview p {
    opacity: 0.7;
}

.price-preview .button {
    margin-top: 12px;
}

.price-factor-list {
    margin-bottom: 0;
    padding-left: 0;
    border-top: 1px solid var(--line-dark);
    list-style: none;
}

.price-factor-list li {
    display: grid;
    align-items: center;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line-dark);
    color: #fff;
    grid-template-columns: 42px 1fr;
}

.price-factor-list span {
    color: #9fb3ff;
    font-size: 0.68rem;
}

.price-factor-list strong {
    font-size: 0.9rem;
}

.faq-layout,
.faq-page-grid {
    display: grid;
    align-items: start;
    gap: clamp(60px, 8vw, 120px);
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
}

.faq-heading,
.faq-page-aside {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.faq-heading h2,
.faq-page-aside h2 {
    margin-bottom: 20px;
}

.faq-heading .text-link {
    margin-top: 12px;
}

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

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

.faq-item summary {
    display: grid;
    min-height: 86px;
    align-items: center;
    gap: 22px;
    padding: 22px 0;
    color: var(--ink-deep);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.14rem;
    font-synthesis: none;
    font-weight: 400;
    line-height: 1.4;
    list-style: none;
    grid-template-columns: 1fr auto;
}

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

.faq-plus {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
}

.faq-plus::before,
.faq-plus::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    background: var(--blue);
    content: "";
    translate: -50% -50%;
    transition: rotate 240ms ease;
}

.faq-plus::after {
    rotate: 90deg;
}

.faq-item[open] .faq-plus::after {
    rotate: 0deg;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 360ms var(--ease);
}

.faq-answer > * {
    overflow: hidden;
}

.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer p {
    max-width: 780px;
    margin-bottom: 28px;
    padding-right: 58px;
}

.breadcrumbs {
    padding-top: 30px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7a8496;
    font-size: 0.7rem;
}

.breadcrumbs li:not(:last-child)::after {
    color: #a9b1bf;
    content: "/";
}

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

.page-hero,
.inner-hero {
    background:
        radial-gradient(circle at 85% 25%, rgba(49, 87, 213, 0.12), transparent 30rem),
        linear-gradient(135deg, #f2f5ff, #f8f9fc);
    color: var(--ink);
}

.page-hero-copy {
    max-width: 1000px;
    padding: 64px 0 92px;
}

.page-hero-copy h1 {
    max-width: 930px;
    margin-bottom: 24px;
}

.page-hero-copy > p {
    max-width: 720px;
    margin-bottom: 0;
    font-size: 1.08rem;
}

.page-hero-copy .button {
    margin-top: 28px;
}

.page-hero .eyebrow-light,
.inner-hero .eyebrow-light {
    color: var(--blue);
}

.inner-hero-grid {
    display: grid;
    align-items: center;
    gap: clamp(54px, 8vw, 110px);
    grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.72fr);
    padding: 46px 0 90px;
}

.inner-hero-copy,
.inner-hero-image {
    min-width: 0;
}

.inner-hero-copy h1 {
    margin-bottom: 24px;
}

.inner-hero-copy > p {
    margin-bottom: 30px;
    font-size: 1.06rem;
}

.inner-hero-image {
    height: 580px;
    overflow: hidden;
    border: 8px solid #fff;
    border-radius: 28px;
    background: #dce2ea;
    box-shadow: var(--shadow-lg);
}

.inner-hero-image picture {
    height: 100%;
}

.inner-hero-image img {
    object-position: 52% 55%;
}

.service-intro {
    background: #fff;
}

.service-intro-grid,
.service-scope-grid,
.contact-scope-grid,
.quote-checklist-grid {
    display: grid;
    align-items: start;
    gap: clamp(52px, 8vw, 110px);
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
}

.service-intro-copy > p {
    font-size: 1rem;
}

.highlight-grid,
.factor-grid,
.value-grid,
.step-card-grid {
    display: grid;
    gap: 18px;
    margin-top: 70px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card,
.factor-card,
.value-grid article,
.step-card-grid li {
    position: relative;
    min-width: 0;
    min-height: 255px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
    transition: translate 260ms var(--ease), border-color 220ms ease, box-shadow 260ms ease;
}

.highlight-card:hover,
.factor-card:hover,
.value-grid article:hover,
.step-card-grid li:hover {
    border-color: #bbc8f2;
    box-shadow: var(--shadow-sm);
    translate: 0 -4px;
}

.highlight-card h3,
.factor-card h3,
.value-grid h3,
.step-card-grid h3 {
    margin-bottom: 12px;
}

.highlight-card p,
.factor-card p,
.value-grid p,
.step-card-grid p {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.route-examples {
    display: grid;
    align-items: center;
    gap: 50px;
    margin-top: 70px;
    padding: 38px;
    border: 1px solid #d9e1f5;
    border-radius: 24px;
    background: var(--blue-pale);
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
}

.route-examples h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.route-examples ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.route-examples li {
    padding: 10px 14px;
    border: 1px solid #ccd7f4;
    border-radius: 999px;
    background: #fff;
    color: #495671;
    font-size: 0.74rem;
    font-weight: 650;
}

.service-notice {
    display: grid;
    align-items: start;
    gap: 20px;
    margin-top: 28px;
    padding: 25px 28px;
    border-radius: 18px;
    background: var(--warm);
    grid-template-columns: 150px 1fr;
}

.service-notice strong {
    color: var(--ink-deep);
    font-size: 0.78rem;
}

.service-notice p {
    margin-bottom: 0;
    color: #655e54;
    font-size: 0.86rem;
}

.service-steps {
    background: var(--blue-pale);
}

.step-card-grid {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.step-card-grid li {
    background: #fff;
}

.step-card-grid li::after {
    display: none;
}

.step-card-grid li > span {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 40px;
    place-items: center;
    border-radius: 13px;
    background: var(--blue);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
}

.related-services {
    background: #fff;
}

.services-page {
    background: #fff;
}

.service-scope h2,
.contact-scope h2 {
    max-width: 670px;
}

.service-scope p,
.contact-scope p {
    margin-bottom: 20px;
}

.prices-section,
.about-story,
.contact-section,
.faq-page-section {
    background: #fff;
}

.factor-grid {
    margin-top: 0;
}

.factor-card {
    background: var(--paper);
}

.quote-checklist ol,
.contact-checklist ol {
    margin-bottom: 0;
    padding-left: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.quote-checklist li,
.contact-checklist li {
    display: grid;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 42px 1fr;
}

.quote-checklist li > span,
.contact-checklist li > span {
    color: var(--blue);
    font-size: 0.68rem;
    font-weight: 700;
}

.quote-checklist li p,
.contact-checklist li p {
    margin-bottom: 0;
    color: #46536a;
    font-size: 0.84rem;
}

.about-copy .button {
    margin-top: 14px;
}

.value-grid {
    margin-top: 0;
}

.value-grid article {
    background: #fff;
}

.faq-page-aside {
    padding: 32px;
    border-radius: 22px;
    background: var(--blue-pale);
}

.faq-page-aside h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.faq-page-aside .button {
    margin-top: 14px;
}

.contact-grid {
    display: grid;
    align-items: start;
    gap: clamp(50px, 8vw, 110px);
    grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
}

.contact-phone-card {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    display: grid;
    min-height: 390px;
    align-content: space-between;
    padding: 36px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 5%, rgba(255, 255, 255, 0.2), transparent 15rem),
        var(--blue);
    color: #fff;
    box-shadow: 0 26px 70px rgba(49, 87, 213, 0.22);
    transition: translate 280ms var(--ease), box-shadow 280ms ease;
}

.contact-actions {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-actions .button {
    width: 100%;
    justify-content: space-between;
}

.contact-phone-card:hover {
    translate: 0 -5px;
    box-shadow: 0 32px 80px rgba(49, 87, 213, 0.28);
}

.contact-phone-card .eyebrow {
    color: #dbe3ff;
}

.contact-phone-card > strong {
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(2rem, 3.4vw, 3.3rem);
    font-weight: 700;
    letter-spacing: -0.035em;
}

.contact-call-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.78rem;
    font-weight: 700;
}

.contact-checklist h2 {
    margin-bottom: 30px;
}

.final-cta {
    padding: 34px 0 110px;
    background: #fff;
    color: #fff;
}

.final-cta-inner {
    display: grid;
    align-items: center;
    gap: 48px;
    padding: clamp(38px, 5.5vw, 72px);
    border-radius: 32px;
    background:
        radial-gradient(circle at 100% 0%, rgba(92, 125, 240, 0.4), transparent 25rem),
        var(--ink-deep);
    grid-template-columns: minmax(0, 1fr) auto;
}

.final-cta h2,
.final-cta p {
    color: #fff;
}

.final-cta h2 {
    max-width: 820px;
    margin-bottom: 16px;
}

.final-cta p {
    margin-bottom: 0;
    opacity: 0.68;
}

.site-footer {
    padding: 76px 0 26px;
    background: var(--ink-deep);
    color: #fff;
}

.site-footer .brand-copy strong,
.site-footer .footer-column h2 {
    color: #fff;
}

.site-footer .brand-copy small,
.site-footer p {
    color: rgba(255, 255, 255, 0.56);
}

.footer-grid {
    display: grid;
    gap: 70px;
    padding-bottom: 64px;
    grid-template-columns: minmax(300px, 1.2fr) repeat(2, minmax(150px, 0.45fr));
}

.footer-lead > p {
    max-width: 520px;
    margin: 25px 0 24px;
    font-size: 0.85rem;
}

.footer-phone {
    display: inline-block;
    color: #fff;
    font-family: var(--font-body);
    font-size: clamp(1.55rem, 2.4vw, 2.4rem);
    font-weight: 700;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 9px;
}

.footer-column h2 {
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    transition: color 180ms ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.66rem;
}

.not-found {
    min-height: calc(100svh - var(--header-height));
    padding: 100px 0;
    background:
        radial-gradient(circle at 75% 10%, rgba(85, 116, 229, 0.38), transparent 28rem),
        var(--ink-deep);
}

.not-found-inner {
    position: relative;
    text-align: center;
}

.not-found-code {
    display: block;
    margin-bottom: -24px;
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--font-body);
    font-size: clamp(8rem, 25vw, 20rem);
    font-weight: 800;
    line-height: 0.8;
}

.not-found h1,
.not-found p {
    color: #fff;
}

.not-found p {
    max-width: 620px;
    margin: 22px auto 30px;
    opacity: 0.68;
}

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

.mobile-call {
    display: none;
}

.split-word {
    display: inline-block;
}

.motion-enabled [data-reveal] {
    opacity: 0;
    translate: 0 22px;
    transition: opacity 580ms var(--ease), translate 650ms var(--ease);
    transition-delay: var(--stagger-delay, 0ms);
}

.motion-enabled [data-reveal="image"] {
    scale: 0.985;
    transition: opacity 650ms var(--ease), translate 750ms var(--ease), scale 850ms var(--ease);
}

.motion-enabled [data-reveal].is-visible {
    opacity: 1;
    scale: 1;
    translate: 0 0;
}

.motion-enabled [data-split] .split-word {
    opacity: 0;
    translate: 0 0.5em;
    transition: opacity 520ms var(--ease), translate 620ms var(--ease);
    transition-delay: calc(var(--word-index, 0) * 42ms);
}

.motion-enabled [data-split].words-visible .split-word {
    opacity: 1;
    translate: 0 0;
}

.motion-enabled [data-hero-piece],
.motion-enabled [data-title-word],
.motion-enabled [data-hero-visual] {
    opacity: 0;
    translate: 0 18px;
}

.motion-enabled.is-ready [data-hero-piece],
.motion-enabled.is-ready [data-title-word],
.motion-enabled.is-ready [data-hero-visual] {
    opacity: 1;
    translate: 0 0;
    transition: opacity 620ms var(--ease), translate 720ms var(--ease);
}

.motion-enabled.is-ready .hero-status { transition-delay: 30ms; }
.motion-enabled.is-ready .hero .eyebrow { transition-delay: 90ms; }
.motion-enabled.is-ready [data-title-word]:nth-child(1) { transition-delay: 150ms; }
.motion-enabled.is-ready [data-title-word]:nth-child(2) { transition-delay: 220ms; }
.motion-enabled.is-ready .hero-lead { transition-delay: 290ms; }
.motion-enabled.is-ready .hero-actions { transition-delay: 360ms; }
.motion-enabled.is-ready .hero-points { transition-delay: 430ms; }
.motion-enabled.is-ready [data-hero-visual] { transition-delay: 120ms; }

.motion-enabled.is-ready .hero-image-wrap img {
    scale: 1;
}

@media (max-width: 1120px) {
    :root {
        --shell: min(100% - 40px, 980px);
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.76rem;
    }

    .nav-call span {
        display: none;
    }

    .hero-grid {
        gap: 44px;
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.75fr);
    }

    .kinetic-title {
        font-size: clamp(3.25rem, 5.2vw, 4rem);
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 72px;
        --shell: min(100% - 36px, 820px);
    }

    .menu-toggle {
        display: block;
    }

    .site-navigation {
        position: fixed;
        z-index: 210;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        gap: 32px;
        padding: 30px 20px max(30px, env(safe-area-inset-bottom));
        background: #fff;
        opacity: 0;
        pointer-events: none;
        translate: 0 -12px;
        transition: opacity 220ms ease, translate 300ms var(--ease);
    }

    .site-navigation.is-open {
        opacity: 1;
        pointer-events: auto;
        translate: 0 0;
    }

    .nav-links {
        display: grid;
    }

    .nav-links a {
        padding: 16px 2px;
        border-bottom: 1px solid var(--line);
        color: var(--ink-deep);
        font-family: var(--font-display);
        font-size: 1.35rem;
        font-synthesis: none;
        font-weight: 400;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-call {
        width: 100%;
    }

    .nav-call span {
        display: inline;
    }

    .hero-grid {
        min-height: 0;
        gap: 42px;
        grid-template-columns: 1fr;
        padding: 48px 0 68px;
    }

    .hero-copy {
        max-width: 740px;
    }

    .kinetic-title {
        font-size: clamp(3.4rem, 8vw, 5rem);
    }

    .hero-visual {
        width: min(100%, 700px);
        height: 620px;
        margin-inline: auto;
    }

    .route-badge {
        left: 22px;
    }

    .service-grid,
    .highlight-grid,
    .factor-grid,
    .value-grid,
    .step-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heading-split,
    .process-layout,
    .photo-story-grid,
    .about-story-grid,
    .price-preview-grid,
    .faq-layout,
    .faq-page-grid,
    .inner-hero-grid,
    .service-intro-grid,
    .service-scope-grid,
    .contact-scope-grid,
    .quote-checklist-grid,
    .contact-grid {
        gap: 44px;
        grid-template-columns: 1fr;
    }

    .process-intro,
    .faq-heading,
    .faq-page-aside,
    .contact-phone-card {
        position: static;
    }

    .photo-panel,
    .about-image {
        height: 580px;
    }

    .price-factor-list {
        max-width: none;
    }

    .inner-hero-image {
        height: 620px;
    }

    .inner-hero-copy {
        max-width: 760px;
    }

    .contact-phone-card {
        min-height: 300px;
    }

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

    .footer-lead {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 68px;
        --shell: calc(100% - 32px);
    }

    body {
        padding-bottom: 82px;
        font-size: 16px;
    }

    h1,
    h2,
    h3,
    .split-word {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    h1 {
        font-size: clamp(2.65rem, 11.5vw, 3.35rem);
    }

    h2 {
        font-size: clamp(2.15rem, 9vw, 2.8rem);
    }

    .section {
        padding: 78px 0;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 12px;
    }

    .brand-copy small {
        display: none;
    }

    .hero-grid {
        gap: 30px;
        padding: 30px 0 48px;
    }

    .hero-status {
        margin-bottom: 18px;
    }

    .hero-status > span:not(.status-pulse) {
        display: none;
    }

    .hero .eyebrow {
        margin-bottom: 13px;
    }

    .kinetic-title {
        margin-bottom: 18px;
        font-size: clamp(2.55rem, 10.6vw, 3.1rem);
        line-height: 1.06;
    }

    .hero-lead {
        margin-bottom: 22px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .hero-actions .button {
        width: 100%;
        justify-content: space-between;
    }

    .hero-actions .text-link {
        align-self: flex-start;
    }

    .hero-points {
        gap: 12px;
        margin-top: 24px;
        padding-top: 18px;
        grid-template-columns: 1fr 1fr;
    }

    .hero-points li:last-child {
        grid-column: 1 / -1;
    }

    .hero-visual {
        height: 390px;
        min-height: 0;
    }

    .hero-image-wrap {
        border-width: 5px;
        border-radius: 24px;
    }

    .hero-image-label {
        right: 12px;
        bottom: 12px;
        left: 12px;
        padding: 12px 14px;
    }

    .hero-image-label strong {
        font-size: 0.9rem;
    }

    .route-badge {
        right: 14px;
        bottom: 92px;
        left: 14px;
        max-width: none;
        padding: 12px 14px;
    }

    .trust-bar-inner {
        min-height: 0;
        padding: 14px 0;
        grid-template-columns: 1fr 1fr;
    }

    .trust-bar-inner > * {
        padding: 9px 7px;
        border: 0;
        font-size: 0.66rem;
    }

    .trust-bar-inner > *:first-child {
        border: 0;
    }

    .heading-split {
        gap: 20px;
    }

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

    .service-grid,
    .highlight-grid,
    .factor-grid,
    .value-grid,
    .step-card-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 270px;
        padding: 24px;
    }

    .card-number,
    .highlight-card > span,
    .factor-card > span,
    .value-grid article > span {
        margin-bottom: 34px;
    }

    .wide-service-card {
        align-items: start;
        gap: 18px;
        padding: 25px;
        grid-template-columns: 1fr;
    }

    .wide-service-card .card-link {
        width: 100%;
    }

    .section-process .shell {
        width: calc(100% - 20px);
        padding: 28px 22px;
        border-radius: 24px;
    }

    .process-layout {
        gap: 30px;
    }

    .process-list li {
        gap: 14px;
        grid-template-columns: 38px 1fr;
    }

    .photo-panel,
    .about-image,
    .inner-hero-image {
        height: 440px;
        border-radius: 22px;
    }

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

    .price-preview-grid {
        gap: 40px;
    }

    .faq-item summary {
        min-height: 74px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding-right: 0;
    }

    .page-hero-copy {
        padding: 46px 0 68px;
    }

    .page-hero-copy > p,
    .inner-hero-copy > p {
        font-size: 0.96rem;
    }

    .inner-hero-grid {
        gap: 34px;
        padding: 35px 0 64px;
    }

    .highlight-grid,
    .factor-grid,
    .value-grid,
    .step-card-grid,
    .route-examples {
        margin-top: 42px;
    }

    .highlight-card,
    .factor-card,
    .value-grid article,
    .step-card-grid li {
        min-height: 230px;
        padding: 24px;
    }

    .route-examples {
        gap: 24px;
        padding: 26px;
        grid-template-columns: 1fr;
    }

    .service-notice {
        gap: 10px;
        padding: 22px;
        grid-template-columns: 1fr;
    }

    .faq-page-aside {
        padding: 25px;
    }

    .contact-phone-card {
        min-height: 270px;
        padding: 28px;
    }

    .contact-phone-card > strong {
        font-size: 2rem;
    }

    .final-cta {
        padding: 12px 0 78px;
    }

    .final-cta-inner {
        gap: 30px;
        padding: 34px 24px;
        border-radius: 24px;
        grid-template-columns: 1fr;
    }

    .final-cta .button {
        width: 100%;
        justify-content: space-between;
    }

    .site-footer {
        padding-top: 60px;
    }

    .footer-grid {
        gap: 44px 24px;
        grid-template-columns: 1fr 1fr;
    }

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

    .mobile-call {
        position: fixed;
        z-index: 190;
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        left: 12px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        align-items: stretch;
        opacity: 0;
        pointer-events: none;
        translate: 0 120%;
        transition: opacity 220ms ease, translate 360ms var(--ease);
    }

    .mobile-call .button {
        min-height: 62px;
        width: 100%;
        justify-content: space-between;
        padding-inline: 16px;
        border-radius: 17px;
    }

    .mobile-call span {
        font-size: 0.72rem;
        font-weight: 600;
    }

    .mobile-call strong {
        font-family: var(--font-body);
        font-size: 1rem;
        font-weight: 700;
    }

    .show-mobile-call .mobile-call {
        opacity: 1;
        pointer-events: auto;
        translate: 0 0;
    }

    .nav-contact-actions {
        gap: 8px;
    }

    .motion-enabled [data-reveal] {
        translate: 0 12px;
        transition-duration: 420ms;
    }
}

@media (hover: none), (pointer: coarse) {
    .service-card:hover,
    .highlight-card:hover,
    .factor-card:hover,
    .value-grid article:hover,
    .step-card-grid li:hover,
    .contact-phone-card:hover,
    .button:hover {
        translate: 0 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .motion-enabled [data-reveal],
    .motion-enabled [data-split] .split-word,
    .motion-enabled [data-hero-piece],
    .motion-enabled [data-title-word],
    .motion-enabled [data-hero-visual] {
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
}
