:root {
    --black: #141414;
    --black-soft: #1c1a17;
    --black-raised: #23201c;
    --red: #c8102e;
    --red-dark: #9f0d25;
    --yellow: #ffb300;
    --yellow-soft: #ffd76a;
    --cream: #faf7f2;
    --cream-deep: #f2ece2;
    --white: #ffffff;
    --text: #141414;
    --muted: #5f5951;
    --muted-light: #b8b2a9;
    --line: #ded8cf;
    --line-dark: #34302b;
    --green: #1daa61;
    --blue: #1677ff;
    --shadow-sm: 0 12px 30px rgba(20, 20, 20, 0.08);
    --shadow-md: 0 24px 70px rgba(20, 20, 20, 0.15);
    --shadow-lg: 0 35px 100px rgba(0, 0, 0, 0.35);
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --container: 1200px;
    --header-height: 82px;
    --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--black);
    color: var(--cream);
    font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

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

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

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

button {
    color: inherit;
}

a {
    color: inherit;
}

p,
h1,
h2,
h3 {
    overflow-wrap: break-word;
}

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

::selection {
    background: var(--yellow);
    color: var(--black);
}

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

[hidden] {
    display: none !important;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

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

.eyebrow--red {
    color: var(--red);
}

.eyebrow--yellow {
    color: var(--yellow);
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 25px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 850;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

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

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

.button:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.button--primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(200, 16, 46, 0.28);
}

.button--primary:hover {
    background: #df1234;
    box-shadow: 0 18px 42px rgba(200, 16, 46, 0.4);
}

.button--yellow {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 15px 35px rgba(255, 179, 0, 0.23);
}

.button--yellow:hover {
    background: #ffc12e;
    box-shadow: 0 18px 42px rgba(255, 179, 0, 0.32);
}

.button--outline {
    border: 2px solid rgba(250, 247, 242, 0.28);
    background: transparent;
    color: var(--cream);
}

.button--outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

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

.button--header {
    min-height: 44px;
    padding: 11px 20px;
    background: var(--red);
    color: var(--white);
    font-size: 0.9rem;
}

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

.button--full {
    width: 100%;
}

.button__loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.button.is-loading .button__loader {
    display: inline-block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: rgba(20, 20, 20, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 20, 0.96);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.site-header__inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1rem;
    font-style: italic;
    font-weight: 700;
    text-decoration: none;
}

.site-brand img {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    object-fit: cover;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.site-brand strong {
    color: var(--yellow);
    font-weight: 900;
}

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

.desktop-nav a {
    position: relative;
    padding-block: 10px;
    color: var(--muted-light);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--yellow);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    color: var(--white);
}

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

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

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    background: var(--black-soft);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.mobile-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(20, 20, 20, 0.99);
}

.mobile-menu__inner {
    display: flex;
    padding-block: 20px 28px;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--cream);
    font-weight: 700;
    text-decoration: none;
}

.mobile-menu .button {
    margin-top: 14px;
}

.hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 80px) 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 15%, rgba(200, 16, 46, 0.2), transparent 36%),
        radial-gradient(circle at 90% 80%, rgba(255, 179, 0, 0.08), transparent 31%),
        linear-gradient(145deg, #151515 0%, #111111 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero__glow--red {
    top: -140px;
    right: -100px;
    width: 460px;
    height: 460px;
    background: rgba(200, 16, 46, 0.16);
}

.hero__glow--yellow {
    bottom: -220px;
    left: 28%;
    width: 390px;
    height: 390px;
    background: rgba(255, 179, 0, 0.08);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: calc(100svh - var(--header-height) - 180px);
    align-items: center;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    gap: clamp(55px, 8vw, 110px);
}

.hero__content {
    max-width: 720px;
}

.hero__badges {
    display: flex;
    margin-bottom: 26px;
    flex-wrap: wrap;
    gap: 9px;
}

.hero__badges span {
    padding: 8px 14px;
    border: 1px solid var(--line-dark);
    border-radius: 999px;
    color: var(--muted-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin-bottom: 24px;
    color: var(--cream);
    font-size: clamp(3rem, 6.2vw, 5.9rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero h1 strong {
    display: block;
    margin-top: 10px;
    color: var(--red);
    font-weight: 900;
}

.hero__lead {
    max-width: 690px;
    margin-bottom: 34px;
    color: var(--muted-light);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
    line-height: 1.62;
}

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

.hero__trust {
    display: flex;
    margin: 34px 0 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 18px 26px;
    color: #d3cec6;
    font-size: 0.88rem;
    list-style: none;
}

.hero__trust li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__trust span {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    background: rgba(29, 170, 97, 0.15);
    color: #44d58d;
    font-size: 0.7rem;
    font-weight: 900;
}

.hero__visual {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
}

.brand-orbit {
    position: absolute;
    width: min(92%, 490px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.brand-orbit::before,
.brand-orbit::after {
    position: absolute;
    border: 1px solid rgba(255, 179, 0, 0.1);
    border-radius: 50%;
    content: "";
    inset: 12%;
}

.brand-orbit::after {
    border-color: rgba(200, 16, 46, 0.12);
    inset: 25%;
}

.hero__logo {
    position: relative;
    z-index: 2;
    width: min(72%, 350px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 38px;
    object-fit: cover;
    box-shadow: 0 42px 100px rgba(0, 0, 0, 0.52), 0 0 0 12px rgba(255, 255, 255, 0.025);
    animation: float-logo 5s ease-in-out infinite;
}

.hero-stat {
    position: absolute;
    z-index: 3;
    display: flex;
    min-width: 220px;
    align-items: center;
    gap: 12px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(31, 29, 26, 0.92);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(10px);
}

.hero-stat--top {
    top: 12%;
    right: -2%;
}

.hero-stat--bottom {
    bottom: 12%;
    left: -5%;
}

.hero-stat__icon {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    background: rgba(255, 179, 0, 0.13);
    font-size: 1.15rem;
}

.hero-stat--bottom .hero-stat__icon {
    background: rgba(29, 170, 97, 0.16);
    color: #58df9b;
    font-weight: 900;
}

.hero-stat strong,
.hero-stat small {
    display: block;
}

.hero-stat strong {
    color: var(--white);
    font-size: 0.87rem;
}

.hero-stat small {
    margin-top: 2px;
    color: var(--muted-light);
    font-size: 0.73rem;
}

.hero__scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #8f8980;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero__scroll span:last-child {
    font-size: 1.2rem;
    animation: bounce-down 1.8s ease-in-out infinite;
}

@keyframes float-logo {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.section {
    position: relative;
    padding: clamp(86px, 10vw, 135px) 0;
}

.section--dark {
    background: var(--black);
    color: var(--cream);
}

.section--light {
    background: var(--cream);
    color: var(--text);
}

.section--cream {
    background: var(--cream-deep);
    color: var(--text);
}

.section--demo {
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 25%, rgba(200, 16, 46, 0.19), transparent 34%),
        radial-gradient(circle at 86% 80%, rgba(255, 179, 0, 0.08), transparent 34%),
        var(--black);
    color: var(--cream);
}

.section-heading {
    max-width: 820px;
    margin: 0 auto 62px;
    text-align: center;
}

.section-heading h2,
.product-copy h2,
.demo-copy h2,
.cta-card h2 {
    margin-bottom: 20px;
    font-size: clamp(2.25rem, 4.6vw, 4rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.section-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted-light);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.68;
}

.section--light .section-heading p,
.section--cream .section-heading p {
    color: var(--muted);
}

.cards {
    display: grid;
    gap: 24px;
}

.cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    position: relative;
    min-height: 330px;
    padding: 36px;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, var(--black-soft), #181714);
    transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::after {
    position: absolute;
    right: -65px;
    bottom: -65px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 179, 0, 0.035);
    content: "";
}

.feature-card:hover {
    border-color: rgba(255, 179, 0, 0.35);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.27);
    transform: translateY(-7px);
}

.feature-card__icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 19px;
    font-size: 1.75rem;
}

.feature-card__icon--green { background: rgba(29, 170, 97, 0.14); }
.feature-card__icon--red { background: rgba(200, 16, 46, 0.16); }
.feature-card__icon--yellow { background: rgba(255, 179, 0, 0.13); }

.feature-card h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 850;
    line-height: 1.2;
}

.feature-card p {
    margin-bottom: 26px;
    color: var(--muted-light);
    line-height: 1.66;
}

.feature-card__tag {
    display: inline-flex;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #d0cbc3;
    font-size: 0.74rem;
    font-weight: 750;
}

.steps {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    list-style: none;
}

.step-card {
    position: relative;
    min-height: 265px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #28251f;
    border-radius: var(--radius-md);
    background: var(--black);
    color: var(--cream);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.step-card__number {
    position: absolute;
    top: 18px;
    right: 24px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 3.4rem;
    font-style: italic;
    font-weight: 900;
    line-height: 1;
}

.step-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 15px;
    background: rgba(255, 179, 0, 0.12);
    font-size: 1.25rem;
}

.step-card h3 {
    margin-bottom: 11px;
    font-size: 1.25rem;
    font-weight: 850;
}

.step-card p {
    margin: 0;
    color: var(--muted-light);
    line-height: 1.6;
}

.demo-layout {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.72fr);
    gap: clamp(55px, 8vw, 110px);
}

.demo-copy {
    max-width: 610px;
}

.demo-copy > p {
    margin-bottom: 34px;
    color: var(--muted-light);
    font-size: 1.08rem;
    line-height: 1.7;
}

.demo-checklist {
    display: grid;
    margin: 0 0 34px;
    padding: 0;
    gap: 14px;
    list-style: none;
}

.demo-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #d8d3cb;
    font-weight: 650;
}

.demo-checklist span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 179, 0, 0.32);
    border-radius: 50%;
    background: rgba(255, 179, 0, 0.08);
    color: var(--yellow);
    font-size: 0.82rem;
    font-weight: 900;
}

.demo-copy__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.demo-hint {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8f8980;
    font-size: 0.78rem;
    font-weight: 650;
}

.demo-hint span {
    color: var(--green);
    font-size: 0.6rem;
}

.phone-wrap {
    position: relative;
    width: min(100%, 410px);
    margin-inline: auto;
}

.phone {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 13px;
    border: 2px solid #3a3732;
    border-radius: 48px;
    background: linear-gradient(145deg, #232323, #080808);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.55), inset 0 0 0 2px #090909;
}

.phone__notch {
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 5;
    width: 34%;
    height: 25px;
    border-radius: 0 0 17px 17px;
    background: #070707;
    transform: translateX(-50%);
}

.chat-app {
    display: grid;
    height: min(720px, 77svh);
    min-height: 610px;
    overflow: hidden;
    border-radius: 37px;
    background: #efeae2;
    grid-template-rows: auto 1fr auto;
}

.chat-header {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 11px;
    padding: 22px 15px 11px;
    background: #075e54;
    color: var(--white);
}

.chat-header img {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    object-fit: cover;
}

.chat-header__identity {
    min-width: 0;
    flex: 1;
}

.chat-header__identity strong,
.chat-header__identity span {
    display: block;
}

.chat-header__identity strong {
    overflow: hidden;
    font-size: 0.92rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-header__identity span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
}

.chat-header__icons {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.2rem;
}

.chat-body {
    display: flex;
    padding: 16px 11px;
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    gap: 8px;
    background-color: #efeae2;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(7, 94, 84, 0.035) 0 2px, transparent 2px),
        radial-gradient(circle at 80% 55%, rgba(7, 94, 84, 0.03) 0 2px, transparent 2px);
    background-size: 42px 42px, 55px 55px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.18) transparent;
}

.chat-body::-webkit-scrollbar {
    width: 5px;
}

.chat-body::-webkit-scrollbar-thumb {
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.18);
}

.chat-message {
    max-width: 84%;
    padding: 9px 11px 7px;
    border-radius: 13px;
    color: #141414;
    font-size: 0.79rem;
    line-height: 1.43;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    animation: message-in 0.28s var(--ease) both;
}

.chat-message--bot {
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    background: var(--white);
}

.chat-message--user {
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    background: #d9fdd3;
}

.chat-message__time {
    display: inline-flex;
    margin-left: 7px;
    align-items: center;
    gap: 2px;
    float: right;
    color: #7f7a72;
    font-size: 0.58rem;
    transform: translateY(4px);
}

.chat-message--user .chat-message__time::after {
    color: #1687c9;
    content: "✓✓";
    font-weight: 900;
}

.chat-card {
    width: 88%;
    align-self: flex-start;
    padding: 13px;
    border-radius: 15px;
    background: var(--black);
    color: var(--cream);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.13);
    animation: message-in 0.28s var(--ease) both;
}

.chat-card__header {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.77rem;
    font-style: italic;
    font-weight: 900;
}

.chat-card__header img {
    width: 25px;
    height: 25px;
    border-radius: 7px;
    object-fit: cover;
}

.chat-menu {
    display: grid;
    gap: 8px;
}

.chat-menu__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
}

.chat-menu__item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.chat-menu__item strong {
    color: var(--yellow);
}

.chat-payment {
    width: 84%;
    align-self: flex-start;
    padding: 12px;
    border-radius: 13px;
    background: var(--white);
    color: var(--black);
    font-size: 0.75rem;
    animation: message-in 0.28s var(--ease) both;
}

.chat-payment strong,
.chat-payment span {
    display: block;
}

.chat-payment strong {
    margin-bottom: 8px;
}

.chat-payment a {
    display: block;
    padding: 9px 10px;
    overflow: hidden;
    border-radius: 8px;
    background: #edf5ff;
    color: #0b6ac9;
    font-size: 0.68rem;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.chat-location {
    width: 86%;
    align-self: flex-start;
    padding: 10px;
    border-radius: 13px;
    background: var(--white);
    color: var(--black);
    animation: message-in 0.28s var(--ease) both;
}

.chat-location__map {
    position: relative;
    height: 78px;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 9px;
    background:
        linear-gradient(35deg, transparent 43%, rgba(255, 255, 255, 0.9) 44% 49%, transparent 50%),
        linear-gradient(-38deg, transparent 44%, rgba(255, 255, 255, 0.82) 45% 50%, transparent 51%),
        #cfdfd3;
}

.chat-location__map::before {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1.7rem;
    content: "📍";
    transform: translate(-50%, -55%);
}

.chat-location strong,
.chat-location small {
    display: block;
}

.chat-location strong {
    font-size: 0.74rem;
}

.chat-location small {
    margin-top: 2px;
    color: #777168;
    font-size: 0.65rem;
    line-height: 1.35;
}

.chat-user-location {
    width: 72%;
    align-self: flex-end;
    padding: 9px;
    border-radius: 13px 13px 4px 13px;
    background: #d9fdd3;
    color: var(--black);
    animation: message-in 0.28s var(--ease) both;
}

.chat-user-location__map {
    display: grid;
    height: 58px;
    margin-bottom: 5px;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #dce8dc, #cfe0ea);
    font-size: 1.35rem;
}

.chat-user-location small {
    font-size: 0.66rem;
    font-weight: 700;
}

.chat-qr {
    width: 88%;
    align-self: flex-start;
    padding: 15px;
    border-radius: 15px;
    background: var(--black);
    color: var(--cream);
    text-align: center;
    animation: message-in 0.28s var(--ease) both;
}

.chat-qr__canvas {
    display: inline-block;
    padding: 8px;
    border: 3px solid var(--red);
    border-radius: 11px;
    background: var(--white);
}

.chat-qr canvas {
    width: 138px;
    height: 138px;
    image-rendering: pixelated;
}

.chat-qr strong,
.chat-qr small {
    display: block;
}

.chat-qr strong {
    margin-top: 9px;
    color: var(--yellow);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.chat-qr small {
    margin-top: 3px;
    color: var(--muted-light);
    font-size: 0.61rem;
}

.chat-typing {
    display: inline-flex;
    align-self: flex-start;
    padding: 12px 14px;
    gap: 5px;
    border-radius: 13px 13px 13px 4px;
    background: var(--white);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.09);
}

.chat-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8f8a82;
    animation: typing-dot 1.05s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.14s; }
.chat-typing span:nth-child(3) { animation-delay: 0.28s; }

.chat-choices {
    display: flex;
    min-height: 66px;
    max-height: 148px;
    padding: 10px;
    overflow-y: auto;
    align-content: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
    border-top: 1px solid #d9d4cc;
    background: #f7f5f1;
}

.chat-choice {
    min-height: 34px;
    padding: 8px 12px;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    cursor: pointer;
    font-size: 0.69rem;
    font-weight: 800;
    line-height: 1.2;
    transition: background 0.2s ease, transform 0.2s ease;
    animation: choice-in 0.25s var(--ease) both;
}

.chat-choice:hover {
    background: #168d50;
    transform: translateY(-1px);
}

.chat-choice:disabled {
    cursor: wait;
    opacity: 0.55;
}

.phone-shadow {
    position: absolute;
    right: 12%;
    bottom: -12px;
    left: 12%;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    filter: blur(18px);
}

@keyframes typing-dot {
    0%, 60%, 100% { opacity: 0.4; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-5px); }
}

@keyframes message-in {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

@keyframes choice-in {
    from { opacity: 0; transform: translateY(7px); }
    to { opacity: 1; transform: none; }
}

.branch-selector {
    overflow: hidden;
    border: 1px solid #ddd5ca;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.branch-selector__tabs {
    display: grid;
    padding: 10px;
    border-bottom: 1px solid #e4ddd3;
    background: #f4efe7;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.branch-selector__tabs button {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 17px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.branch-selector__tabs button span {
    color: var(--red);
    font-style: italic;
    font-weight: 900;
}

.branch-selector__tabs button[aria-selected="true"] {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(20, 20, 20, 0.16);
}

.branch-selector__tabs button[aria-selected="true"] span {
    color: var(--yellow);
}

.branch-selector__panel {
    display: grid;
    min-height: 420px;
    align-items: center;
    padding: clamp(32px, 6vw, 68px);
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
    gap: clamp(45px, 7vw, 85px);
    animation: panel-in 0.3s var(--ease) both;
}

@keyframes panel-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

.panel-kicker {
    display: block;
    margin-bottom: 12px;
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.branch-selector__panel h3 {
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3vw, 2.65rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.branch-selector__panel > div > p {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.67;
}

.check-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 11px;
    color: #47423c;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-list li::before {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    margin-top: 1px;
    place-items: center;
    border-radius: 50%;
    background: rgba(29, 170, 97, 0.13);
    color: #128349;
    content: "✓";
    font-size: 0.7rem;
    font-weight: 900;
}

.check-list--dark {
    color: var(--muted);
}

.map-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border: 10px solid var(--black);
    border-radius: 30px;
    background:
        linear-gradient(34deg, transparent 42%, rgba(255, 255, 255, 0.78) 43% 48%, transparent 49%),
        linear-gradient(-25deg, transparent 43%, rgba(255, 255, 255, 0.82) 44% 50%, transparent 51%),
        linear-gradient(120deg, #dce8d9, #c9dde4);
    box-shadow: var(--shadow-md);
}

.map-card::before,
.map-card::after {
    position: absolute;
    background: rgba(126, 179, 117, 0.28);
    content: "";
}

.map-card::before {
    top: 22px;
    left: 23px;
    width: 110px;
    height: 80px;
    border-radius: 45% 55% 40% 60%;
}

.map-card::after {
    right: 24px;
    bottom: 72px;
    width: 88px;
    height: 100px;
    border-radius: 55% 45% 55% 45%;
}

.map-card__pin {
    position: absolute;
    top: 28%;
    right: 27%;
    z-index: 3;
    font-size: 2.5rem;
    filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.2));
}

.map-card__user {
    position: absolute;
    bottom: 35%;
    left: 24%;
    z-index: 3;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 5px solid var(--white);
    border-radius: 50%;
    background: var(--blue);
    color: transparent;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.map-card__route {
    position: absolute;
    top: 40%;
    right: 31%;
    bottom: 37%;
    left: 28%;
    z-index: 2;
    border-top: 4px dashed var(--red);
    border-right: 4px dashed var(--red);
    border-radius: 0 70% 0 0;
    transform: rotate(-9deg);
}

.map-card__result {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 4;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 30px rgba(20, 20, 20, 0.14);
    backdrop-filter: blur(8px);
}

.map-card__result small,
.map-card__result strong,
.map-card__result span {
    display: block;
}

.map-card__result small {
    color: var(--red);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-card__result strong {
    margin-top: 2px;
    color: var(--black);
    font-size: 1.05rem;
}

.map-card__result span {
    color: var(--muted);
    font-size: 0.77rem;
}

.branch-list {
    display: grid;
    padding: 16px;
    gap: 10px;
    border-radius: 25px;
    background: var(--black);
    box-shadow: var(--shadow-md);
}

.branch-list__item {
    display: grid;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--white);
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
}

.branch-list__item.is-selected {
    border-color: rgba(255, 179, 0, 0.55);
    background: rgba(255, 179, 0, 0.07);
}

.branch-list__marker {
    display: grid;
    width: 33px;
    height: 33px;
    place-items: center;
    border-radius: 10px;
    background: var(--red);
    font-size: 0.72rem;
    font-weight: 900;
}

.branch-list__item strong,
.branch-list__item small {
    display: block;
}

.branch-list__item strong {
    overflow: hidden;
    font-size: 0.85rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.branch-list__item small {
    margin-top: 2px;
    overflow: hidden;
    color: var(--muted-light);
    font-size: 0.64rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.branch-list__time {
    color: var(--yellow);
    font-size: 0.7rem;
    font-weight: 850;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.timeline::before {
    position: absolute;
    top: 39px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    content: "";
    opacity: 0.38;
}

.timeline__item {
    position: relative;
    z-index: 1;
    padding: 0 9px;
    text-align: center;
}

.timeline__number {
    display: grid;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    place-items: center;
    border: 8px solid var(--black);
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 900;
}

.timeline__item:nth-child(even) .timeline__number {
    background: var(--yellow);
    color: var(--black);
}

.timeline__item h3 {
    margin-bottom: 10px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 850;
}

.timeline__item p {
    margin: 0;
    color: var(--muted-light);
    font-size: 0.91rem;
    line-height: 1.6;
}

.impact {
    padding: clamp(86px, 10vw, 130px) 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 179, 0, 0.16), transparent 29%),
        linear-gradient(135deg, #b80d29, var(--red));
    color: var(--white);
}

.impact .section-heading p {
    color: rgba(255, 255, 255, 0.76);
}

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

.metric {
    padding: 35px 28px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    text-align: center;
    backdrop-filter: blur(8px);
}

.metric > strong {
    display: block;
    margin-bottom: 12px;
    color: var(--yellow);
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.95;
}

.metric > strong small {
    font-size: 0.34em;
    letter-spacing: -0.02em;
}

.metric h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
    font-weight: 850;
}

.metric p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.58;
}

.product-section {
    overflow: hidden;
}

.product-grid {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(320px, 0.72fr) minmax(500px, 1.28fr);
    gap: clamp(45px, 7vw, 90px);
}

.product-grid--reverse {
    grid-template-columns: minmax(500px, 1.28fr) minmax(320px, 0.72fr);
}

.product-grid--reverse .product-copy {
    order: 2;
}

.product-copy h2 {
    margin-bottom: 20px;
}

.product-copy > p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.07rem;
    line-height: 1.7;
}

.product-image {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 28px;
    background: transparent;
    box-shadow: 0 30px 85px rgba(20, 20, 20, 0.19);
    cursor: zoom-in;
}

.product-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.4), transparent 35%);
    content: "";
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform 0.45s var(--ease);
}

.product-image > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.84);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-image:hover img {
    transform: scale(1.025);
}

.product-image:hover::after,
.product-image:hover > span {
    opacity: 1;
}

.product-image:hover > span {
    transform: none;
}

.report-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.report-tags span {
    padding: 9px 13px;
    border: 1px solid #d8cfc3;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    color: #4e4942;
    font-size: 0.78rem;
    font-weight: 750;
}

.cta-section {
    padding: 80px 0;
    background: var(--black);
}

.cta-card {
    display: grid;
    align-items: center;
    padding: clamp(34px, 6vw, 68px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 179, 0, 0.15), transparent 34%),
        linear-gradient(135deg, #1d1a17, #171717);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 45px;
    box-shadow: var(--shadow-lg);
}

.cta-card h2 {
    max-width: 720px;
    margin-bottom: 13px;
    color: var(--white);
}

.cta-card p {
    max-width: 700px;
    margin: 0;
    color: var(--muted-light);
    font-size: 1.05rem;
}

.cta-card__actions {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
}

.site-footer {
    padding: 70px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: #101010;
    color: var(--cream);
}

.site-footer__grid {
    display: grid;
    align-items: start;
    padding-bottom: 48px;
    grid-template-columns: minmax(0, 1.4fr) 0.7fr 0.8fr;
    gap: 55px;
}

.site-footer__brand {
    display: flex;
    max-width: 470px;
    align-items: flex-start;
    gap: 18px;
}

.site-footer__brand img {
    width: 76px;
    height: 76px;
    flex: 0 0 auto;
    border-radius: 19px;
    object-fit: cover;
}

.site-footer__brand strong {
    display: block;
    margin-bottom: 7px;
    color: var(--white);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 900;
}

.site-footer__brand p {
    margin: 0;
    color: #8f8980;
    font-size: 0.9rem;
    line-height: 1.6;
}

.site-footer__nav {
    display: grid;
    gap: 10px;
}

.site-footer__nav a {
    color: var(--muted-light);
    font-size: 0.88rem;
    font-weight: 650;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__nav a:hover {
    color: var(--yellow);
}

.site-footer__cta {
    display: grid;
    justify-items: start;
    gap: 14px;
}

.site-footer__cta strong {
    color: var(--white);
    font-size: 0.96rem;
}

.site-footer__bottom {
    display: flex;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #6f6a63;
    font-size: 0.73rem;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.9);
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
    backdrop-filter: blur(10px);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.back-to-top:hover {
    background: var(--red);
}

.mobile-cta {
    display: none;
}

.modal,
.lightbox {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    padding: 0;
    border: 0;
    background: transparent;
}

.modal::backdrop,
.lightbox::backdrop {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(7px);
}

.modal[open],
.lightbox[open] {
    display: grid;
    place-items: center;
}

.modal__panel {
    position: relative;
    width: min(calc(100% - 30px), 730px);
    max-height: min(92svh, 900px);
    padding: clamp(28px, 5vw, 48px);
    overflow-y: auto;
    border: 1px solid #ddd5ca;
    border-radius: 30px;
    background: var(--cream);
    color: var(--black);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.52);
    animation: modal-in 0.3s var(--ease) both;
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(18px) scale(0.98); }
    to { opacity: 1; transform: none; }
}

.modal__close,
.lightbox__close {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.7rem;
    line-height: 1;
}

.modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    background: #eae3d9;
    color: var(--black);
}

.modal__header {
    padding-right: 42px;
}

.modal__header h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.modal__header > p {
    margin-bottom: 28px;
    color: var(--muted);
    line-height: 1.6;
}

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

.field {
    display: grid;
    align-content: start;
    gap: 7px;
}

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

.field label {
    color: #3e3933;
    font-size: 0.8rem;
    font-weight: 800;
}

.field label span,
.field label strong {
    color: var(--red);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #cfc6ba;
    border-radius: 13px;
    background: var(--white);
    color: var(--black);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
    min-height: 49px;
    padding: 11px 13px;
}

.field textarea {
    min-height: 110px;
    padding: 12px 13px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #d20e31;
    box-shadow: 0 0 0 3px rgba(210, 14, 49, 0.09);
}

.field__error {
    min-height: 15px;
    color: #a90c27;
    font-size: 0.68rem;
    font-weight: 650;
}

.field__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.field__meta > small:last-child {
    color: #8a837a;
    font-size: 0.67rem;
}

.field--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    line-height: 1.48;
}

.field--checkbox input {
    width: 19px;
    min-height: 19px;
    flex: 0 0 auto;
    margin: 1px 0 0;
    accent-color: var(--red);
}

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

.lead-form__status {
    display: none;
    margin: 18px 0;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
}

.lead-form__status.is-error,
.lead-form__status.is-success {
    display: block;
}

.lead-form__status.is-error {
    border: 1px solid rgba(200, 16, 46, 0.22);
    background: rgba(200, 16, 46, 0.08);
    color: #980a22;
}

.lead-form__status.is-success {
    border: 1px solid rgba(29, 170, 97, 0.24);
    background: rgba(29, 170, 97, 0.1);
    color: #116d3f;
}

.lead-form .button {
    margin-top: 20px;
}

.lead-form__note {
    margin: 10px 0 0;
    color: #8a837a;
    font-size: 0.68rem;
    text-align: center;
}

.lightbox {
    padding: 30px;
}

.lightbox img {
    width: auto;
    max-width: min(96vw, 1500px);
    max-height: 88svh;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
    object-fit: contain;
    animation: modal-in 0.28s var(--ease) both;
}

.lightbox__close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 2;
    background: var(--white);
    color: var(--black);
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 3000;
    max-width: min(380px, calc(100% - 40px));
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(20, 20, 20, 0.95);
    color: var(--white);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.33);
    font-size: 0.82rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: none;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 20px;
    }

    .desktop-nav a {
        font-size: 0.84rem;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
        gap: 45px;
    }

    .hero-stat--top {
        right: -5%;
    }

    .hero-stat--bottom {
        left: -4%;
    }

    .cards--three,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cards--three .feature-card:last-child {
        grid-column: 1 / -1;
        min-height: auto;
    }

    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 25px;
    }

    .timeline::before {
        display: none;
    }

    .product-grid,
    .product-grid--reverse {
        grid-template-columns: minmax(280px, 0.72fr) minmax(440px, 1.28fr);
        gap: 42px;
    }

    .site-footer__grid {
        grid-template-columns: 1.25fr 0.6fr 0.75fr;
        gap: 35px;
    }
}

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

    .desktop-nav,
    .site-header .button--header {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 70px);
    }

    .hero__inner {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 760px;
        text-align: center;
    }

    .hero__badges,
    .hero__actions,
    .hero__trust {
        justify-content: center;
    }

    .hero__visual {
        min-height: 470px;
    }

    .hero__logo {
        width: min(58%, 330px);
    }

    .hero-stat--top {
        right: 8%;
    }

    .hero-stat--bottom {
        left: 8%;
    }

    .demo-layout {
        grid-template-columns: 1fr;
    }

    .demo-copy {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .demo-checklist {
        max-width: 520px;
        margin-inline: auto;
        margin-bottom: 34px;
        text-align: left;
    }

    .demo-copy__actions {
        justify-content: center;
    }

    .phone-wrap {
        width: min(100%, 390px);
    }

    .branch-selector__panel {
        grid-template-columns: 1fr;
    }

    .map-card,
    .branch-list {
        width: min(100%, 540px);
        margin-inline: auto;
    }

    .impact__metrics {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .metric {
        display: grid;
        align-items: center;
        text-align: left;
        grid-template-columns: 0.45fr 1fr;
        column-gap: 25px;
    }

    .metric > strong {
        margin: 0;
        grid-row: 1 / 3;
    }

    .metric h3 {
        align-self: end;
    }

    .metric p {
        align-self: start;
    }

    .product-grid,
    .product-grid--reverse {
        grid-template-columns: 1fr;
    }

    .product-grid--reverse .product-copy {
        order: initial;
    }

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

    .cta-card {
        grid-template-columns: 1fr;
    }

    .cta-card__actions {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

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

    .site-brand span {
        display: none;
    }

    .hero {
        padding-bottom: 85px;
    }

    .hero::before {
        background-size: 42px 42px;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 13vw, 4.3rem);
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__trust {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .hero__visual {
        min-height: 380px;
    }

    .hero__logo {
        width: min(62%, 255px);
        border-radius: 28px;
    }

    .brand-orbit {
        width: min(90%, 350px);
    }

    .hero-stat {
        min-width: 180px;
        padding: 11px 13px;
    }

    .hero-stat--top {
        top: 4%;
        right: 0;
    }

    .hero-stat--bottom {
        bottom: 4%;
        left: 0;
    }

    .hero-stat__icon {
        width: 36px;
        height: 36px;
    }

    .hero-stat strong {
        font-size: 0.76rem;
    }

    .hero-stat small {
        font-size: 0.65rem;
    }

    .section {
        padding: 78px 0;
    }

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

    .section-heading h2,
    .product-copy h2,
    .demo-copy h2,
    .cta-card h2 {
        font-size: clamp(2.05rem, 10vw, 3rem);
    }

    .cards--three,
    .steps,
    .timeline {
        grid-template-columns: 1fr;
    }

    .cards--three .feature-card:last-child {
        grid-column: auto;
    }

    .feature-card,
    .step-card {
        min-height: auto;
        padding: 28px;
    }

    .timeline {
        gap: 18px;
    }

    .timeline__item {
        display: grid;
        padding: 24px;
        border: 1px solid var(--line-dark);
        border-radius: 20px;
        background: var(--black-soft);
        text-align: left;
        grid-template-columns: auto 1fr;
        gap: 16px;
    }

    .timeline__number {
        width: 52px;
        height: 52px;
        margin: 0;
        border-width: 4px;
        font-size: 1.1rem;
    }

    .phone {
        padding: 9px;
        border-radius: 39px;
    }

    .chat-app {
        height: 650px;
        min-height: 0;
        border-radius: 31px;
    }

    .phone__notch {
        top: 14px;
    }

    .branch-selector {
        border-radius: 24px;
    }

    .branch-selector__tabs {
        grid-template-columns: 1fr;
    }

    .branch-selector__tabs button {
        justify-content: flex-start;
        padding-inline: 18px;
    }

    .branch-selector__panel {
        min-height: auto;
        padding: 28px 20px;
        gap: 32px;
    }

    .branch-list__item {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .branch-list__time {
        display: none;
    }

    .metric {
        display: block;
        text-align: center;
    }

    .metric > strong {
        margin-bottom: 14px;
    }

    .product-image {
        border-radius: 18px;
    }

    .cta-card {
        padding: 32px 24px;
        border-radius: 25px;
        text-align: center;
    }

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

    .site-footer {
        padding-bottom: 90px;
    }

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

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .back-to-top {
        right: 14px;
        bottom: 82px;
    }

    .mobile-cta {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 850;
        display: block;
        padding: 9px max(14px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(20, 20, 20, 0.92);
        transform: translateY(110%);
        transition: transform 0.3s var(--ease);
        backdrop-filter: blur(14px);
    }

    .mobile-cta.is-visible {
        transform: none;
    }

    .mobile-cta .button {
        width: 100%;
        min-height: 47px;
    }

    .modal__panel {
        width: min(calc(100% - 16px), 730px);
        max-height: calc(100svh - 16px);
        padding: 28px 20px;
        border-radius: 23px;
    }

    .modal__close {
        top: 12px;
        right: 12px;
    }

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

    .field--full {
        grid-column: auto;
    }

    .lightbox {
        padding: 12px;
    }

    .lightbox img {
        border-radius: 12px;
    }

    .toast {
        right: 14px;
        bottom: 78px;
        left: 14px;
        max-width: none;
    }
}

@media (max-height: 700px) and (min-width: 681px) {
    .chat-app {
        height: 610px;
    }
}

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

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

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

@media print {
    .site-header,
    .hero__scroll,
    .back-to-top,
    .mobile-cta,
    .cta-section,
    .site-footer__cta,
    .demo-copy__actions,
    .chat-choices {
        display: none !important;
    }

    body,
    .section,
    .impact,
    .hero {
        background: var(--white) !important;
        color: var(--black) !important;
    }

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

    .hero__inner,
    .demo-layout,
    .product-grid,
    .product-grid--reverse {
        grid-template-columns: 1fr;
    }
}
