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

@font-face {
    font-family: "Geist";
    src: url("/fonts/Geist-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Geist";
    src: url("/fonts/Geist-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Geist";
    src: url("/fonts/Geist-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Geist";
    src: url("/fonts/Geist-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --green-900: #064c23;
    --green-800: #0b5b2b;
    --green-700: #196733;
    --green-100: #dbeee6;
    --gold: #fdbf2d;
    --gold-hover: #e9ab18;
    --ink: #101214;
    --ink-900: #151515;
    --ink-700: #2f3633;
    --ink-500: #66716d;
    --line: #e5e9e7;
    --surface: #ffffff;
    --surface-soft: #f5f7f6;
    --surface-muted: #eff3f1;
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --container: 1360px;
    --page-gutter: 20px;
    --page-gutter-total: 40px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--surface);
    font-family: "Geist", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
    overflow: hidden;
}

img,
svg {
    display: block;
}

picture {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.container {
    width: min(100% - var(--page-gutter-total), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(6, 76, 35, 0.08);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    min-height: 88px;
    width: min(100% - var(--page-gutter-total), 1760px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: auto auto;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    width: 124px;
    text-decoration: none;
}

.site-logo img {
    width: 124px;
    height: auto;
}

.phone-link {
    color: var(--green-900);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.phone-link:hover {
    color: var(--green-700);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.button {
    --button-bg: var(--green-700);
    --button-fg: #ffffff;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--button-bg);
    color: var(--button-fg);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(6, 76, 35, 0.22);
    transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--green-900);
    box-shadow: 0 7px 12px rgba(6, 76, 35, 0.28);
}

.button--small {
    min-height: 44px;
    padding: 12px 22px;
    font-size: 1rem;
}

.button--compact {
    min-height: 44px;
    padding: 12px 22px;
    font-size: 1rem;
}

.button--accent {
    --button-bg: var(--gold);
    --button-fg: #1b1b1b;
    box-shadow: 0 10px 20px rgba(253, 191, 45, 0.18);
}

.button--accent:hover {
    background: var(--gold-hover);
    color: #111;
}

.button--whatsapp {
    --button-bg: #25d366;
    --button-fg: #ffffff;
    min-height: 48px;
    gap: 10px;
    padding: 8px 20px 8px 12px;
    border: 0;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
    transform: translateY(-2px);
    background: #25d366;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.34);
}

.button--whatsapp img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.hero {
    position: relative;
    min-height: 780px;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    background: var(--ink-900);
}

.hero__media,
.hero__media img,
.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

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

.hero__overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(8, 12, 9, 0.92) 0%, rgba(8, 12, 9, 0.68) 40%, rgba(8, 12, 9, 0.34) 72%, rgba(8, 12, 9, 0.66) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.hero__media {
    z-index: -2;
}

.hero__grid {
    min-height: 780px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    grid-template-areas:
        "content benefits"
        "trust benefits";
    column-gap: 72px;
    row-gap: 34px;
    align-items: center;
    padding-block: 96px;
}

.hero__content {
    grid-area: content;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3.25rem, 4.2vw, 4rem);
    line-height: 1.1;
    font-weight: 800;
}

.hero__lead {
    max-width: 680px;
    margin: 28px 0 0;
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    font-weight: 600;
    line-height: 1.5;
}

.hero__body {
    max-width: 690px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    line-height: 1.6;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.trust-strip {
    grid-area: trust;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
}

.trust-strip div {
    padding-inline: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
}

.trust-strip div:first-child {
    padding-left: 0;
}

.trust-strip div:last-child {
    border-right: 0;
}

.trust-strip dt {
    color: #fff;
    font-size: clamp(2rem, 2.1vw, 2.25rem);
    font-weight: 700;
    line-height: 1;
}

.trust-strip dd {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
}

.hero-benefits {
    grid-area: benefits;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    background: rgba(0, 0, 0, 0.62);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(16px);
}

.floating-whatsapp {
    position: fixed;
    right: 90px;
    bottom: 24px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 60px;
    padding: 10px 26px 10px 14px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.34);
}

.floating-whatsapp img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.hero-benefits ul,
.security-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 30px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.hero-benefits li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-badge {
    display: inline-flex;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
}

.icon-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-badge:has(svg) {
    background: var(--green-700);
}

.icon-badge svg {
    width: 52%;
    height: 52%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section {
    padding-block: clamp(72px, 8vw, 120px);
}

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

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

.section-heading {
    max-width: 900px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.stats-section h2,
.location h2,
.security h2,
.quote-content h2 {
    margin: 0;
    font-size: clamp(2.375rem, 3.4vw, 3.25rem);
    line-height: 1.15;
    font-weight: 700;
}

.section-heading p {
    margin: 18px 0 0;
    color: var(--ink-500);
    font-size: 1.25rem;
    line-height: 1.3;
}

.problems .container {
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.problem-card {
    min-height: 126px;
    display: flex;
    grid-column: span 2;
    align-items: center;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 4px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.problem-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.problem-card h3 {
    margin: 0;
    color: #0f172a;
    font-size: 1.125rem;
    line-height: 1.3;
    font-weight: 600;
}

.section-note {
    max-width: 600px;
    margin: 48px auto 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.section-actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.benefits {
    padding-block: 0;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 48vw);
    min-height: clamp(620px, 45vw, 700px);
    background: var(--surface-soft);
}

.split-layout__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 6vw, 82px) clamp(28px, 6vw, 100px);
}

.split-layout__media {
    min-height: 0;
    overflow: hidden;
}

.split-layout__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-list {
    max-width: 900px;
    margin: 28px 0;
}

.split-layout__content>.button--compact {
    align-self: flex-start;
}

.benefit-row {
    display: flex;
    gap: 20px;
    padding-block: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.benefit-row h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.benefit-row p {
    margin: 5px 0 0;
    color: rgba(0, 0, 0, 0.62);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.stats-section {
    padding-block: clamp(68px, 7vw, 100px);
    color: #fff;
    background: var(--ink-900);
}

.stats-section h2 {
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    margin: 46px 0 0;
}

.stats-grid div {
    min-width: 0;
}

.stats-grid dt {
    color: var(--gold);
    font-size: clamp(2.75rem, 5.2vw, 5rem);
    line-height: 1;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.stat-number {
    display: inline-block;
    min-width: 2ch;
}

.stats-grid dd {
    max-width: 360px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.125rem;
    line-height: 1.3;
}

.location {
    padding-block: 0;
    background: #fff;
}

.location__grid {
    width: 100%;
    margin-inline: 0;
    display: grid;
    grid-template-columns: minmax(0, 52vw) minmax(420px, 48vw);
    gap: 0;
    align-items: stretch;
}

.location__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(56px, 7vw, 100px) clamp(28px, 6vw, 98px);
}

.location__content p {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(0, 0, 0, 0.72);
    font-size: 1.08rem;
    line-height: 1.7;
}

.address-block {
    margin-top: 34px;
}

.address-block h3 {
    margin: 0 0 16px;
    color: var(--green-700);
    font-size: 1.08rem;
}

.address-block p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 520px;
    margin: 0 0 28px;
    color: var(--ink);
}

.icon-inline {
    width: 22px;
    min-width: 22px;
    color: var(--green-700);
}

.icon-inline svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.map-card {
    position: relative;
    display: block;
    overflow: hidden;
    height: clamp(360px, 42vw, 628px);
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: var(--green-100);
    box-shadow: none;
}

.map-card__fallback-image,
.map-card__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-card__fallback-image {
    aspect-ratio: auto;
    object-fit: cover;
    transition: opacity 180ms ease;
}

.map-card__canvas {
    opacity: 0;
    transition: opacity 180ms ease;
}

.map-card.is-loaded .map-card__canvas {
    opacity: 1;
}

.map-card.is-loaded .map-card__fallback-image {
    opacity: 0;
    pointer-events: none;
}

.map-card__pin {
    position: absolute;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 3px solid var(--white);
    border-radius: 50% 50% 50% 0;
    background: var(--green);
    box-shadow: 0 8px 18px rgb(6 76 35 / 28%);
    cursor: pointer;
    transform: translate(-50%, -100%) rotate(-45deg);
}

.map-card__pin::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    content: "";
    transform: translate(-50%, -50%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.audience-card {
    min-height: 210px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
}

.audience-card .icon-badge {
    width: 54px;
    height: 54px;
}

.audience-card h3 {
    margin: 18px 0 8px;
    font-size: 1.125rem;
    line-height: 1.25;
    font-weight: 600;
}

.audience-card p {
    margin: 0;
    color: var(--ink-500);
    font-size: 0.95rem;
    line-height: 1.55;
}

.security__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
    gap: 86px;
    align-items: center;
}

.security__intro {
    padding-right: 78px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.security__intro .button {
    margin-top: 34px;
}

.response-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.response-note img {
    flex: 0 0 auto;
}

.security-list li {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-block: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
}

.security-list .icon-badge {
    width: 56px;
    height: 56px;
}

.security-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-section {
    overflow: hidden;
    background: var(--surface-soft);
}

.quote-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    min-height: clamp(720px, 58vw, 860px);
}

.quote-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 5.4vw, 76px) clamp(24px, 6vw, 92px);
}

.quote-content .section-heading {
    max-width: 760px;
}

.quote-content h2 {
    font-size: clamp(1.75rem, 2.2vw, 2rem);
    line-height: 1.14;
    font-weight: 700;
}

.quote-content .section-heading p {
    margin-top: 12px;
    font-size: clamp(0.9rem, 0.95vw, 1rem);
    line-height: 1.42;
}

.quote-form {
    margin-top: 22px;
    padding: clamp(18px, 2vw, 28px);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

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

.form-field {
    min-width: 0;
}

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

.form-field--honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

label {
    display: inline-block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 1.125rem;
    font-weight: 600;
}

.quote-form label {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid #dce2df;
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

input {
    min-height: 40px;
    padding: 0 14px;
}

textarea {
    min-height: 92px;
    padding: 12px 14px;
    resize: vertical;
}

.quote-form input,
.quote-form textarea {
    font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
    color: #9aa4a0;
}

input:focus,
textarea:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 4px rgba(25, 103, 51, 0.12);
    outline: none;
}

[aria-invalid="true"] {
    border-color: #b42318;
    background: #fffafa;
}

.field-error {
    min-height: 17px;
    margin: 6px 0 0;
    color: #b42318;
    font-size: 0.8rem;
    line-height: 1.35;
}

.field-error:empty {
    min-height: 0;
    margin-top: 0;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
}

.privacy-check input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin-top: 3px;
    accent-color: var(--green-700);
}

.privacy-check label {
    margin: 0;
}

.privacy-copy,
.form-context {
    margin: 10px 0 0;
    color: #7d8782;
    font-size: 0.94rem;
}

.quote-form .privacy-copy,
.quote-form .form-context {
    font-size: 0.8rem;
    line-height: 1.42;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.quote-form .button {
    min-height: 42px;
    padding: 11px 26px;
    font-size: 0.95rem;
}

.form-status {
    margin: 18px 0 0;
    color: var(--green-900);
    font-weight: 800;
    text-align: center;
}

.form-status:empty {
    display: none;
}

.form-status.is-error {
    color: #b42318;
}

.quote-image {
    align-self: center;
    width: 100%;
    height: 100%;
    max-height: clamp(680px, 58vw, 860px);
    min-height: 0;
    overflow: hidden;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer {
    color: #fff;
    background: var(--green-900);
}

.site-footer__inner {
    width: min(100% - var(--page-gutter-total), 1720px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 56px;
    align-items: center;
    padding-block: 60px;
}

.site-footer__cta h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.site-footer__cta p {
    max-width: 640px;
    margin: 16px 0 24px;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__brand {
    display: grid;
    gap: 18px;
    justify-items: end;
    text-align: right;
}

.site-footer__brand img {
    width: 170px;
}

address {
    display: grid;
    gap: 8px;
    max-width: 480px;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
}

address a {
    text-decoration: none;
}

address a:hover {
    text-decoration: underline;
}

.site-footer__legal {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.site-footer__legal p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}

.link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-dialog {
    width: min(900px, calc(100% - 32px));
    max-height: min(760px, calc(100dvh - 32px));
    padding: 0;
    border: 0;
    border-radius: var(--radius-md);
    color: var(--ink);
    box-shadow: var(--shadow-md);
}

.privacy-dialog::backdrop {
    background: rgba(0, 0, 0, 0.62);
}

.privacy-dialog__header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.privacy-dialog h2 {
    margin: 0;
    font-size: 1.35rem;
}

.dialog-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1;
}

.privacy-dialog__body {
    padding: 28px;
    overflow: auto;
}

.privacy-dialog__body p {
    margin: 0 0 1rem;
    color: var(--ink-700);
}

@media (prefers-reduced-motion: reduce) {

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

@media (max-width: 1180px) {
    .hero__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "benefits"
            "trust";
        row-gap: 34px;
    }

    .hero-benefits {
        max-width: 620px;
    }

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

    .problem-card,
    .problem-card:nth-child(4) {
        grid-column: auto;
    }

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

    .split-layout__media {
        height: clamp(340px, 42vw, 400px);
        min-height: 0;
        order: -1;
    }

    .quote-image {
        display: none;
    }

    .location__grid,
    .security__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .location__grid {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        gap: 0;
    }

    .location__content {
        padding: 58px var(--page-gutter);
    }

    .map-card {
        order: -1;
        height: 320px;
    }

    .security__grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .security-list {
        order: 1;
    }

    .security__intro {
        order: 2;
        padding-right: 0;
        border-right: 0;
    }
}

@media (max-width: 820px) {
    html {
        scroll-padding-top: 80px;
    }

    .site-header__inner {
        min-height: 74px;
        width: min(100% - var(--page-gutter-total), 1760px);
        grid-template-columns: auto auto;
        gap: 14px;
    }

    .site-logo,
    .site-logo img {
        width: 88px;
    }

    .site-header__actions {
        gap: 10px;
    }

    .phone-link {
        display: none;
    }

    .site-header .button {
        min-height: 40px;
        padding: 11px 16px;
        font-size: 0.875rem;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        min-height: auto;
        padding-block: 70px 58px;
    }

    .hero__overlay {
        z-index: -1;
        background: linear-gradient(181deg, rgba(8, 12, 9, 0.92) 0%, rgba(8, 12, 9, 0.68) 40%, rgba(8, 12, 9, 0.34) 72%, rgba(8, 12, 9, 0.66) 100%), linear-gradient(1deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.58) 100%);
    }

    .hero h1 {
        font-size: clamp(2.5rem, 10.5vw, 3.25rem);
    }

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

    .trust-strip {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }

    .trust-strip div {
        padding-inline: 10px;
    }

    .trust-strip dd {
        font-size: 0.875rem;
    }

    .hero-benefits li {
        padding: 18px;
        font-size: 1rem;
    }

    .section {
        padding-block: 64px;
    }

    .benefits {
        padding-block: 0;
    }

    .location {
        padding-block: 0;
    }

    .problem-grid,
    .audience-grid,
    .stats-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid,
    .audience-grid {
        gap: 16px;
        margin-top: 34px;
    }

    .floating-whatsapp {
        right: var(--page-gutter);
        bottom: var(--page-gutter);
        gap: 0;
        width: 60px;
        height: 60px;
        min-height: 0;
        padding: 0;
        font-size: 0;
    }

    .floating-whatsapp img {
        width: 32px;
        height: 32px;
    }

    .floating-whatsapp__label {
        display: none;
    }

    .problem-card {
        min-height: auto;
        padding: 20px;
    }

    .split-layout__content,
    .quote-content {
        padding: 44px var(--page-gutter);
    }

    .split-layout__media {
        height: clamp(260px, 52vw, 320px);
        min-height: 0;
    }

    .benefit-list {
        margin: 20px 0 0;
    }

    .benefit-row {
        gap: 14px;
        padding-block: 14px;
    }

    .stats-grid {
        gap: 28px;
    }

    .location__grid,
    .security__grid {
        gap: 34px;
    }

    .security__intro {
        display: contents;
    }

    .security__intro h2 {
        order: 1;
    }

    .security-list {
        order: 2;
    }

    .security__actions {
        order: 3;
    }

    .location__grid {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        gap: 0;
    }

    .map-card {
        height: 300px;
    }

    .audience-card {
        min-height: auto;
        padding: 20px;
    }

    .audience-card h3 {
        margin: 12px 0 6px;
    }

    .quote-form {
        padding: 22px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-block: 44px;
    }

    .site-footer__brand {
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - var(--page-gutter-total), var(--container));
    }

    .site-header__inner {
        width: min(100% - var(--page-gutter-total), 1760px);
    }

    .location__grid {
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }

    .hero__grid {
        row-gap: 32px;
        padding-block: 60px 40px;
    }

    .hero h1 {
        font-size: 1.95rem;
        line-height: 1.12;
        text-align: center;
    }

    .hero__lead {
        margin-top: 24px;
        font-size: 1.18rem;
        line-height: 1.45;
    }

    .hero__body {
        margin-top: 12px;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero .cta-row {
        margin-top: 26px;
    }

    .hero .button {
        min-height: 56px;
    }

    .trust-strip {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        max-width: 350px;
        margin-top: -2px;
        justify-items: center;
    }

    .trust-strip div {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 14px;
        padding-inline: 0;
        border-right: 0;
        text-align: center;
    }

    .trust-strip dt {
        min-width: 128px;
        color: var(--surface);
        font-size: 2.35rem;
        font-weight: 700;
        text-align: right;
    }

    .trust-strip dd {
        margin: 0;
        font-size: 0.92rem;
        line-height: 1.2;
        text-align: left;
    }

    .hero-benefits {
        width: 100%;
        /* max-width: 350px; */
        border-radius: 18px;
        background: rgba(0, 0, 0, 0.74);
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(14px);
    }

    .hero-benefits li {
        min-height: 74px;
        gap: 14px;
        padding: 14px 22px;
        font-size: 1rem;
        line-height: 1.25;
    }

    .hero-benefits .icon-badge {
        width: 38px;
        height: 38px;
    }

    .section-heading h2,
    .stats-section h2,
    .location h2,
    .security h2 {
        font-size: 2rem;
    }

    .quote-content h2 {
        font-size: 1.625rem;
    }

    .button {
        width: 100%;
    }

    .split-layout__content>.button--compact {
        align-self: stretch;
    }

    .site-header .button {
        width: auto;
    }

    .security-list li {
        gap: 16px;
        padding-block: 20px;
    }
}
