:root {
    --navy: #0b1220;
    --navy-2: #111c32;
    --blue: #2450a6;
    --cyan: #0ea5b8;
    --green: #138a62;
    --ink: #172033;
    --muted: #64748b;
    --soft: #f5f7fb;
    --line: #dbe3ef;
    --white: #ffffff;
    --red: #d95d5d;
    --orange: #d47a36;
    --amber: #ba8a18;
    --shadow: 0 24px 70px rgba(11, 18, 32, 0.12);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--soft);
    color: var(--ink);
    font-family: "Google Sans", "Product Sans", Arial, sans-serif;
    line-height: 1.55;
}

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

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

button,
input,
textarea {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(219, 227, 239, 0.85);
    background: rgba(245, 247, 251, 0.92);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 10px 24px rgba(11, 18, 32, 0.12);
    overflow: hidden;
}

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

.brand-name,
.brand-subtitle {
    display: block;
}

.brand-name {
    font-weight: 800;
    line-height: 1;
}

.brand-subtitle {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #526175;
    font-size: 14px;
    font-weight: 650;
}

.desktop-nav a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--navy);
}

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

.language-toggle {
    display: inline-flex;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 3px;
}

.language-button {
    min-width: 44px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 9px;
}

.language-button.is-active {
    background: var(--navy);
    color: var(--white);
}

.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 800;
    line-height: 1.15;
    padding: 13px 18px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 16px 40px rgba(36, 80, 166, 0.26);
}

.button-primary:hover {
    background: #1d438d;
}

.button-dark {
    background: var(--navy);
    color: var(--white);
}

.button-small {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 14px;
}

.button-ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.86);
    color: var(--navy);
}

.button-ghost:hover {
    border-color: rgba(36, 80, 166, 0.42);
    box-shadow: 0 14px 34px rgba(11, 18, 32, 0.08);
}

.button-icon {
    font-size: 18px;
    line-height: 1;
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
}

.menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 10px;
    background: var(--navy);
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    background: var(--white);
    padding: 16px 20px 20px;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--navy);
    font-weight: 750;
}

.mobile-nav .button {
    margin-top: 10px;
    padding: 13px 16px;
    text-align: center;
}

.mobile-nav .button-dark {
    color: var(--white);
}

.hero {
    border-bottom: 1px solid var(--line);
    padding: 84px 0;
}

.section-grid {
    background-color: var(--soft);
    background-image:
        linear-gradient(rgba(36, 80, 166, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 80, 166, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
    gap: 64px;
}

.eyebrow,
.section-kicker {
    margin: 0;
    color: var(--cyan);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.flag-emoji {
    display: inline-block;
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 1;
}

.hero h1,
.section h2 {
    margin: 0;
    color: var(--navy);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.08;
}

.hero h1 {
    max-width: 760px;
    margin-top: 22px;
    font-size: 44px;
}

.hero-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: #4e5d72;
    font-size: 19px;
}

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

.assurance {
    max-width: 660px;
    margin: 28px 0 0;
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    background: rgba(19, 138, 98, 0.08);
    color: #425067;
    padding: 15px 18px;
    font-size: 15px;
}

.assurance-mark {
    color: var(--navy);
    font-weight: 850;
    background: linear-gradient(to top, rgba(19, 138, 98, 0.28) 0.3em, transparent 0.3em) 0 92% / 100% 0.38em no-repeat;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(219, 227, 239, 0.95);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96)),
        var(--white);
    box-shadow: var(--shadow);
    padding: 24px;
}

.panel-top,
.hero-stats {
    display: flex;
}

.panel-top {
    align-items: center;
    margin-bottom: 20px;
}

.panel-title {
    color: var(--navy);
    font-size: 18px;
    font-weight: 850;
}

.process-list {
    display: grid;
    gap: 10px;
}

.process-row {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(219, 227, 239, 0.95);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    padding: 13px;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.process-row:hover {
    border-color: rgba(36, 80, 166, 0.28);
    background: var(--white);
    transform: translateY(-1px);
}

.process-number {
    color: #8aa0bb;
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
}

.process-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(36, 80, 166, 0.1);
    color: var(--blue);
}

.process-icon .tabler-icon {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-row strong,
.process-row small {
    display: block;
}

.process-row strong {
    color: var(--navy);
    font-size: 14px;
    line-height: 1.25;
}

.process-row small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.is-review {
    border-color: rgba(19, 138, 98, 0.35);
    background: rgba(19, 138, 98, 0.07);
}

.is-review .process-icon {
    background: rgba(19, 138, 98, 0.12);
    color: var(--green);
}

.hero-stats {
    gap: 8px;
    margin-top: 18px;
}

.hero-stats div {
    flex: 1;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 10px;
    text-align: center;
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    color: var(--navy);
    font-size: 17px;
    line-height: 1.15;
}

.hero-stats span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.section {
    padding: 96px 0;
}

.platform-section {
    background: var(--white);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
}

.platform-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    padding: 24px;
}

.platform-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(36, 80, 166, 0.1);
    color: var(--blue);
}

.platform-icon .tabler-icon {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.platform-card h3 {
    margin: 18px 0 0;
    color: var(--navy);
}

.platform-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    align-items: end;
    gap: 52px;
}

.split-heading h2,
.section-title h2,
.data-layout h2,
.compare-layout h2,
.future-panel h2,
.cta-copy h2 {
    margin-top: 12px;
    font-size: clamp(32px, 4vw, 50px);
}

.split-heading p:last-child,
.section-title p:last-child,
.data-layout p,
.compare-layout p,
.future-panel p,
.cta-copy p {
    color: var(--muted);
    font-size: 18px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.card,
.feature-card,
.case-card,
.lead-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 45px rgba(11, 18, 32, 0.06);
}

.card {
    min-height: 230px;
    padding: 26px;
}

.card-icon,
.feature-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(36, 80, 166, 0.1);
    color: var(--blue);
    font-weight: 850;
}

.warning-red {
    border-left: 4px solid var(--red);
}

.warning-orange {
    border-left: 4px solid var(--orange);
}

.warning-amber {
    border-left: 4px solid var(--amber);
}

.card h3,
.feature-card h3,
.case-card h3 {
    margin: 18px 0 0;
    color: var(--navy);
    line-height: 1.2;
}

.card p,
.feature-card p,
.case-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-dark .section-title p {
    color: #b6c2d6;
}

.narrow {
    max-width: 740px;
}

.section-title {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 44px;
}

.timeline-item {
    position: relative;
    min-height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    padding: 24px;
}

.timeline-item span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--cyan);
    color: var(--navy);
    font-weight: 900;
}

.timeline-item .tabler-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-icon .tabler-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.timeline-item h3 {
    margin: 18px 0 0;
}

.timeline-item p {
    margin: 10px 0 0;
    color: #b6c2d6;
}

.timeline-item.is-final {
    border-color: rgba(19, 138, 98, 0.5);
    background: rgba(19, 138, 98, 0.13);
}

.timeline-item.is-final span {
    background: var(--green);
    color: var(--white);
}

.integration-section {
    background: var(--white);
}

.integration-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
    align-items: center;
    gap: 48px;
}

.integration-copy h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
}

.wazzup-logo {
    display: block;
    width: 148px;
    height: auto;
    margin-bottom: 18px;
}

.integration-copy p:not(.section-kicker) {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.integration-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
    border: 1px solid rgba(19, 138, 98, 0.22);
    border-radius: var(--radius);
    background: rgba(19, 138, 98, 0.07);
    color: #425067;
    padding: 15px;
    font-size: 14px;
}

.integration-note .tabler-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: var(--green);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wazzup-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.wazzup-step {
    position: relative;
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    padding: 20px;
}

.wazzup-step::after {
    position: absolute;
    right: 18px;
    bottom: 14px;
    color: rgba(36, 80, 166, 0.26);
    content: "→";
    font-size: 24px;
    font-weight: 850;
}

.wazzup-step:nth-child(2)::after {
    content: "↓";
}

.wazzup-step:last-child::after {
    content: "";
}

.flow-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(36, 80, 166, 0.1);
    color: var(--blue);
}

.flow-icon .tabler-icon {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wazzup-step h3 {
    margin: 18px 0 0;
    color: var(--navy);
    line-height: 1.18;
}

.wazzup-step p {
    margin: 9px 0 0;
    color: var(--muted);
}

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

.payment-layout {
    display: grid;
    grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
}

.payment-visual {
    display: grid;
    place-items: center;
}

.payment-mockup {
    display: block;
    width: min(100%, 520px);
    height: auto;
}

.payment-points > span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-points .tabler-icon {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.payment-copy h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
}

.payment-copy p:not(.section-kicker) {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 18px;
}

.payment-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.payment-points > span {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--navy);
    padding: 14px;
    font-weight: 750;
}

.payment-points .tabler-icon {
    color: var(--cyan);
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.payment-logos img {
    display: block;
    max-width: 96px;
    max-height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 8px 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 46px;
}

.feature-card {
    min-height: 220px;
    padding: 24px;
}

.feature-card.large {
    grid-column: span 2;
}

.dark-card {
    background: var(--navy);
    color: var(--white);
}

.dark-card h3,
.dark-card p {
    color: var(--white);
}

.accent-card {
    background: #eaf8f5;
    border-color: rgba(19, 138, 98, 0.22);
}

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

.data-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
    align-items: center;
    gap: 56px;
}

.data-cards {
    display: grid;
    gap: 14px;
}

.data-cards article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    padding: 22px;
}

.data-cards strong,
.data-cards article > div > span {
    display: block;
}

.data-icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(36, 80, 166, 0.1);
    color: var(--blue);
}

.data-icon .tabler-icon {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.data-cards strong {
    color: var(--blue);
    font-size: 30px;
    line-height: 1.1;
}

.data-cards article > div > span {
    margin-top: 8px;
    color: var(--muted);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 46px;
}

.case-card {
    min-height: 220px;
    padding: 22px;
}

.case-card-title {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.case-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(36, 80, 166, 0.1);
    color: var(--blue);
}

.case-icon .tabler-icon {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.case-card h3 {
    margin-top: 0;
}

.section-compare {
    background: linear-gradient(180deg, var(--soft), #ffffff);
}

.compare-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(460px, 1fr);
    align-items: start;
    gap: 52px;
}

.compare-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}

.compare-row:first-child {
    border-top: 0;
}

.compare-row span {
    padding: 18px;
    color: var(--muted);
}

.compare-row span + span {
    border-left: 1px solid var(--line);
    background: rgba(19, 138, 98, 0.07);
    color: var(--navy);
    font-weight: 750;
}

.compare-head span {
    background: var(--navy);
    color: var(--white);
    font-weight: 850;
}

.compare-head span + span {
    background: var(--blue);
    color: var(--white);
}

.future-section {
    padding-top: 0;
}

.future-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 40px;
    border-radius: var(--radius);
    background: var(--navy);
    color: var(--white);
    padding: 48px;
}

.future-panel h2,
.future-panel p {
    color: var(--white);
}

.text-underline {
    display: inline;
    background: linear-gradient(to top, var(--cyan) 0.24em, transparent 0.24em) 0 92% / 100% 0.34em no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 0.03em;
}

.future-lead {
    margin: 18px 0 0;
    color: #7ddce8 !important;
    font-size: 22px !important;
    font-weight: 850;
}

.future-list {
    display: grid;
    gap: 12px;
}

.future-list span {
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    padding: 16px;
    color: #dce6f5;
    font-weight: 750;
}

.future-list span span {
    display: inline;
    border: 0;
    background: none;
    padding: 0;
    color: inherit;
}

.future-list .tabler-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: var(--cyan);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cta-section {
    background: var(--navy);
    color: var(--white);
}

.cta-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.75fr);
    align-items: start;
    gap: 56px;
}

.cta-copy h2,
.cta-copy p {
    color: var(--white);
}

.cta-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.cta-notes span {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #dbe6f4;
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 750;
}

.lead-form {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.lead-form label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    outline: none;
    padding: 13px 14px;
    resize: vertical;
}

.lead-form input:focus,
.lead-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(36, 80, 166, 0.12);
}

.form-button {
    width: 100%;
}

.form-hint {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.privacy-link {
    appearance: none;
    border: 0;
    background: none;
    color: var(--blue);
    cursor: pointer;
    font: inherit;
    font-weight: 750;
    padding: 0;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-link:hover,
.privacy-link:focus-visible {
    color: var(--cyan);
}

.privacy-modal[hidden] {
    display: none;
}

.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.privacy-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.62);
    backdrop-filter: blur(10px);
}

.privacy-modal__dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: min(820px, calc(100vh - 48px));
    overflow: auto;
    border: 1px solid rgba(219, 227, 239, 0.9);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 34px;
}

.privacy-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--navy);
    cursor: pointer;
    font-size: 0;
}

.privacy-modal__close::before,
.privacy-modal__close::after {
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
}

.privacy-modal__close::before {
    transform: rotate(45deg);
}

.privacy-modal__close::after {
    transform: rotate(-45deg);
}

.privacy-modal__close:hover,
.privacy-modal__close:focus-visible {
    border-color: var(--blue);
    color: var(--blue);
}

.privacy-modal h2 {
    max-width: 620px;
    margin: 8px 0 0;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.1;
}

.privacy-modal__lead {
    margin: 16px 0 0;
    color: var(--muted);
}

.privacy-modal__list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.privacy-modal__list article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    padding: 16px;
}

.privacy-modal__list h3 {
    margin: 0;
    color: var(--navy);
    font-size: 15px;
}

.privacy-modal__list p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.privacy-modal__button {
    margin-top: 22px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--white);
    padding: 48px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.65fr 0.9fr 1fr;
    gap: 34px;
}

.footer-grid h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 14px;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

.footer-grid a,
.footer-grid span {
    margin-top: 8px;
}

.footer-contact-list {
    display: grid;
    gap: 10px;
}

.footer-contact-list .footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    color: var(--muted);
}

.footer-contact-list a.footer-contact {
    transition: color 0.2s ease;
}

.footer-contact-list a.footer-contact:hover,
.footer-contact-list a.footer-contact:focus-visible {
    color: var(--blue);
}

.footer-contact .tabler-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact span {
    display: inline;
    margin-top: 0;
}

.footer-security {
    margin-top: 18px;
}

.footer-security .footer-security-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 10px;
    color: var(--muted);
}

.footer-security .tabler-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    color: var(--green);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-security-item span {
    display: inline;
    margin-top: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 20px;
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-tag .flag-emoji {
    font-size: 17px;
}

@media (max-width: 1040px) {
    .desktop-nav,
    .desktop-cta {
        display: none;
    }

    .menu-button {
        display: flex;
    }

    .site-header.is-open .mobile-nav {
        display: block;
    }

    .hero-layout,
    .split-heading,
    .integration-layout,
    .payment-layout,
    .data-layout,
    .compare-layout,
    .future-panel,
    .cta-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 64px 0;
    }

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

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

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

    .payment-layout {
        gap: 34px;
    }

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

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .header-inner {
        min-height: 68px;
        gap: 12px;
    }

    .brand-subtitle {
        display: none;
    }

    .language-button {
        min-width: 38px;
        padding: 7px;
    }

    .hero,
    .section {
        padding: 56px 0;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.12;
    }

    .hero-lead,
    .split-heading p:last-child,
    .section-title p:last-child,
    .data-layout p,
    .compare-layout p,
    .future-panel p,
    .cta-copy p {
        font-size: 16px;
    }

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

    .hero-panel {
        padding: 16px;
    }

    .hero-stats,
    .problem-grid,
    .platform-grid,
    .timeline,
    .wazzup-flow,
    .feature-grid,
    .case-grid,
    .compare-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .wazzup-step {
        min-height: auto;
    }

    .wazzup-step::after {
        content: "↓";
    }

    .wazzup-step:last-child::after {
        content: "";
    }

    .hero-stats {
        display: grid;
    }

    .feature-card.large {
        grid-column: span 1;
    }

    .compare-row span + span {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .future-panel {
        padding: 28px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
