:root {
    --petrol-950: #061d1d;
    --petrol-900: #082927;
    --petrol-800: #0b3b38;
    --petrol-700: #11514c;
    --petrol-600: #17665f;
    --navy: #122a35;
    --gold-600: #a9793c;
    --gold-500: #bd9258;
    --gold-300: #dbc19a;
    --ivory: #fbf8f2;
    --cream: #f5f0e7;
    --sand: #e9e0d2;
    --paper: #fffdf9;
    --ink: #172421;
    --muted: #64716d;
    --line: rgba(11, 59, 56, .14);
    --shadow-sm: 0 12px 32px rgba(10, 42, 39, .08);
    --shadow-lg: 0 28px 72px rgba(5, 31, 29, .16);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --container: 1240px;
    --header-height: 84px;
}

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

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

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: 4px;
}

::selection {
    background: var(--gold-300);
    color: var(--petrol-950);
}

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

h1,
h2,
h3 {
    font-weight: 750;
    letter-spacing: -.035em;
    line-height: 1.08;
}

p:last-child {
    margin-bottom: 0;
}

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

.container.narrow {
    width: min(calc(100% - 48px), 1000px);
}

.section {
    padding-block: clamp(84px, 9vw, 144px);
}

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

.skip-link:focus {
    z-index: 99999;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 10px 16px;
    clip: auto;
    background: var(--paper);
    color: var(--petrol-900);
    border-radius: 8px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--gold-600);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 1px;
    background: currentColor;
    content: "";
}

.button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 750;
    line-height: 1.2;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

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

.button-gold {
    background: var(--gold-500);
    box-shadow: 0 10px 26px rgba(189, 146, 88, .22);
    color: var(--petrol-950);
}

.button-gold:hover {
    background: #d0a66e;
    box-shadow: 0 14px 32px rgba(189, 146, 88, .3);
}

.button-light {
    background: var(--ivory);
    color: var(--petrol-900);
}

.button-light:hover {
    background: #fff;
}

.button-ghost {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

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

.button-outline {
    border-color: var(--line);
    color: var(--petrol-800);
}

.button-outline:hover {
    border-color: var(--petrol-700);
    background: var(--petrol-800);
    color: #fff;
}

.button-small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: .82rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    color: var(--petrol-800);
    font-size: .9rem;
    font-weight: 750;
}

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

.text-link:hover span {
    transform: translateX(4px);
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    transition: height .3s ease, background-color .3s ease, border-color .3s ease, color .3s ease, box-shadow .3s ease;
}

.admin-bar .site-header {
    top: 32px;
}

.site-header.is-scrolled {
    height: 72px;
    border-color: var(--line);
    background: rgba(255, 253, 249, .94);
    box-shadow: 0 10px 34px rgba(5, 31, 29, .08);
    color: var(--ink);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

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

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

.site-logo {
    display: block;
    width: 158px;
    height: auto;
}

.footer-logo {
    width: 190px;
}

.brand-mark {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(219, 193, 154, .7);
    background: rgba(9, 48, 45, .76);
    clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
    color: var(--gold-300);
}

.brand-mark::after {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    content: "";
}

.brand-mark span {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.brand-type {
    display: grid;
    line-height: 1;
}

.brand-type strong {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.brand-type small {
    margin-top: 5px;
    color: var(--gold-300);
    font-size: .58rem;
    font-weight: 750;
    letter-spacing: .38em;
}

.is-scrolled .brand-type small {
    color: var(--gold-600);
}

.custom-logo-link {
    display: inline-flex;
}

.custom-logo {
    width: auto;
    max-width: 190px;
    height: 48px;
    object-fit: contain;
}

.primary-nav,
.primary-nav ul {
    display: flex;
    align-items: center;
}

.primary-nav {
    gap: clamp(20px, 2vw, 34px);
}

.primary-nav ul {
    gap: clamp(16px, 1.7vw, 30px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav ul a {
    position: relative;
    display: inline-flex;
    padding-block: 12px;
    font-size: .78rem;
    font-weight: 680;
    letter-spacing: .015em;
}

.primary-nav ul a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    background: var(--gold-500);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.primary-nav ul a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    display: flex;
    min-height: min(920px, 92svh);
    align-items: center;
    overflow: hidden;
    background: var(--petrol-950);
    color: #fff;
}

.hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 27, 27, .98) 0%, rgba(5, 27, 27, .88) 39%, rgba(5, 27, 27, .38) 70%, rgba(5, 27, 27, .48) 100%);
    content: "";
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image: url("../img/vem-group-finansal-operasyon-hero.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-noise {
    position: absolute;
    z-index: 2;
    inset: 0;
    opacity: .24;
    background-image: radial-gradient(rgba(255, 255, 255, .16) .5px, transparent .5px);
    background-size: 4px 4px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .7fr);
    padding-top: calc(var(--header-height) + 56px);
    padding-bottom: 96px;
}

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

.hero-brandline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .72);
    font-size: .68rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-logo {
    display: block;
    width: clamp(160px, 15vw, 220px);
    height: auto;
}

.hero-brandline > span {
    width: 32px;
    height: 1px;
    background: var(--gold-500);
}

.hero-brandline strong {
    color: var(--gold-300);
    letter-spacing: .18em;
}

.hero-brandline em {
    font-style: normal;
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 26px;
    font-size: clamp(3rem, 5.2vw, 5.6rem);
    line-height: .98;
}

.hero h1 span {
    display: block;
    color: var(--gold-300);
    font-weight: 500;
}

.hero-copy > p {
    max-width: 680px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .75);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.75;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 40px;
    color: rgba(255, 255, 255, .63);
    font-size: .76rem;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-trust span::before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-500);
    content: "";
}

.hero-insight {
    position: relative;
    margin-top: 60px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-lg);
    background: rgba(7, 38, 36, .62);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.hero-insight::before {
    position: absolute;
    z-index: -1;
    inset: -28px 24px 28px -24px;
    border: 1px solid rgba(219, 193, 154, .2);
    border-radius: var(--radius-lg);
    content: "";
}

.insight-top,
.insight-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.insight-top span,
.insight-bottom span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .52);
    font-size: .64rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.insight-top strong,
.insight-bottom strong {
    font-size: .86rem;
}

.insight-top i {
    width: 10px;
    height: 10px;
    border: 2px solid rgba(219, 193, 154, .6);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(219, 193, 154, .1);
}

.insight-chart {
    position: relative;
    height: 170px;
    margin: 26px 0 22px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .09);
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.insight-chart > span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, .07);
}

.insight-chart > span:nth-child(1) { left: 0; }
.insight-chart > span:nth-child(2) { left: 20%; }
.insight-chart > span:nth-child(3) { left: 40%; }
.insight-chart > span:nth-child(4) { left: 60%; }
.insight-chart > span:nth-child(5) { left: 80%; }
.insight-chart > span:nth-child(6) { left: 100%; }

.insight-chart svg {
    position: absolute;
    inset: 26px 0 12px;
    width: 100%;
    height: calc(100% - 38px);
    filter: drop-shadow(0 10px 12px rgba(189, 146, 88, .18));
}

.insight-chart path {
    fill: none;
    stroke: var(--gold-300);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.insight-bottom {
    gap: 12px;
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: 26px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .55);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll span {
    width: 1px;
    height: 26px;
    background: var(--gold-500);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: .35; transform: scaleY(.65); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

.section-heading {
    margin-bottom: clamp(44px, 6vw, 76px);
}

.section-heading h2,
.about-copy h2,
.why-copy h2,
.faq-intro h2,
.contact-details h2,
.benefits-copy h2 {
    margin-bottom: 0;
    font-size: clamp(2.25rem, 4.2vw, 4.4rem);
}

.split-heading {
    display: grid;
    align-items: end;
    gap: clamp(36px, 7vw, 100px);
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .7fr);
}

.split-heading p,
.center-heading p {
    color: var(--muted);
    font-size: 1.02rem;
}

.split-heading p {
    max-width: 500px;
    margin-bottom: 8px;
}

.center-heading {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.center-heading .eyebrow {
    justify-content: center;
}

.center-heading h2 {
    margin-bottom: 22px;
}

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

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

.trust-card {
    min-height: 250px;
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background-color .25s ease, transform .25s ease;
}

.trust-card:hover {
    z-index: 1;
    background: var(--cream);
    transform: translateY(-4px);
}

.trust-card > span,
.service-card-top > span,
.value-card > span {
    color: var(--gold-600);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.trust-card h3 {
    margin: 30px 0 14px;
    font-size: 1.25rem;
}

.trust-card p {
    color: var(--muted);
    font-size: .9rem;
}

.services-section {
    background: var(--cream);
}

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

.service-card {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(11, 59, 56, .11);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, .82);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .75) inset;
    transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, border-color .3s ease;
}

.service-card:hover {
    border-color: rgba(189, 146, 88, .45);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateY(-7px);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.service-card-top svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--petrol-700);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    transition: transform .3s ease;
}

.service-card:hover .service-card-top svg {
    transform: rotate(6deg) translate(2px, -2px);
}

.service-card h3 {
    margin: 42px 0 18px;
    font-size: 1.38rem;
}

.service-card p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: .88rem;
}

.service-card > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: var(--petrol-800);
    font-size: .78rem;
    font-weight: 800;
}

.service-card > a span {
    transition: transform .2s ease;
}

.service-card > a:hover span {
    transform: translateX(4px);
}

.why-section {
    overflow: hidden;
    background: var(--paper);
}

.why-grid {
    display: grid;
    align-items: center;
    gap: clamp(50px, 9vw, 140px);
    grid-template-columns: minmax(360px, .85fr) 1fr;
}

.why-visual {
    position: relative;
    display: grid;
    min-height: 540px;
    place-items: center;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 50%, #15554e 0, var(--petrol-900) 44%, var(--petrol-950) 100%);
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.why-visual::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: inherit;
    opacity: .35;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    -webkit-mask-image: radial-gradient(circle, black, transparent 75%);
    mask-image: radial-gradient(circle, black, transparent 75%);
}

.why-core {
    position: relative;
    z-index: 2;
    display: grid;
    width: 220px;
    height: 220px;
    place-content: center;
    border: 1px solid rgba(219, 193, 154, .45);
    border-radius: 50%;
    background: rgba(6, 29, 29, .72);
    box-shadow: 0 0 0 18px rgba(219, 193, 154, .04), 0 28px 50px rgba(0, 0, 0, .2);
    color: #fff;
    text-align: center;
}

.why-core span {
    margin-bottom: 12px;
    color: var(--gold-300);
    font-family: Georgia, serif;
    font-size: 2.5rem;
    line-height: 1;
}

.why-core strong {
    font-size: .76rem;
    letter-spacing: .08em;
    line-height: 1.6;
    text-transform: uppercase;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(219, 193, 154, .22);
    border-radius: 50%;
}

.orbit-one { width: 330px; height: 330px; }
.orbit-two { width: 430px; height: 430px; border-style: dashed; }

.why-chip {
    position: absolute;
    z-index: 3;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(11, 59, 56, .74);
    color: rgba(255, 255, 255, .84);
    font-size: .66rem;
    letter-spacing: .02em;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.chip-one { top: 18%; right: 7%; }
.chip-two { bottom: 18%; right: 10%; }
.chip-three { bottom: 22%; left: 5%; }

.why-copy h2 {
    margin-bottom: 26px;
}

.why-copy > p {
    max-width: 620px;
    margin-bottom: 36px;
    color: var(--muted);
    font-size: 1rem;
}

.why-points {
    display: grid;
    gap: 0 28px;
    margin-bottom: 36px;
    grid-template-columns: 1fr 1fr;
}

.why-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
    font-weight: 680;
}

.why-points div span {
    width: 8px;
    height: 8px;
    border: 2px solid var(--gold-500);
    border-radius: 50%;
}

.process-section {
    position: relative;
    overflow: hidden;
    background: var(--petrol-950);
    color: #fff;
}

.process-section::before {
    position: absolute;
    top: -40%;
    right: -20%;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(219, 193, 154, .1);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(219, 193, 154, .025), 0 0 0 200px rgba(219, 193, 154, .02);
    content: "";
}

.light-heading p {
    color: rgba(255, 255, 255, .6);
}

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

.process-step {
    position: relative;
    padding-right: clamp(22px, 3vw, 44px);
}

.process-number {
    display: inline-block;
    margin-bottom: 34px;
    color: var(--gold-300);
    font-family: Georgia, serif;
    font-size: 2.4rem;
}

.process-line {
    position: relative;
    height: 1px;
    margin-bottom: 34px;
    background: rgba(255, 255, 255, .15);
}

.process-line i {
    position: absolute;
    top: -4px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 6px rgba(189, 146, 88, .12);
}

.process-step h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.process-step p {
    color: rgba(255, 255, 255, .58);
    font-size: .86rem;
}

.statement-section {
    padding-block: 76px;
    background: var(--cream);
}

.statement-panel {
    position: relative;
    display: grid;
    align-items: center;
    gap: 50px;
    padding: clamp(38px, 6vw, 76px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--petrol-700), var(--petrol-900));
    box-shadow: var(--shadow-lg);
    color: #fff;
    grid-template-columns: 1fr auto;
}

.statement-panel::after {
    position: absolute;
    right: -100px;
    bottom: -200px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(219, 193, 154, .26);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(219, 193, 154, .035), 0 0 0 84px rgba(219, 193, 154, .025);
    content: "";
}

.statement-panel > * {
    position: relative;
    z-index: 1;
}

.statement-panel h2 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.statement-panel p {
    max-width: 660px;
    color: rgba(255, 255, 255, .68);
}

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

.about-grid,
.about-story {
    display: grid;
    gap: clamp(40px, 9vw, 130px);
    grid-template-columns: minmax(300px, .78fr) 1fr;
}

.about-copy h2 {
    max-width: 600px;
}

.about-body {
    padding-top: 40px;
}

.about-body p,
.large-prose p {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: clamp(1.04rem, 1.5vw, 1.24rem);
    line-height: 1.75;
}

.about-body p strong,
.large-prose p strong {
    color: var(--petrol-800);
}

.about-body .text-link {
    margin-top: 16px;
}

.qualities-section {
    background: var(--sand);
}

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

.quality {
    display: grid;
    min-height: 170px;
    align-content: center;
    padding: 30px;
    border-right: 1px solid rgba(11, 59, 56, .15);
    text-align: center;
}

.quality:first-child {
    border-left: 1px solid rgba(11, 59, 56, .15);
}

.quality strong {
    margin-bottom: 6px;
    color: var(--petrol-800);
    font-family: Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 500;
}

.quality span {
    color: var(--muted);
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

.faq-layout,
.faq-page-grid {
    display: grid;
    align-items: start;
    gap: clamp(50px, 9vw, 130px);
    grid-template-columns: minmax(260px, .62fr) 1fr;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

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

.faq-intro p {
    margin-bottom: 30px;
    color: var(--muted);
}

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

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

.accordion-item h3 {
    margin: 0;
}

.accordion-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0;
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    font-weight: 720;
    letter-spacing: -.015em;
    text-align: left;
}

.accordion-item button > span {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.accordion-item button > span::before,
.accordion-item button > span::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--petrol-700);
    content: "";
    transition: transform .25s ease;
}

.accordion-item button > span::after {
    transform: rotate(90deg);
}

.accordion-item.is-open button > span::after {
    transform: rotate(0);
}

.accordion-panel {
    display: grid;
    overflow: hidden;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.accordion-panel > p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
}

.accordion-item.is-open .accordion-panel {
    grid-template-rows: 1fr;
}

.accordion-item.is-open .accordion-panel > p {
    padding: 0 40px 26px 0;
}

.contact-strip {
    padding-block: 68px;
    background: var(--petrol-800);
    color: #fff;
}

.contact-strip-grid {
    display: grid;
    align-items: center;
    gap: 50px;
    grid-template-columns: 1fr auto;
}

.contact-strip-grid > div > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold-300);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-strip h2 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-strip-actions {
    display: flex;
    gap: 12px;
}

.contact-strip-actions a {
    min-width: 210px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius-sm);
    transition: border-color .2s ease, background-color .2s ease;
}

.contact-strip-actions a:hover {
    border-color: var(--gold-300);
    background: rgba(255, 255, 255, .06);
}

.contact-strip-actions small,
.contact-strip-actions strong {
    display: block;
}

.contact-strip-actions small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .52);
    font-size: .65rem;
    text-transform: uppercase;
}

.contact-strip-actions strong {
    font-size: .86rem;
}

.site-footer {
    padding-top: 86px;
    background: var(--petrol-950);
    color: rgba(255, 255, 255, .72);
}

.footer-grid {
    display: grid;
    gap: 48px;
    padding-bottom: 60px;
    grid-template-columns: 1.2fr .7fr .8fr .8fr;
}

.brand-footer {
    color: #fff;
}

.footer-brand p {
    max-width: 320px;
    margin-top: 26px;
    color: rgba(255, 255, 255, .52);
    font-size: .9rem;
}

.site-footer h2 {
    margin-bottom: 24px;
    color: #fff;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

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

.footer-links a,
.footer-contact a {
    font-size: .84rem;
    transition: color .2s ease;
}

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

.footer-contact p {
    margin-bottom: 14px;
    font-size: .84rem;
}

.footer-contact p span,
.footer-address address::before {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .38);
    font-size: .62rem;
    font-style: normal;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-address address {
    color: rgba(255, 255, 255, .62);
    font-size: .84rem;
    font-style: normal;
    line-height: 1.8;
}

.legal-note {
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .38);
    font-size: .68rem;
    line-height: 1.65;
}

.footer-bottom {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .38);
    font-size: .7rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    transition: color .2s ease;
}

.whatsapp-float {
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 10px;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: #146b58;
    box-shadow: 0 12px 32px rgba(5, 39, 32, .28);
    color: #fff;
    font-size: .75rem;
    font-weight: 760;
    transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.whatsapp-float:hover {
    background: #198269;
    box-shadow: 0 16px 38px rgba(5, 39, 32, .36);
    transform: translateY(-3px);
}

.whatsapp-float svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.inner-main {
    background: var(--paper);
}

.page-hero {
    position: relative;
    padding: calc(var(--header-height) + clamp(90px, 10vw, 150px)) 0 clamp(84px, 9vw, 130px);
    overflow: hidden;
    background: linear-gradient(130deg, var(--petrol-950), var(--petrol-800));
    color: #fff;
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .3;
    background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-position: center;
    background-size: 68px 68px;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 52%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 52%, transparent);
}

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

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, .5);
    font-size: .68rem;
}

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

.page-hero h1 {
    max-width: 970px;
    margin-bottom: 28px;
    font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.page-hero .container > p,
.service-hero-grid > div > p {
    max-width: 740px;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.compact-hero {
    padding-bottom: clamp(72px, 7vw, 100px);
}

.compact-hero h1 {
    font-size: clamp(2.6rem, 4.5vw, 4.7rem);
}

.service-hero-grid {
    display: grid;
    align-items: end;
    gap: clamp(50px, 8vw, 120px);
    grid-template-columns: 1.25fr .55fr;
}

.service-hero-grid .hero-actions {
    margin-top: 34px;
}

.service-hero-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.service-hero-card > span {
    display: block;
    margin-bottom: 24px;
    color: var(--gold-300);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.service-hero-card > strong {
    display: block;
    margin-bottom: 42px;
    font-family: Georgia, serif;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 500;
    line-height: 1.35;
}

.service-hero-card > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.service-hero-card i {
    width: 7px;
    height: 7px;
    margin-top: 8px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--gold-500);
}

.service-hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, .56);
    font-size: .78rem;
}

.two-column-intro {
    display: grid;
    align-items: start;
    gap: clamp(50px, 9vw, 130px);
    grid-template-columns: .8fr 1fr;
}

.sticky-heading {
    position: sticky;
    top: 120px;
}

.sticky-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 3.7vw, 3.9rem);
}

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

.fit-item {
    display: grid;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 44px 1fr;
}

.fit-item span {
    color: var(--gold-600);
    font-size: .7rem;
    font-weight: 800;
}

.fit-item h3 {
    margin: 0;
    font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.detail-tasks-section,
.values-section,
.services-catalog-section {
    background: var(--cream);
}

.detail-task-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
}

.detail-task {
    min-height: 190px;
    padding: 28px;
    border: 1px solid rgba(11, 59, 56, .12);
    border-radius: var(--radius-sm);
    background: rgba(255, 253, 249, .74);
}

.detail-task span {
    display: inline-block;
    margin-bottom: 54px;
    color: var(--gold-600);
    font-size: .68rem;
    font-weight: 800;
}

.detail-task p {
    color: var(--ink);
    font-size: .92rem;
    font-weight: 680;
}

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

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

.mini-process article {
    min-height: 260px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.mini-process span {
    display: inline-grid;
    width: 48px;
    height: 48px;
    margin-bottom: 54px;
    place-items: center;
    border: 1px solid var(--gold-300);
    border-radius: 50%;
    color: var(--gold-600);
    font-family: Georgia, serif;
}

.mini-process p {
    color: var(--muted);
    font-size: .88rem;
}

.benefits-section {
    background: var(--petrol-900);
    color: #fff;
}

.benefits-layout {
    display: grid;
    align-items: center;
    gap: clamp(50px, 9vw, 140px);
    grid-template-columns: 1fr .9fr;
}

.benefits-copy h2 {
    margin-bottom: 24px;
}

.benefits-copy p {
    max-width: 540px;
    color: rgba(255, 255, 255, .58);
}

.benefit-cards {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.benefit-card {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .04);
}

.benefit-card span {
    align-self: flex-end;
    color: var(--gold-300);
}

.benefit-card strong {
    font-size: 1rem;
}

.inner-faq {
    background: var(--cream);
}

.service-cta {
    padding-top: 36px;
    padding-bottom: 90px;
}

.services-catalog {
    display: grid;
    gap: 18px;
}

.catalog-card {
    display: grid;
    align-items: end;
    gap: 44px;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(11, 59, 56, .12);
    border-radius: var(--radius);
    background: var(--paper);
    grid-template-columns: 1fr auto;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.catalog-card:hover {
    border-color: rgba(189, 146, 88, .5);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.catalog-card > div > span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold-600);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.catalog-card h2 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

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

.compact-catalog {
    grid-template-columns: 1fr auto;
}

.about-story {
    align-items: start;
}

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

.value-card {
    min-height: 270px;
    padding: 28px;
    border: 1px solid rgba(11, 59, 56, .12);
    border-radius: var(--radius-sm);
    background: rgba(255, 253, 249, .76);
}

.value-card h3 {
    margin: 24px 0 16px;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--muted);
    font-size: .86rem;
}

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

.faq-aside {
    position: sticky;
    top: 120px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--petrol-900);
    color: #fff;
}

.faq-aside > span {
    color: var(--gold-300);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.faq-aside h2 {
    margin: 24px 0 34px;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.contact-content-section {
    background: var(--cream);
}

.contact-layout {
    display: grid;
    align-items: start;
    gap: clamp(50px, 8vw, 110px);
    grid-template-columns: .78fr 1.1fr;
}

.contact-details {
    position: sticky;
    top: 120px;
}

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

.contact-details > p {
    margin-bottom: 34px;
    color: var(--muted);
}

.contact-cards {
    display: grid;
    margin-bottom: 34px;
    border-top: 1px solid var(--line);
}

.contact-cards a {
    position: relative;
    display: grid;
    gap: 3px;
    padding: 18px 34px 18px 0;
    border-bottom: 1px solid var(--line);
}

.contact-cards a span,
.contact-details address span {
    color: var(--muted);
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-cards a strong,
.contact-details address strong {
    font-size: .9rem;
    font-style: normal;
}

.contact-cards a i {
    position: absolute;
    top: 50%;
    right: 0;
    color: var(--gold-600);
    font-style: normal;
    transform: translateY(-50%);
    transition: transform .2s ease;
}

.contact-cards a:hover i {
    transform: translate(3px, calc(-50% - 3px));
}

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

.contact-form-card {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(11, 59, 56, .12);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.form-kicker {
    color: var(--gold-600);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-form-card h2 {
    margin: 12px 0 32px;
    font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.contact-form label:not(.consent) {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: .72rem;
    font-weight: 720;
}

.contact-form label > span {
    color: var(--gold-600);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(11, 59, 56, .18);
    border-radius: 8px;
    outline: 0;
    background: #fff;
    font-size: .9rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
    min-height: 52px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 140px;
    padding: 14px 15px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(189, 146, 88, .12);
}

.contact-form [aria-invalid="true"] {
    border-color: #a43f3f;
}

.consent {
    display: grid;
    align-items: start;
    gap: 10px;
    color: var(--muted);
    font-size: .7rem;
    grid-template-columns: 18px 1fr;
}

.consent input {
    width: 17px;
    min-height: 17px;
    margin: 3px 0 0;
}

.consent a {
    color: var(--petrol-700);
    text-decoration: underline;
}

.contact-form .button {
    width: 100%;
    cursor: pointer;
}

.form-privacy {
    color: var(--muted);
    font-size: .66rem;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.form-notice {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: .78rem;
}

.form-notice.success {
    border: 1px solid rgba(23, 102, 95, .25);
    background: rgba(23, 102, 95, .09);
    color: var(--petrol-800);
}

.form-notice.error {
    border: 1px solid rgba(164, 63, 63, .22);
    background: rgba(164, 63, 63, .06);
    color: #823434;
}

.map-section {
    height: 480px;
    background: var(--sand);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.6) contrast(.96);
}

.prose {
    max-width: 780px;
}

.prose h2 {
    margin: 54px 0 20px;
    color: var(--petrol-800);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.prose h2:first-child {
    margin-top: 0;
}

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

.prose a {
    color: var(--petrol-700);
    text-decoration: underline;
}

.legal-prose {
    padding: clamp(32px, 5vw, 62px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--cream);
}

.not-found-page {
    position: relative;
    display: grid;
    min-height: 100svh;
    place-items: center;
    overflow: hidden;
    background: var(--petrol-950);
    color: #fff;
}

.not-found-art {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 30px;
    color: rgba(255, 255, 255, .035);
    font-family: Georgia, serif;
    font-size: min(42vw, 600px);
    font-weight: 700;
    line-height: 1;
}

.not-found-art i {
    width: min(14vw, 180px);
    height: min(14vw, 180px);
    border: 1px solid rgba(219, 193, 154, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(219, 193, 154, .025);
}

.not-found-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-top: var(--header-height);
    text-align: center;
}

.not-found-content .eyebrow {
    justify-content: center;
}

.not-found-content h1 {
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 6vw, 6rem);
}

.not-found-content p {
    max-width: 560px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, .62);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal-delay {
    transition-delay: .16s;
}

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

@media (max-width: 1160px) {
    .primary-nav ul {
        gap: 15px;
    }

    .primary-nav ul a {
        font-size: .72rem;
    }

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

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

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

    .contact-strip-actions {
        width: 100%;
    }

    .contact-strip-actions a {
        flex: 1;
    }
}

@media (max-width: 1024px) {
    :root {
        --header-height: 76px;
    }

    .menu-toggle {
        position: relative;
        z-index: 1002;
        display: grid;
        width: 46px;
        height: 46px;
        place-content: center;
        gap: 5px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: 9px;
        background: rgba(255, 255, 255, .06);
        color: currentColor;
        cursor: pointer;
    }

    .is-scrolled .menu-toggle {
        border-color: var(--line);
        background: var(--cream);
    }

    .menu-toggle span:not(.sr-only) {
        display: block;
        width: 20px;
        height: 1.5px;
        background: currentColor;
        transition: transform .25s ease, opacity .2s ease;
    }

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

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

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

    .primary-nav {
        position: fixed;
        z-index: 1001;
        inset: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 30px;
        padding: 100px 24px 34px;
        background: rgba(6, 29, 29, .985);
        color: #fff;
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease, visibility .25s;
    }

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

    .primary-nav ul {
        display: grid;
        gap: 0;
    }

    .primary-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .primary-nav ul a {
        display: block;
        padding: 15px 0;
        font-size: clamp(1.15rem, 4vw, 1.65rem);
    }

    .primary-nav ul a::after {
        display: none;
    }

    .nav-cta {
        width: 100%;
        min-height: 54px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: calc(var(--header-height) + 100px);
        padding-bottom: 110px;
    }

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

    .hero-insight {
        width: min(100%, 620px);
        margin-top: 10px;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(5, 27, 27, .98), rgba(5, 27, 27, .74));
    }

    .why-grid,
    .about-grid,
    .about-story,
    .faq-layout,
    .faq-page-grid,
    .two-column-intro,
    .benefits-layout,
    .contact-layout,
    .service-hero-grid {
        grid-template-columns: 1fr;
    }

    .why-visual {
        width: min(100%, 620px);
    }

    .faq-intro,
    .sticky-heading,
    .faq-aside,
    .contact-details {
        position: static;
    }

    .statement-panel {
        grid-template-columns: 1fr;
    }

    .statement-panel .button {
        width: max-content;
    }

    .footer-grid {
        grid-template-columns: 1.1fr .8fr .9fr;
    }

    .footer-address {
        grid-column: 2 / 4;
    }

    .service-hero-card {
        max-width: 620px;
    }
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

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

    .trust-grid,
    .process-grid,
    .mini-process,
    .qualities-grid,
    .value-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .footer-address {
        grid-column: auto;
    }

    .catalog-card,
    .compact-catalog {
        align-items: start;
        grid-template-columns: 1fr;
    }
}

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

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

    .section {
        padding-block: 76px;
    }

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

    .brand-type strong {
        font-size: 1.05rem;
    }

    .brand-type small {
        font-size: .5rem;
    }

    .hero-grid {
        gap: 46px;
        padding-top: calc(var(--header-height) + 72px);
        padding-bottom: 100px;
    }

    .hero-brandline em {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.72rem, 13.2vw, 4.2rem);
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-trust {
        display: grid;
        gap: 8px;
    }

    .hero-insight {
        padding: 18px;
    }

    .insight-chart {
        height: 135px;
    }

    .insight-bottom {
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .insight-bottom div:last-child {
        grid-column: 1 / -1;
    }

    .hero-scroll {
        display: none;
    }

    .section-heading h2,
    .about-copy h2,
    .why-copy h2,
    .faq-intro h2,
    .contact-details h2,
    .benefits-copy h2 {
        font-size: clamp(2.15rem, 10vw, 3.1rem);
    }

    .trust-grid,
    .process-grid,
    .mini-process,
    .qualities-grid,
    .value-grid,
    .services-grid,
    .detail-task-grid,
    .benefit-cards,
    .why-points {
        grid-template-columns: 1fr;
    }

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

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

    .why-visual {
        min-height: 430px;
    }

    .why-core {
        width: 170px;
        height: 170px;
    }

    .orbit-one { width: 260px; height: 260px; }
    .orbit-two { width: 350px; height: 350px; }
    .why-chip { font-size: .58rem; }
    .chip-one { top: 12%; right: 4%; }
    .chip-two { right: 4%; bottom: 13%; }
    .chip-three { bottom: 18%; left: 3%; }

    .process-step {
        padding: 0 0 36px;
    }

    .statement-section {
        padding-block: 48px;
    }

    .statement-panel {
        gap: 30px;
        padding: 34px 24px;
    }

    .statement-panel .button {
        width: 100%;
    }

    .about-body {
        padding-top: 0;
    }

    .quality {
        min-height: 145px;
        border-right: 1px solid rgba(11, 59, 56, .15);
        border-bottom: 1px solid rgba(11, 59, 56, .15);
        border-left: 1px solid rgba(11, 59, 56, .15);
    }

    .contact-strip-actions {
        display: grid;
    }

    .contact-strip-actions a {
        min-width: 0;
    }

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

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

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }

    .whatsapp-float span {
        display: none;
    }

    .page-hero {
        padding-top: calc(var(--header-height) + 70px);
        padding-bottom: 72px;
    }

    .page-hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.8rem);
    }

    .breadcrumbs {
        margin-bottom: 30px;
    }

    .fit-item {
        gap: 12px;
        grid-template-columns: 34px 1fr;
    }

    .catalog-card {
        gap: 26px;
        padding: 28px 22px;
    }

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

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

    .map-section {
        height: 360px;
    }
}

@media (max-width: 374px) {
    .container,
    .container.narrow {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-insight {
        padding: 14px;
    }

    .button {
        padding-right: 18px;
        padding-left: 18px;
    }

    .why-visual {
        min-height: 390px;
    }

    .orbit-two {
        width: 310px;
        height: 310px;
    }
}

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

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

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