:root {
    --bg: #fffafa;
    --surface: #ffffff;
    --surface-2: #fff1f1;
    --ink: #1d1630;
    --muted: #6d6580;
    --line: #f1d5d5;
    --primary: #af1212;
    --primary-dark: #7f0d0d;
    --primary-soft: #fdeaea;
    --green: #16a36a;
    --amber: #f2a23a;
    --red: #df5d5d;
    --shadow: 0 24px 80px rgba(99, 8, 8, .14);
    --shadow-soft: 0 12px 40px rgba(99, 8, 8, .1);
    --radius: 8px;
    --container: min(1180px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", Arial, system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.section {
    padding: 92px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: .77rem;
    font-weight: 700;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 18px;
    font-size: clamp(2.55rem, 4.35vw, 4.65rem);
    line-height: 1.08;
    font-weight: 500;
    max-width: 760px;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(1.95rem, 3.5vw, 3.8rem);
    line-height: 1.05;
    font-weight: 600;
}

h3 {
    font-size: 1.35rem;
    line-height: 1.2;
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-head p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--primary-dark);
    color: #fff;
    box-shadow: 0 12px 30px rgba(127, 13, 13, .22);
}

.btn--ghost {
    background: #fff;
    color: var(--primary-dark);
    border-color: var(--line);
}

.btn--text {
    color: var(--primary-dark);
    padding-inline: 6px;
}

.btn--large {
    min-height: 52px;
    padding-inline: 24px;
}

.btn-icon {
    display: inline-grid;
    width: 22px;
    height: 22px;
    place-items: center;
    font-size: 1rem;
    line-height: 1;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 250, 252, .86);
    border-bottom: 1px solid rgba(241, 213, 213, .8);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(99, 8, 8, .08);
}

.header-inner {
    width: min(1480px, calc(100vw - 48px));
    min-height: 78px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.brand img {
    width: 164px;
    max-height: 57px;
    height: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-item.has-mega {
    position: static;
}

.nav-link {
    border: 0;
    background: transparent;
    color: #2b1b1b;
    padding: 14px 16px;
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.nav-link--mega {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-chevron {
    font-size: .8em;
    line-height: 1;
    transform: translateY(-1px);
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: var(--primary);
}

.mega {
    position: absolute;
    top: 100%;
    left: 50%;
    width: min(1420px, calc(100vw - 140px));
    padding: 24px 28px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: .18s ease;
}

.nav-item:hover .mega,
.nav-item:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega--products {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 22px;
}

.mega--resources {
    width: 640px;
}

.mega-kpi {
    border-radius: var(--radius);
    padding: 18px;
    background: linear-gradient(145deg, #650909, #af1212);
    color: #fff;
}

.mega-kpi span,
.mega-kpi small,
.featured-card span,
.mega h3 {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
}

.mega-kpi strong {
    display: block;
    margin: 22px 0 4px;
    font-size: 2rem;
}

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

.mega-grid--compact {
    grid-template-columns: minmax(300px, .95fr) minmax(360px, 1fr) minmax(280px, .7fr);
    gap: 26px;
}

.mega-grid--compact > div,
.mega-callout {
    min-width: 0;
}

.mega h3 {
    margin: 0 0 10px;
    color: var(--primary);
}

.mega a {
    display: block;
    border-radius: 7px;
    padding: 8px 10px;
    font-size: .86rem;
    font-weight: 500;
    line-height: 1.22;
    white-space: nowrap;
}

.mega a:hover {
    background: var(--primary-soft);
}

.mega small,
.mega-callout span,
.featured-card small {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: .74rem;
    font-weight: 400;
    line-height: 1.25;
    white-space: nowrap;
}

.mega-callout,
.featured-card {
    align-self: stretch;
    background: var(--primary-soft);
    border: 1px solid #f0bcbc;
}

.mega-callout {
    display: flex !important;
    min-height: 220px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px;
    text-align: center;
}

.mega-callout span {
    white-space: normal;
    line-height: 1.35;
}

.mega-callout strong {
    display: block;
    font-size: 1.12rem;
    line-height: 1.2;
    white-space: normal;
}

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

.locale-switcher {
    position: relative;
}

.locale-button,
.login-link {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 10px 18px;
    color: var(--primary-dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.locale-button {
    font-weight: 400;
}

.login-link {
    min-height: 52px;
    padding-inline: 24px;
    background: #fff;
    border-color: var(--line);
    color: var(--primary);
    box-shadow: none;
}

.locale-icon {
    display: none;
}

.locale-chevron {
    font-size: .82em;
    opacity: .72;
}

.locale-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 80;
    min-width: 178px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: .16s ease;
}

.locale-switcher:hover .locale-menu,
.locale-switcher:focus-within .locale-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.locale-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 7px;
    padding: 9px 10px;
    color: var(--ink);
    font-size: .86rem;
    font-weight: 400;
}

.locale-menu a:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    padding: 9px;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--primary-dark);
}

.whatsapp-float {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 80;
    display: grid;
    width: clamp(56px, 5.2vw, 72px);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    filter: drop-shadow(0 14px 22px rgba(18, 62, 24, .24));
    transition: transform .18s ease, filter .18s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    filter: drop-shadow(0 18px 28px rgba(18, 62, 24, .28));
}

.whatsapp-float img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero {
    min-height: calc(100vh - 112px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(251, 250, 252, 1) 0%, rgba(251, 250, 252, .92) 48%, rgba(253, 234, 234, .84) 100%),
        repeating-linear-gradient(0deg, transparent 0 39px, rgba(175, 18, 18, .06) 40px),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(175, 18, 18, .05) 40px);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .72fr);
    gap: 54px;
    align-items: center;
}

.hero__lead {
    max-width: 660px;
    color: var(--muted);
    font-size: 1.15rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 30px 0 22px;
}

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.hero__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 11px;
    border: 1px solid rgba(175, 18, 18, .22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    color: var(--primary-dark);
    font-size: .78rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero__badges span {
    display: grid;
    gap: 2px;
    min-width: 150px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    color: var(--muted);
    font-size: .85rem;
}

.hero__badges strong {
    color: var(--ink);
}

.hero__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-gallery {
    position: relative;
    width: min(500px, 100%);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #170808;
    box-shadow: var(--shadow);
}

.hero-gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .44));
    pointer-events: none;
}

.hero-gallery__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    animation: hero-gallery-fade 15s infinite;
}

.hero-gallery__image--one {
    object-position: center;
}

.hero-gallery__image--two {
    object-position: center;
    animation-delay: 5s;
}

.hero-gallery__image--three {
    object-position: center;
    animation-delay: 10s;
}

.hero-gallery__caption {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

.hero-gallery__caption span {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-gallery__caption strong {
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 500;
}

@keyframes hero-gallery-fade {
    0%,
    30% {
        opacity: 1;
        transform: scale(1.02);
    }

    36%,
    100% {
        opacity: 0;
        transform: scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-gallery__image {
        animation: none;
    }

    .hero-gallery__image--one {
        opacity: 1;
    }
}

.phone {
    width: 290px;
    min-height: 560px;
    border: 10px solid #201332;
    border-radius: 38px;
    padding: 16px;
    background: #f9f6ff;
    box-shadow: var(--shadow);
}

.phone--hero {
    position: absolute;
    right: 60px;
    top: 10px;
    transform: rotate(3deg);
}

.phone__bar,
.mock-phone__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: .78rem;
    font-weight: 700;
}

.phone__bar span:last-child,
.mock-phone__top b {
    width: 48px;
    height: 16px;
    border-radius: 999px;
    background: #201332;
}

.scan-card,
.mock-receipt {
    border-radius: 24px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.scan-card__tag {
    display: block;
    color: var(--muted);
    font-size: .82rem;
}

.scan-card > strong {
    display: block;
    margin: 6px 0 18px;
    color: var(--green);
    font-size: 2rem;
}

.receipt-line {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f8e5e5;
    padding: 10px 0;
    font-size: .9rem;
}

.receipt-line span {
    color: var(--muted);
}

.receipt-paper {
    margin: 20px auto 0;
    width: 190px;
    padding: 18px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(99, 8, 8, .12);
}

.receipt-paper span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
}

.receipt-paper i {
    display: block;
    height: 8px;
    margin: 9px 0;
    border-radius: 999px;
    background: #ded7ec;
}

.receipt-paper i:nth-child(3) {
    width: 72%;
}

.receipt-paper i:nth-child(4) {
    width: 86%;
}

.video-card {
    position: absolute;
    left: 0;
    bottom: 46px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: min(330px, 90%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    text-align: left;
}

.play {
    display: grid;
    place-items: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #fff;
}

.video-card small {
    display: block;
    color: var(--muted);
}

.intro {
    padding-top: 70px;
}

.intro__layout {
    display: grid;
    grid-template-columns: minmax(360px, 1.08fr) minmax(0, .92fr);
    gap: 22px;
    align-items: stretch;
}

.intro__box {
    display: flex;
    flex-direction: column;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.intro__box h2 {
    margin-bottom: 20px;
}

.intro__box p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.intro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.intro-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(175, 18, 18, .18);
    border-radius: var(--radius);
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: .72rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.intro-video {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #120b1f;
    box-shadow: var(--shadow-soft);
}

.intro-video video {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    object-fit: cover;
}

.intro-video > div {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: var(--radius);
    background: rgba(18, 11, 31, .72);
    color: #fff;
    backdrop-filter: blur(14px);
}

.intro-video span {
    display: block;
    margin-bottom: 4px;
    color: #ffc9c9;
    font-size: .76rem;
    font-weight: 600;
    text-transform: uppercase;
}

.intro-video strong {
    display: block;
    font-size: .98rem;
    line-height: 1.35;
}

.partners {
    overflow: hidden;
}

.partners__grid {
    display: grid;
    grid-template-columns: .75fr 1fr;
    gap: 60px;
    align-items: center;
}

.partners__title h2 span {
    color: var(--primary);
}

.partners__logos {
    display: grid;
    gap: 18px;
}

.partners__logos p {
    margin: 0;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(74px, 1fr));
    gap: 12px;
}

.logo-row img,
.logo-marquee img {
    height: 36px;
    width: 100%;
    object-fit: contain;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.logo-marquee {
    overflow: hidden;
}

.logo-marquee__track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: logo-scroll 36s linear infinite;
}

.logo-marquee img {
    width: 132px;
    flex: 0 0 132px;
}

@keyframes logo-scroll {
    to {
        transform: translateX(-33.333%);
    }
}

.journey {
    background: #fff;
}

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

.journey-card {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(330px, .8fr);
    gap: 36px;
    align-items: center;
    min-height: 430px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
}

.journey-card__copy > span {
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
}

.journey-card__copy h3 {
    margin: 10px 0 8px;
    font-size: clamp(2rem, 3vw, 3.6rem);
}

.journey-card__copy h4 {
    margin: 0 0 14px;
    color: var(--primary-dark);
}

.journey-card__copy p {
    color: var(--muted);
}

.mini-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mini-stats b {
    padding: 10px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--primary-dark);
    font-size: .86rem;
}

.journey-visual {
    min-height: 330px;
    display: grid;
    place-items: center;
}

.mock-phone {
    width: 240px;
    min-height: 360px;
    border: 8px solid #201332;
    border-radius: 32px;
    background: #f8f5ff;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.mock-receipt strong,
.mock-receipt em {
    display: block;
    text-align: center;
}

.mock-receipt em {
    margin: 8px 0 14px;
    color: var(--primary);
    font-size: 1.9rem;
    font-style: normal;
    font-weight: 700;
}

.status-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.status-line span {
    border-radius: 999px;
    padding: 7px;
    background: var(--primary-soft);
    text-align: center;
    font-size: .72rem;
}

.mock-receipt dl {
    margin: 0;
}

.mock-receipt div,
.mock-receipt dl div {
    display: flex;
}

.mock-receipt dt,
.mock-receipt dd {
    display: inline-block;
    width: 50%;
    margin: 0;
    padding: 7px 0;
    border-bottom: 1px solid #f8e5e5;
}

.mock-receipt dt {
    color: var(--muted);
}

.mock-receipt dd {
    text-align: right;
    font-weight: 700;
}

.data-panel,
.approval-panel,
.timeline-panel,
.report-panel,
.desktop-ui,
.tablet-ui {
    width: min(420px, 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.data-panel > p,
.approval-panel__top,
.report-panel__head,
.timeline-panel__head {
    color: var(--muted);
    font-size: .84rem;
}

.data-panel div {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #f8e5e5;
}

.data-panel > strong {
    display: block;
    margin: 18px 0 12px;
    color: var(--green);
}

.data-panel ul,
.timeline-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.data-panel li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 0;
    border-bottom: 1px solid #f1ecf6;
}

.approval-panel h4,
.approval-panel h5 {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
}

.approval-panel h4 span {
    color: var(--amber);
}

.approval-mini-row,
.approval-row {
    display: grid;
    grid-template-columns: 34px 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-radius: 7px;
    background: #faf8fe;
    margin-bottom: 9px;
}

.approval-mini-row span,
.approval-row span,
.timeline-panel b {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
}

.approval-mini-row em {
    font-style: normal;
    font-weight: 700;
}

.approval-mini-row i {
    color: var(--green);
    font-style: normal;
}

.approval-mini-row.is-alert i {
    color: var(--red);
}

.approval-panel ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.approval-panel ol li {
    display: flex;
    justify-content: space-between;
    border-left: 3px solid var(--green);
    padding-left: 10px;
}

.timeline-panel__head,
.report-panel__head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.timeline-panel__head span {
    color: var(--green);
    font-weight: 700;
}

.timeline-panel li {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0eaf6;
}

.timeline-panel em {
    color: var(--muted);
    font-size: .78rem;
    font-style: normal;
}

.report-panel__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.report-panel__metrics p {
    margin: 0;
    border-radius: var(--radius);
    background: var(--primary-soft);
    padding: 14px;
}

.report-panel__metrics span {
    display: block;
    color: var(--muted);
    font-size: .78rem;
}

.report-panel__metrics strong {
    color: var(--primary-dark);
    font-size: 1.6rem;
}

.bar-chart {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 145px;
    margin: 24px 0;
    padding: 14px;
    border-radius: var(--radius);
    background: #faf8fe;
}

.bar-chart i {
    flex: 1;
    min-height: 18px;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, var(--primary), var(--green));
}

.erp-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.erp-row span {
    padding: 8px 10px;
    border-radius: 999px;
    background: #f6f3fa;
    font-size: .78rem;
    font-weight: 700;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.solution-card {
    display: flex;
    flex-direction: column;
    min-height: 286px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 14px 42px rgba(99, 8, 8, .06);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}

.solution-card:hover {
    transform: translateY(-3px);
    border-color: rgba(175, 18, 18, .32);
    background: #fff;
    box-shadow: 0 22px 58px rgba(99, 8, 8, .1);
}

.solution-visual {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 104px;
    margin-bottom: 16px;
    padding: 13px;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(30, 8, 8, .05) 0%, rgba(30, 8, 8, .68) 100%),
        var(--service-image),
        linear-gradient(135deg, #f8f5ff, #eef8f2);
    background-position: center;
    background-size: cover;
}

.solution-visual span {
    position: relative;
    z-index: 1;
    font-size: .86rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.solution-visual i {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: rgba(175, 18, 18, .2);
    opacity: 0;
}

.solution-visual i:nth-of-type(1) {
    width: 62%;
    height: 12px;
    top: 24px;
    left: 18px;
}

.solution-visual i:nth-of-type(2) {
    width: 44%;
    height: 12px;
    top: 52px;
    left: 18px;
}

.solution-visual i:nth-of-type(3) {
    width: 90px;
    height: 90px;
    right: -18px;
    bottom: -24px;
    background: rgba(22, 163, 106, .22);
}

.solution-card p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.62;
}

.solution-card h3 {
    margin: 0 0 10px;
    font-size: 1.12rem;
    line-height: 1.25;
}

.solution-card strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    color: var(--primary-dark);
    font-size: .86rem;
    font-weight: 600;
}

.solution-card strong::after {
    content: "→";
    font-weight: 500;
}

.platform {
    background: #fff;
}

.device-grid {
    display: grid;
    grid-template-columns: .8fr 1.25fr .8fr;
    gap: 20px;
    align-items: stretch;
}

.device-card {
    display: grid;
    align-content: space-between;
    min-height: 520px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg);
    padding: 24px;
}

.phone--small {
    width: 220px;
    min-height: 390px;
    margin-inline: auto;
    border-width: 8px;
}

.app-list {
    display: grid;
    gap: 10px;
    border-radius: 18px;
    background: #fff;
    padding: 14px;
}

.app-list > strong {
    color: var(--primary);
    font-size: 1.5rem;
}

.app-list > span {
    display: inline-grid;
    border-radius: 999px;
    padding: 6px 8px;
    background: var(--primary-soft);
    font-size: .76rem;
}

.app-list div {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
}

.desktop-ui {
    width: 100%;
    min-height: 360px;
}

.desktop-ui__top {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: .8rem;
}

.desktop-ui__top b {
    color: var(--green);
}

.desktop-ui h4 {
    margin: 24px 0 4px;
    font-size: 1.55rem;
}

.desktop-ui p {
    color: var(--muted);
}

.approval-row {
    grid-template-columns: 34px 1fr 1fr auto auto;
    background: #faf8fe;
}

.approval-row small {
    color: var(--muted);
}

.approval-row strong {
    text-align: right;
}

.approval-row em {
    border-radius: 999px;
    padding: 7px 10px;
    background: #e9f8f0;
    color: var(--green);
    font-size: .78rem;
    font-style: normal;
    font-weight: 700;
}

.tablet-ui {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-content: center;
    min-height: 260px;
}

.tablet-ui span {
    display: grid;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.7rem;
    font-weight: 700;
}

.tablet-ui b {
    text-align: center;
    font-size: .84rem;
}

.tablet-ui div {
    grid-column: 1 / -1;
    height: 90px;
    border-radius: var(--radius);
    background: repeating-linear-gradient(90deg, #f8e5e5 0 1px, transparent 1px 32px), linear-gradient(180deg, transparent 62%, rgba(175, 18, 18, .18) 62%);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: .8fr 1fr;
    gap: 42px;
    align-items: center;
}

.testimonials p {
    color: var(--muted);
}

.testimonial-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.testimonial-slider {
    position: relative;
    min-height: 380px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(16px);
    pointer-events: none;
    transition: .25s ease;
}

.testimonial-card.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-card > span {
    color: var(--primary);
    font-weight: 700;
}

.testimonial-card h3 {
    margin-bottom: 0;
    font-size: 2rem;
}

.testimonial-card footer {
    display: grid;
}

.testimonial-card small {
    color: var(--muted);
}

.slider-controls {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 8px;
}

.slider-controls button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--primary-dark);
    font-size: 1.5rem;
}

.faq {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 34px rgba(99, 8, 8, .05);
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease, transform .2s ease;
}

.faq-item:hover,
.faq-item.is-open {
    border-color: rgba(175, 18, 18, .28);
    background: #fff;
    box-shadow: 0 18px 48px rgba(99, 8, 8, .08);
}

.faq-item button {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 32px;
    gap: 14px;
    width: 100%;
    min-height: 78px;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 17px 20px;
    text-align: left;
    color: var(--ink);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

.faq-item button::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(175, 18, 18, .2);
    border-radius: 50%;
    color: var(--primary);
    font-weight: 500;
    line-height: 1;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.faq-item button span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: .88rem;
    font-weight: 600;
}

.faq-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .22s ease;
}

.faq-panel p {
    overflow: hidden;
    margin: 0;
    padding: 0 20px 0 78px;
    color: var(--muted);
    font-size: .96rem;
    line-height: 1.65;
}

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

.faq-item.is-open button::after {
    content: "−";
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.faq-item.is-open .faq-panel p {
    padding-bottom: 22px;
}

.roi {
    background:
        linear-gradient(135deg, rgba(127, 13, 13, .96), rgba(175, 18, 18, .94)),
        repeating-linear-gradient(0deg, transparent 0 39px, rgba(255, 255, 255, .08) 40px);
    color: #fff;
}

.roi__grid {
    display: grid;
    grid-template-columns: .88fr 1fr;
    gap: 40px;
    align-items: center;
}

.roi h2 span {
    color: #d8ff9f;
}

.roi__copy p {
    color: rgba(255, 255, 255, .78);
    font-size: 1.1rem;
}

.roi-control {
    display: grid;
    gap: 8px;
    margin-top: 24px;
}

.roi-control label {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
}

.roi-control input {
    accent-color: #d8ff9f;
}

.roi-control small {
    color: rgba(255, 255, 255, .7);
}

.roi-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

.roi-panel > div {
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 255, 255, .12);
}

.roi-panel span {
    display: block;
    color: rgba(255, 255, 255, .76);
    font-size: .82rem;
}

.roi-panel strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-size: 1.55rem;
}

.roi-panel h3,
.roi-panel p,
.roi-panel form,
.form-note {
    grid-column: 1 / -1;
}

.roi-panel h3 {
    margin: 14px 0 0;
}

.roi-panel p {
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.roi-panel p b {
    color: #d8ff9f;
}

.inline-form {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.inline-form input,
.modal input,
.modal textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 11px 13px;
    outline: 0;
}

.inline-form input:focus,
.modal input:focus,
.modal textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(175, 18, 18, .12);
}

.form-note {
    color: rgba(255, 255, 255, .72);
}

.inner-page {
    background: #fff;
}

.inner-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(255, 250, 250, .98), rgba(253, 234, 234, .62)),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(175, 18, 18, .045) 40px);
}

.inner-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: center;
}

.inner-hero h1,
.inner-hero__title {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.45rem, 4.2vw, 4.35rem);
    line-height: 1.05;
    font-weight: 600;
}

.inner-hero__subtitle {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 600;
}

.inner-hero__lead {
    max-width: 720px;
    color: var(--muted);
    font-size: 1.08rem;
}

.inner-card,
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.inner-card {
    padding: 34px;
}

.inner-card--image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(20, 8, 8, .1) 0%, rgba(20, 8, 8, .84) 100%),
        var(--service-image),
        #fff;
    background-position: center;
    background-size: cover;
}

.inner-card--image span,
.inner-card--image strong,
.inner-card--image p {
    position: relative;
    z-index: 1;
}

.inner-card--image strong {
    text-shadow: 0 2px 18px rgba(0, 0, 0, .36);
}

.inner-card span {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.inner-card strong {
    display: block;
    margin: 18px 0 10px;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
}

.inner-card p {
    color: var(--muted);
}

.inner-card--image span {
    color: rgba(255, 255, 255, .82);
}

.inner-card--image strong {
    color: #fff;
}

.inner-card--image p {
    color: rgba(255, 255, 255, .82);
}

.inner-content {
    background: var(--surface);
}

.inner-content__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
    gap: 48px;
    align-items: start;
}

.inner-content__grid h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

.inner-content__grid p {
    color: var(--muted);
}

.inner-list {
    display: grid;
    gap: 14px;
}

.inner-list div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--primary-soft);
}

.inner-list span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: .85rem;
}

.inner-list p {
    margin: 0;
}

.contact-card {
    display: grid;
    gap: 14px;
    padding: 28px;
}

.contact-card label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: .9rem;
    font-weight: 600;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 11px 13px;
    outline: 0;
}

.contact-card input:focus,
.contact-card textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(175, 18, 18, .12);
}

.trial {
    background: #fff;
}

.trial__box {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 54px 24px;
    border-radius: var(--radius);
    background: var(--primary-soft);
    border: 1px solid #f0bcbc;
}

.trial__box h2 {
    max-width: 760px;
}

.trial__box p:not(.eyebrow) {
    color: var(--muted);
}

.trial__box div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 20px 0 14px;
}

.seo-tags {
    padding: 34px 0 38px;
    border-top: 1px solid rgba(241, 213, 213, .76);
    background:
        linear-gradient(180deg, rgba(255, 250, 250, .98), rgba(253, 234, 234, .44)),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(175, 18, 18, .035) 40px);
}

.seo-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.seo-tags__list span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(175, 18, 18, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .78);
    color: var(--primary-dark);
    font-size: .72rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(99, 8, 8, .04);
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 70px 0 34px;
    background: #240707;
    color: #fff;
}

.footer__grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 52px;
}

.footer-brand img {
    width: 164px;
    filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-brand address {
    color: rgba(255, 255, 255, .68);
    font-style: normal;
}

.footer-brand a {
    display: block;
    margin: 8px 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.footer-links h3 {
    margin: 0 0 14px;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, .68);
    font-size: .9rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .68);
}

.footer-bottom div {
    display: flex;
    gap: 16px;
}

.modal {
    width: min(640px, calc(100vw - 30px));
    border: 0;
    border-radius: var(--radius);
    padding: 0;
    box-shadow: var(--shadow);
}

.modal::backdrop {
    background: rgba(38, 7, 7, .62);
    backdrop-filter: blur(8px);
}

.modal__card {
    position: relative;
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 28px;
    background: #fff;
}

.modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    font-size: 1.4rem;
}

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

.modal label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 600;
}

.modal h2 {
    font-size: 2rem;
}

.modal small {
    color: var(--muted);
}

.video-placeholder {
    display: grid;
    place-items: center;
    min-height: 360px;
    text-align: center;
    background: #1d0808;
    color: #fff;
    border-radius: var(--radius);
    padding: 24px;
}

.video-placeholder span {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-dark);
    font-size: 2rem;
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    max-width: min(360px, calc(100vw - 44px));
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--primary-dark);
    color: #fff;
    box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
    }

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

    .nav,
    .header-actions {
        display: none;
    }

    .site-header.is-open .nav,
    .site-header.is-open .header-actions {
        display: flex;
        grid-column: 1 / -1;
        width: 100%;
    }

    .site-header.is-open .nav {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px 0 8px;
    }

    .site-header.is-open .header-actions {
        gap: 10px;
        flex-wrap: wrap;
        padding-bottom: 18px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link,
    .nav-link--direct {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 13px 2px;
        text-align: left;
        font-size: 1rem;
    }

    .mega {
        position: static;
        display: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 8px;
        padding: 14px;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 14px;
    }

    .nav-item.is-open .mega,
    .nav-item:hover .mega,
    .nav-item:focus-within .mega {
        display: block;
        transform: none;
    }

    .mega--products,
    .mega-grid,
    .mega-grid--compact {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mega a {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .mega small,
    .mega-callout span,
    .featured-card small {
        white-space: normal;
    }

    .mega-callout {
        min-height: auto;
        padding: 16px;
    }

    .hero__grid,
    .intro__layout,
    .inner-hero__grid,
    .inner-content__grid,
    .partners__grid,
    .testimonials__grid,
    .roi__grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .hero__visual {
        min-height: 560px;
    }

    .inner-hero {
        min-height: auto;
    }

    .phone--hero {
        right: 18%;
    }

    .journey-card,
    .device-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    :root {
        --container: min(100vw - 24px, 1180px);
    }

    .section {
        padding: 62px 0;
    }

    h1 {
        font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    }

    h2 {
        font-size: clamp(1.8rem, 8.5vw, 2.55rem);
    }

    .header-inner {
        width: min(100vw - 22px, 1240px);
    }

    .brand img {
        width: 128px;
    }

    .mega--products,
    .mega-grid,
    .mega-grid--compact,
    .intro__layout,
    .intro__box,
    .inner-hero__grid,
    .inner-content__grid,
    .solution-grid,
    .faq-grid,
    .roi-panel,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .site-header.is-open .header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .locale-switcher,
    .locale-button,
    .login-link {
        width: 100%;
    }

    .locale-button,
    .login-link {
        justify-content: center;
    }

    .locale-menu {
        left: 0;
        right: 0;
        width: 100%;
    }

    .mega {
        padding: 12px;
    }

    .mega h3 {
        margin-top: 2px;
    }

    .mega a {
        padding: 9px 8px;
        font-size: .9rem;
    }

    .mega-callout {
        align-items: flex-start;
        text-align: left;
    }

    .whatsapp-float {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 58px;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        gap: 32px;
    }

    .hero__visual {
        min-height: 510px;
    }

    .intro__box {
        padding: 24px;
    }

    .intro-video,
    .intro-video video {
        min-height: 360px;
    }

    .hero-gallery {
        aspect-ratio: 16 / 11;
    }

    .phone--hero {
        right: 2%;
        width: 246px;
        min-height: 500px;
    }

    .video-card {
        bottom: 10px;
    }

    .hero__actions,
    .inline-form,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .faq-item button {
        grid-template-columns: 36px minmax(0, 1fr) 28px;
        gap: 10px;
        padding: 15px 14px;
    }

    .faq-item button span {
        width: 30px;
        height: 30px;
    }

    .faq-item button::after {
        width: 28px;
        height: 28px;
    }

    .faq-panel p {
        padding-left: 60px;
        padding-right: 14px;
    }

    .logo-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .journey-card {
        min-height: unset;
        padding: 22px;
    }

    .journey-visual {
        min-height: 270px;
    }

    .approval-row {
        grid-template-columns: 30px 1fr auto;
    }

    .approval-row small,
    .approval-row em {
        grid-column: 2 / -1;
    }

    .device-card {
        min-height: auto;
    }

    .testimonial-slider {
        min-height: 460px;
    }

    .testimonial-card {
        padding: 24px;
    }

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

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