:root {
    --site-width: 1360px;
    --site-gutter: 4rem;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ink: #0b1220;
    --ink-2: #172033;
    --muted: #5e6d80;
    --soft: #7d8da1;
    --blue-900: #3c9ab6;
    --blue-800: #51a0b8;
    --blue-700: #1b78ad;
    --blue-500: #34a3bf;
    --blue-300: #9adce1;
    --blue-100: #e8f7f9;
    --blue-050: #f4fbfc;
    --paper: #ffffff;
    --page: #f8fbfd;
    --line: rgba(15, 79, 131, 0.13);
    --line-strong: rgba(15, 79, 131, 0.24);
    --shadow-soft: 0 18px 50px rgba(60, 154, 182, 0.08);
    --shadow-panel: 0 32px 90px rgba(60, 154, 182, 0.16);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 38px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    position: relative;
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(205, 244, 255, 0.72) 0, rgba(248, 251, 253, 0) 38rem),
        var(--page);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    position: absolute;
    inset: 0 0 auto;
    z-index: -1;
    height: 38rem;
    content: "";
    background:
        radial-gradient(circle at 18% 20%, rgba(154, 220, 225, 0.34), transparent 22rem),
        radial-gradient(circle at 82% 4%, rgba(22, 105, 157, 0.14), transparent 24rem);
    pointer-events: none;
}

a {
    color: inherit;
}

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

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

:focus-visible {
    outline: 3px solid rgba(52, 163, 191, 0.42);
    outline-offset: 3px;
}

.site-header,
main,
.site-footer {
    width: min(var(--site-width), calc(100% - var(--site-gutter)));
    margin-inline: auto;
}

main,
.site-footer {
    position: relative;
    z-index: 1;
}

.site-header {
    position: sticky;
    top: 1rem;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.72rem 0.9rem 0.72rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 55px rgba(15, 79, 131, 0.1);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
}

.brand-icon {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    overflow: visible;
}

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

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 0.16rem;
    color: var(--muted);
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 700;
}

.site-nav a,
.header-cta,
.button,
.language-switcher a {
    border-radius: 999px;
    text-decoration: none;
}

.site-nav a {
    padding: 0.56rem 0.78rem;
}

.site-nav .nav-cta {
    display: none;
}

.site-nav a:hover {
    color: var(--blue-900);
    background: var(--blue-100);
}

.header-actions {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    justify-content: end;
}

.language-switcher {
    display: flex;
    gap: 0.2rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.2rem;
    color: var(--soft);
    background: #f7fbfc;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 800;
}

.language-switcher a {
    display: inline-grid;
    place-items: center;
    min-width: 2rem;
    min-height: 2rem;
}

.language-switcher a:hover,
.language-switcher .is-active {
    color: #fff;
    background: var(--blue-800);
}

.header-cta,
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 3.25rem;
    border: 1px solid transparent;
    padding: 0.85rem 1.3rem;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0;
}

.header-cta {
    min-height: 2.9rem;
    padding: 0.72rem 1.1rem;
    color: #fff;
    background: var(--blue-900);
    box-shadow: 0 14px 34px rgba(15, 79, 131, 0.18);
}

.header-cta:hover,
.button-primary:hover {
    background: var(--blue-800);
}

.menu-toggle {
    display: none;
}

.hero-section {
    display: grid;
    justify-items: center;
    gap: 2.6rem;
    padding: 5.6rem 0 4.3rem;
    text-align: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: grid;
    justify-items: center;
    max-width: 960px;
}

.hero-flow {
    position: absolute;
    top: 5rem;
    left: 50%;
    z-index: 0;
    width: 100vw;
    height: 58rem;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-50%);
}

.hero-flow::before {
    position: absolute;
    inset: 24% 8% 8%;
    content: "";
    background:
        linear-gradient(90deg, rgba(15, 79, 131, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(15, 79, 131, 0.04) 1px, transparent 1px);
    background-size: 4.8rem 4.8rem;
    mask-image: linear-gradient(180deg, transparent, #000 22%, transparent 92%);
}

.flow-lane,
.flow-message,
.flow-status,
.flow-packet {
    position: absolute;
    display: block;
}

.flow-lane {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 163, 191, 0.34), rgba(15, 79, 131, 0.08), transparent);
    transform-origin: center;
}

.flow-lane::after {
    position: absolute;
    top: -0.2rem;
    right: 18%;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 0.16rem;
    content: "";
    background: rgba(52, 163, 191, 0.64);
    box-shadow: 0 0 18px rgba(52, 163, 191, 0.34);
}

.flow-lane-one {
    top: 42%;
    left: 3%;
    width: 46%;
    transform: rotate(12deg);
}

.flow-lane-two {
    top: 58%;
    right: 0;
    width: 44%;
    transform: rotate(-10deg);
}

.flow-lane-three {
    top: 76%;
    left: 22%;
    width: 58%;
    transform: rotate(2deg);
}

.flow-message {
    width: clamp(8.5rem, 13vw, 13.5rem);
    border: 1px solid rgba(15, 79, 131, 0.13);
    border-radius: 1.1rem 1.1rem 1.1rem 0.38rem;
    padding: 0.72rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 46px rgba(15, 79, 131, 0.11);
    backdrop-filter: blur(10px);
}

.flow-message::before {
    display: block;
    width: 2.4rem;
    height: 0.48rem;
    margin-bottom: 0.52rem;
    border-radius: 999px;
    content: "";
    background: rgba(52, 163, 191, 0.42);
}

.flow-message i,
.flow-message b {
    display: block;
    height: 0.42rem;
    border-radius: 999px;
}

.flow-message i {
    width: 78%;
    background: rgba(94, 109, 128, 0.2);
}

.flow-message b {
    width: 54%;
    margin-top: 0.4rem;
    background: rgba(94, 109, 128, 0.14);
}

.flow-message-one {
    top: 33%;
    left: 2%;
}

.flow-message-two {
    top: 47%;
    right: 5%;
    border-radius: 1.1rem 1.1rem 0.38rem;
}

.flow-message-three {
    bottom: 10%;
    left: 10%;
}

.flow-message-four {
    right: 17%;
    bottom: 3%;
    width: clamp(7.5rem, 11vw, 11rem);
    border-color: rgba(52, 163, 191, 0.19);
    background: rgba(232, 247, 249, 0.78);
}

.flow-status {
    width: 4.1rem;
    height: 1.35rem;
    border: 1px solid rgba(52, 163, 191, 0.2);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(52, 163, 191, 0.62) 0 34%, transparent 34%),
        rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 32px rgba(15, 79, 131, 0.1);
}

.flow-status-one {
    top: 65%;
    left: 34%;
}

.flow-status-two {
    top: 38%;
    right: 30%;
    width: 3.2rem;
    background:
        linear-gradient(90deg, rgba(15, 79, 131, 0.7) 0 42%, transparent 42%),
        rgba(255, 255, 255, 0.86);
}

.flow-packet {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 0.22rem;
    background: rgba(52, 163, 191, 0.58);
    box-shadow: 0 0 18px rgba(52, 163, 191, 0.28);
}

.flow-packet-one {
    top: 54%;
    left: 20%;
}

.flow-packet-two {
    top: 70%;
    right: 24%;
}

.flow-packet-three {
    top: 46%;
    right: 13%;
}

.badge,
.eyebrow {
    display: inline-flex;
    margin: 0 0 1rem;
    color: var(--blue-800);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.badge {
    border: 1px solid rgba(22, 105, 157, 0.22);
    border-radius: 999px;
    padding: 0.46rem 0.74rem;
    background: rgba(232, 247, 249, 0.85);
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 0;
}

h1 {
    max-width: 13ch;
    font-size: 5.85rem;
    line-height: 0.98;
}

h2 {
    max-width: 850px;
    font-size: 3.15rem;
    line-height: 1.04;
}

h3 {
    font-size: 1.16rem;
    line-height: 1.22;
}

.hero-copy > p:not(.badge) {
    max-width: 760px;
    margin: 1.15rem 0 0;
    color: var(--muted);
    font-size: 1.22rem;
    line-height: 1.68;
}

.hero-copy > p.hero-pronunciation {
    margin-top: 0.72rem;
    color: var(--ink-2);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: center;
    margin-top: 1.55rem;
}

.button-primary {
    color: #fff;
    background: var(--blue-900);
    box-shadow: 0 18px 42px rgba(15, 79, 131, 0.2);
}

.button-secondary {
    border-color: var(--line-strong);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
}

.button-secondary:hover {
    border-color: var(--blue-500);
    color: var(--blue-900);
    background: #fff;
}

.dashboard {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(270px, 0.33fr) minmax(360px, 0.45fr) minmax(250px, 0.28fr);
    width: min(1180px, 100%);
    min-height: 34rem;
    overflow: hidden;
    border: 1px solid rgba(18, 24, 31, 0.14);
    border-radius: 18px;
    text-align: left;
    background: #f0f2f5;
    box-shadow: var(--shadow-panel);
}

.wa-sidebar,
.wa-thread,
.wa-contact-card {
    min-width: 0;
}

.wa-sidebar,
.wa-contact-card {
    background: #fff;
}

.wa-thread {
    display: grid;
    grid-template-rows: auto 1fr auto;
    border-inline: 1px solid #d8dbdf;
}

.wa-toolbar,
.wa-chat-header,
.wa-contact-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 3.75rem;
    border-bottom: 1px solid #dfe3e7;
    padding: 0 0.9rem;
    background: #f0f2f5;
}

.wa-toolbar-actions {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    color: #6b7278;
}

.wa-icon {
    position: relative;
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    color: currentColor;
}

.wa-icon::before,
.wa-icon::after {
    position: absolute;
    content: "";
}

.wa-icon-moon::before {
    inset: 0.1rem 0.05rem 0.05rem 0.28rem;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 999px;
    transform: rotate(-28deg);
}

.wa-icon-status::before {
    inset: 0.15rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 999px;
}

.wa-icon-status::after {
    top: 0.05rem;
    right: 0.05rem;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: #00a884;
}

.wa-icon-message::before {
    inset: 0.2rem 0.12rem 0.32rem;
    border-radius: 0.12rem;
    background: currentColor;
}

.wa-icon-message::after {
    left: 0.32rem;
    bottom: 0.18rem;
    border-width: 0.24rem 0.28rem 0 0;
    border-style: solid;
    border-color: currentColor transparent transparent;
}

.wa-icon-menu::before {
    top: 0.18rem;
    left: 0.5rem;
    width: 0.24rem;
    height: 0.24rem;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0.42rem 0 currentColor, 0 0.84rem 0 currentColor;
}

.wa-icon-search::before {
    top: 0.18rem;
    left: 0.18rem;
    width: 0.62rem;
    height: 0.62rem;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.wa-icon-search::after {
    right: 0.16rem;
    bottom: 0.16rem;
    width: 0.48rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
}

.wa-avatar {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    overflow: hidden;
    border-radius: 999px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
}

.wa-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-avatar-brand {
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(18, 24, 31, 0.08);
}

.wa-avatar-1 {
    background: linear-gradient(135deg, #174457, #79cdd7);
}

.wa-avatar-2 {
    background: linear-gradient(135deg, #8e5838, #e6b88c);
}

.wa-avatar-3 {
    background: linear-gradient(135deg, #224f3a, #94c486);
}

.wa-avatar-4 {
    background: linear-gradient(135deg, #7352a3, #c5a9df);
}

.wa-avatar-5 {
    background: linear-gradient(135deg, #36577c, #83bbe2);
}

.wa-avatar-6 {
    background: linear-gradient(135deg, #91495f, #e7a6ba);
}

.wa-company-notice {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    border-bottom: 1px solid #d5eef6;
    padding: 0.82rem 0.95rem;
    background: #d9f4fb;
}

.wa-company-notice img {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    background: #fff;
}

.wa-company-notice div {
    min-width: 0;
}

.wa-company-notice strong,
.wa-company-notice span {
    display: block;
}

.wa-company-notice strong {
    color: #0b1220;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.2;
}

.wa-company-notice span {
    color: #415260;
    font-size: 0.78rem;
    font-weight: 650;
}

.wa-company-notice i {
    position: relative;
    width: 1.2rem;
    height: 1.2rem;
    margin-left: auto;
}

.wa-company-notice i::before,
.wa-company-notice i::after {
    position: absolute;
    top: 0.56rem;
    left: 0.12rem;
    width: 0.95rem;
    height: 2px;
    border-radius: 999px;
    content: "";
    background: #43545f;
}

.wa-company-notice i::before {
    transform: rotate(45deg);
}

.wa-company-notice i::after {
    transform: rotate(-45deg);
}

.wa-import {
    display: flex;
    gap: 0.72rem;
    align-items: center;
    padding: 0.9rem 1rem;
    background: #9de4fb;
}

.wa-import > span {
    position: relative;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 999px;
    background: #fff;
}

.wa-import > span::before {
    width: 0;
    height: 0;
    border-width: 0.62rem 0.42rem 0;
    border-style: solid;
    border-color: #9de4fb transparent transparent;
    content: "";
}

.wa-import > span::after {
    position: absolute;
    top: 0.62rem;
    width: 0.22rem;
    height: 0.7rem;
    border-radius: 999px;
    content: "";
    background: #9de4fb;
}

.wa-import strong {
    display: block;
    color: #111b21;
    font-size: 0.94rem;
    line-height: 1.2;
}

.wa-import p {
    margin: 0.12rem 0 0;
    color: #31505f;
    font-size: 0.78rem;
    line-height: 1.35;
}

.wa-search {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin: 0.45rem 0.6rem;
    border-radius: 9px;
    padding: 0.55rem 0.8rem;
    background: #f0f2f5;
}

.wa-search span {
    position: relative;
    width: 1rem;
    height: 1rem;
    color: #00a884;
}

.wa-search span::before {
    position: absolute;
    inset: 0.05rem 0.24rem 0.24rem 0.05rem;
    border: 2px solid currentColor;
    border-radius: 999px;
    content: "";
}

.wa-search span::after {
    position: absolute;
    right: 0.05rem;
    bottom: 0.06rem;
    width: 0.42rem;
    height: 2px;
    border-radius: 999px;
    content: "";
    background: currentColor;
    transform: rotate(45deg);
}

.wa-search p {
    margin: 0;
    color: #8a9298;
    font-size: 0.78rem;
}

.wa-chat-list {
    max-height: 23rem;
    overflow: hidden;
}

.wa-chat-row {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.72rem;
    align-items: center;
    min-height: 4.35rem;
    border-top: 1px solid #eef0f2;
    padding: 0.54rem 0.8rem;
    background: #fff;
}

.wa-chat-row.is-active {
    background: #e9edef;
}

.wa-chat-row > div {
    min-width: 0;
}

.wa-chat-row-top {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: baseline;
}

.wa-chat-row strong {
    overflow: hidden;
    color: #111b21;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wa-chat-row time {
    flex: 0 0 auto;
    color: #667781;
    font-size: 0.67rem;
}

.wa-chat-row p {
    overflow: hidden;
    margin: 0.2rem 0 0;
    color: #667781;
    font-size: 0.78rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wa-chat-row p span {
    margin-right: 0.2rem;
    color: #00a8e8;
    font-size: 0.76rem;
}

.wa-conversation-tag {
    display: inline-flex;
    max-width: 100%;
    margin-top: 0.34rem;
    border-radius: 999px;
    padding: 0.18rem 0.48rem;
    color: #4b5563;
    background: #eef2f7;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.15;
}

.wa-conversation-tag.is-completed,
.wa-contact-tag.is-completed {
    color: #075e54;
    background: #dcf8ef;
}

.wa-conversation-tag.is-pending,
.wa-contact-tag.is-pending {
    color: #92400e;
    background: #fef3c7;
}

.wa-conversation-tag.is-awaiting,
.wa-contact-tag.is-awaiting {
    color: #991b1b;
    background: #fee2e2;
}

.wa-chat-row em {
    display: grid;
    place-items: center;
    min-width: 1.18rem;
    height: 1.18rem;
    border-radius: 999px;
    color: #fff;
    background: #25d366;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 800;
}

.wa-chat-header {
    gap: 0.75rem;
    justify-content: start;
}

.wa-chat-header > div:first-of-type {
    min-width: 0;
    margin-right: auto;
}

.wa-chat-header strong,
.wa-chat-header div span {
    display: block;
}

.wa-chat-header strong {
    color: #111b21;
    font-size: 0.98rem;
    line-height: 1.2;
}

.wa-chat-header div span {
    color: #667781;
    font-size: 0.72rem;
}

.wa-message-area {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0.72rem;
    overflow: hidden;
    padding: 1.2rem 1.6rem;
    background:
        radial-gradient(circle at 1rem 1rem, rgba(17, 27, 33, 0.035) 0 0.16rem, transparent 0.18rem),
        radial-gradient(circle at 3.3rem 2.6rem, rgba(17, 27, 33, 0.03) 0 0.12rem, transparent 0.14rem),
        linear-gradient(135deg, rgba(17, 27, 33, 0.035) 0 1px, transparent 1px),
        #efeae2;
    background-size: 4.4rem 4.4rem, 4.8rem 4.8rem, 2.1rem 2.1rem, auto;
}

.wa-encryption {
    justify-self: center;
    max-width: 34rem;
    margin: 0 0 0.1rem;
    border-radius: 7px;
    padding: 0.6rem 0.8rem;
    color: #54656f;
    background: #fff3c4;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.wa-date-chip {
    justify-self: center;
    border-radius: 7px;
    padding: 0.42rem 0.62rem;
    color: #54656f;
    background: #e1f3fb;
    font-size: 0.68rem;
    font-weight: 800;
}

.wa-bubble {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, auto) auto;
    gap: 0.7rem;
    align-items: end;
    width: fit-content;
    max-width: min(78%, 24rem);
    margin: 0;
    border-radius: 7.5px;
    padding: 0.48rem 0.55rem 0.4rem 0.7rem;
    color: #111b21;
    background: #fff;
    font-size: 0.82rem;
    line-height: 1.32;
    box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.13);
}

.wa-bubble.from-agent {
    justify-self: end;
    background: #d9fdd3;
}

.wa-bubble time {
    color: #667781;
    font-size: 0.62rem;
    line-height: 1;
    white-space: nowrap;
}

.wa-bubble.from-agent time::after {
    margin-left: 0.2rem;
    color: #00a8e8;
    content: "✓✓";
    font-size: 0.68rem;
}

.wa-composer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    min-height: 3.65rem;
    padding: 0.58rem 0.9rem;
    background: #f0f2f5;
}

.wa-composer p {
    margin: 0;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    color: #9aa1a7;
    background: #fff;
    font-size: 0.84rem;
}

.wa-attach,
.wa-send {
    position: relative;
    display: inline-block;
    width: 1.45rem;
    height: 1.45rem;
    color: #667781;
}

.wa-attach::before {
    position: absolute;
    inset: 0.22rem 0.4rem 0.18rem;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 999px 999px;
    content: "";
    transform: rotate(38deg);
}

.wa-send::before {
    position: absolute;
    top: 0.16rem;
    left: 0.1rem;
    width: 0;
    height: 0;
    border-width: 0.56rem 0 0.56rem 1.1rem;
    border-style: solid;
    border-color: transparent transparent transparent currentColor;
    content: "";
}

.wa-contact-card header {
    justify-content: start;
    gap: 0.72rem;
}

.wa-contact-card header span {
    position: relative;
    width: 1.1rem;
    height: 1.1rem;
    color: #54656f;
}

.wa-contact-card header span::before,
.wa-contact-card header span::after {
    position: absolute;
    top: 0.5rem;
    left: 0.05rem;
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    content: "";
    background: currentColor;
}

.wa-contact-card header span::before {
    transform: rotate(45deg);
}

.wa-contact-card header span::after {
    transform: rotate(-45deg);
}

.wa-contact-card header strong {
    color: #111b21;
    font-size: 0.94rem;
}

.wa-contact-profile {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    border-bottom: 8px solid #f0f2f5;
    padding: 1.85rem 1rem 1.65rem;
    text-align: center;
}

.wa-contact-profile .wa-avatar {
    width: 8.1rem;
    height: 8.1rem;
    font-size: 2rem;
}

.wa-contact-profile strong {
    color: #111b21;
    font-size: 1.1rem;
}

.wa-contact-profile p {
    display: grid;
    gap: 0.18rem;
    margin: -0.25rem 0 0;
    color: #5d666d;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}

.wa-contact-profile p span {
    color: #008069;
    font-size: 0.64rem;
    letter-spacing: 0;
}

.wa-contact-card section {
    border-bottom: 8px solid #f0f2f5;
    padding: 1rem 1.1rem;
}

.wa-contact-card h3 {
    margin: 0;
    color: #008069;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
}

.wa-contact-card p {
    margin: 0.9rem 0 0;
    color: #5d666d;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.28;
}

.wa-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.8rem;
}

.wa-contact-tag {
    border-radius: 999px;
    padding: 0.36rem 0.58rem;
    color: #4b5563;
    background: #eef2f7;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.15;
}

.wa-notes-list {
    display: grid;
    gap: 0.52rem;
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
}

.wa-notes-list li {
    position: relative;
    padding-left: 0.78rem;
    color: #5d666d;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.32;
}

.wa-notes-list li::before {
    position: absolute;
    top: 0.48rem;
    left: 0;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 999px;
    content: "";
    background: #00a884;
}

.proof-strip {
    display: grid;
    grid-template-columns: minmax(220px, 0.62fr) 1fr;
    gap: 1.5rem;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    background: linear-gradient(155deg, rgba(60, 154, 182, 0.98), rgba(75, 175, 204, 0.96) 46%, rgba(15, 86, 140, 0.98)),
            var(--blue-900);
}

.proof-strip > p {
    align-self: center;
    margin: 0;
    color: var(--paper);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
}

.proof-strip > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.proof-strip article {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.72);
}

.proof-strip strong {
    display: block;
    color: var(--blue-800);
    font-family: var(--font-heading);
    font-size: 2.15rem;
    font-weight: 800;
    line-height: 1;
}

.proof-strip span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-weight: 750;
    line-height: 1.35;
}

.outcome-strip {
    position: relative;
    overflow: visible;
}

.outcome-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.outcome-item {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: start;
    min-height: 13rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.outcome-item::after {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 4.8rem;
    height: 4.8rem;
    content: "";
    background:
        repeating-linear-gradient(135deg, transparent 0 0.48rem, rgba(154, 220, 225, 0.13) 0.53rem 0.6rem);
    mask-image: linear-gradient(135deg, #000, transparent 72%);
    opacity: 0.62;
    pointer-events: none;
}

.outcome-icon-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 4.35rem;
    height: 4.35rem;
    border-radius: 999px;
    color: var(--blue-900);
    background:
        linear-gradient(180deg, rgba(232, 247, 249, 0.96), rgba(218, 239, 252, 0.9)),
        var(--blue-100);
    box-shadow: inset 0 0 0 1px rgba(15, 79, 131, 0.06);
}

.outcome-icon {
    width: 2.35rem;
    height: 2.35rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.outcome-item h3 {
    position: relative;
    z-index: 1;
    margin-top: 0.85rem;
    color: var(--blue-900);
    font-size: 1rem;
}

.outcome-item p {
    position: relative;
    z-index: 1;
    max-width: 13.5rem;
    margin: 0.38rem 0 0;
    color: var(--ink-2);
    font-size: 0.88rem;
    font-weight: 720;
    line-height: 1.42;
}

.section {
    padding: 5.8rem 0;
    scroll-margin-top: 7rem;
}

.section-surface {
    margin-inline: calc((100vw - min(var(--site-width), calc(100vw - var(--site-gutter)))) / -2);
    padding-inline: max(var(--site-gutter), calc((100vw - var(--site-width)) / 2 + var(--site-gutter) / 2));
}

.surface-paper {
    background: #fff;
}

.surface-ice {
    background:
        linear-gradient(180deg, rgba(214, 243, 252, 0.82), rgba(248, 251, 253, 0.94)),
        var(--blue-050);
}

.surface-contact {
    background:
        linear-gradient(135deg, rgba(15, 79, 131, 0.96), rgba(22, 105, 157, 0.92)),
        var(--blue-900);
}

.section-heading {
    display: grid;
    gap: 0.15rem;
    max-width: 880px;
    margin-bottom: 2.15rem;
}

.section-heading .eyebrow {
    margin-bottom: 0.65rem;
}

.section-intro {
    max-width: 760px;
    margin: -0.75rem 0 1.5rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.product-layout {
    display: grid;
    gap: 1.2rem;
}

.card-grid,
.feature-grid,
.benefits-grid,
.steps,
.category-grid,
.pricing-grid,
.channel-grid {
    display: grid;
    gap: 1rem;
}

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

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

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

.feature-grid {
    scroll-margin-top: 7rem;
}

.steps,
.category-grid,
.channel-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 1rem;
    align-items: stretch;
}

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

.steps article {
    display: grid;
    align-content: start;
}

.step-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.step-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 4.2rem;
    height: 4.2rem;
    border: 1px solid rgba(52, 163, 191, 0.18);
    border-radius: 24px;
    color: var(--blue-900);
    background:
        linear-gradient(180deg, rgba(232, 247, 249, 0.9), rgba(255, 255, 255, 0.95)),
        #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82), 0 14px 32px rgba(15, 79, 131, 0.08);
}

.workflow-icon {
    width: 2rem;
    height: 2rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.1;
}

.workflow-logo {
    display: block;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.info-card,
.feature-card,
.pricing-card,
.category-grid article,
.steps article,
.channel-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.45rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
}

.steps .step-number {
    display: inline-grid;
    place-items: center;
    min-width: 2.45rem;
    height: 2.45rem;
    border: 1px solid rgba(52, 163, 191, 0.26);
    border-radius: 999px;
    color: var(--blue-900);
    background: var(--blue-100);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 800;
}

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 6rem;
    height: 6rem;
    content: "";
    background:
        repeating-linear-gradient(135deg, transparent 0 0.5rem, rgba(154, 220, 225, 0.14) 0.55rem 0.62rem);
    mask-image: linear-gradient(135deg, #000, transparent 72%);
    opacity: 0.62;
    pointer-events: none;
}

.feature-icon {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 4.3rem;
    height: 4.3rem;
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(135deg, #0d568b 0%, var(--blue-500) 100%), var(--blue-800);
    box-shadow: 0 20px 44px rgba(22, 105, 157, 0.18);
}

.feature-icon .workflow-icon {
    width: 2.05rem;
    height: 2.05rem;
    stroke-width: 2.05;
}

.feature-card h3,
.steps h3,
.channel-card h3,
.info-card h3,
.pricing-card h3,
.category-grid h3 {
    margin-top: 1rem;
}

.info-card p,
.feature-card p,
.pricing-card p,
.category-grid p,
.steps p,
.channel-card p,
.note {
    color: var(--muted);
}

.solution-band,
.continuity-section,
.benefits-section,
.final-cta,
.continuity-card {
    display: grid;
    gap: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 3rem;
    background:
        linear-gradient(135deg, rgba(217, 239, 245, 0.92), rgba(255, 255, 255, 0.94)),
        #fff;
    box-shadow: var(--shadow-panel);
    scroll-margin-top: 7rem;
}

.solution-band,
.continuity-section {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.78fr);
    align-items: center;
}

.solution-band p:not(.eyebrow),
.continuity-section p,
.continuity-card p,
.final-cta p {
    max-width: 58rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.solution-band ul,
.continuity-section ul,
.continuity-card ul,
.roadmap-compact ul,
.pricing-card ul {
    display: grid;
    gap: 0.58rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.solution-band li,
.continuity-section li,
.continuity-card li,
.pricing-card li,
.roadmap-compact li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--ink-2);
}

.solution-band li::before,
.continuity-section li::before,
.continuity-card li::before,
.pricing-card li::before,
.roadmap-compact li::before {
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    content: "";
    background: var(--blue-500);
}

.continuity-card {
    align-content: start;
    border-radius: var(--radius-lg);
    padding: 1.55rem;
    background:
        linear-gradient(180deg, rgba(232, 247, 249, 0.9), rgba(255, 255, 255, 0.96)),
        #fff;
}

.continuity-card h3 {
    max-width: 16rem;
}

.continuity-card p {
    margin: -0.75rem 0 0;
}

.architecture-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
    margin-top: 2.1rem;
}

.architecture-heading {
    align-self: start;
}

.architecture-heading .eyebrow {
    margin-bottom: 0.55rem;
}

.architecture-heading h3 {
    max-width: 24rem;
    font-size: 1.6rem;
    line-height: 1.14;
}

.architecture-heading p:not(.eyebrow) {
    margin: 0.9rem 0 0;
    color: var(--muted);
}

.architecture-diagram {
    position: relative;
    display: grid;
    grid-template-columns: minmax(7.5rem, 0.78fr) minmax(5.4rem, 0.38fr) minmax(19rem, 1.55fr) minmax(4.8rem, 0.32fr) minmax(7.5rem, 0.78fr);
    grid-template-rows: auto minmax(10.5rem, auto) auto;
    gap: 1rem 0.75rem;
    align-items: center;
    overflow: hidden;
    min-height: 28rem;
}

.architecture-cloud {
    position: relative;
    grid-column: 3;
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    justify-self: center;
    color: #1c64f2;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
}

.architecture-cloud::after {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 50%;
    height: 2.1rem;
    border-left: 2px dashed rgba(28, 100, 242, 0.52);
    content: "";
}

.architecture-cloud span,
.architecture-api > span,
.node-icon,
.connector-customers i,
.core-modules i {
    display: grid;
    place-items: center;
}

.architecture-cloud .workflow-icon {
    width: 1.85rem;
    height: 1.85rem;
}

.architecture-node,
.architecture-core,
.architecture-api {
    position: relative;
    border: 1px solid rgba(15, 79, 131, 0.14);
    border-radius: 16px;
    background: #fff;
}

.architecture-node {
    display: grid;
    justify-items: center;
    gap: 0.6rem;
    min-height: 10.8rem;
    padding: 1rem;
    text-align: center;
}

.architecture-node strong,
.architecture-api strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.architecture-node p,
.architecture-api p,
.architecture-core p {
    margin: 0;
    color: var(--ink-2);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.38;
}

.node-customers {
    grid-column: 1;
    grid-row: 2;
    border-color: rgba(42, 157, 70, 0.22);
    background:
        linear-gradient(180deg, rgba(232, 248, 235, 0.92), rgba(255, 255, 255, 0.96)),
        #fff;
}

.node-agents {
    grid-column: 5;
    grid-row: 2;
    border-color: rgba(114, 67, 189, 0.24);
    background:
        linear-gradient(180deg, rgba(243, 237, 255, 0.92), rgba(255, 255, 255, 0.96)),
        #fff;
}

.node-icon {
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 999px;
}

.node-customers .node-icon {
    color: #21883d;
    background: rgba(42, 157, 70, 0.12);
}

.node-agents .node-icon {
    color: #6d36c7;
    background: rgba(114, 67, 189, 0.12);
}

.connector-customers,
.connector-agents {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    color: var(--ink);
}

.connector-customers {
    grid-column: 2;
    grid-row: 2;
    gap: 0.42rem;
}

.connector-agents {
    grid-column: 4;
    grid-row: 2;
}

.connector-customers span,
.connector-agents span {
    position: relative;
    flex: 1;
    min-width: 1.35rem;
    height: 2px;
    background: rgba(11, 18, 32, 0.72);
}

.connector-customers span:first-child::before,
.connector-agents span::before {
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
}

.connector-customers span:last-child::after,
.connector-agents span::after {
    right: 0;
    transform: translateY(-50%) rotate(45deg);
}

.connector-customers i {
    flex: 0 0 auto;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 999px;
    color: #21a744;
    background: #fff;
    box-shadow: 0 12px 26px rgba(33, 167, 68, 0.14);
}

.connector-customers .workflow-logo {
    width: 2.35rem;
    height: 2.35rem;
}

.architecture-core {
    grid-column: 3;
    grid-row: 2;
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    min-height: 11.8rem;
    padding: 1.25rem;
    text-align: center;
    border-color: rgba(60, 154, 182, 0.46);
    background:
        linear-gradient(135deg, rgba(232, 251, 255, 0.86), rgba(255, 255, 255, 0.96)),
        #fff;
    box-shadow: 0 20px 54px rgba(60, 154, 182, 0.1);
}

.core-brand {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.core-brand img {
    width: 2.8rem;
    height: 2.8rem;
}

.core-brand strong {
    color: var(--blue-900);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
}

.architecture-core > p {
    max-width: 18rem;
}

.core-modules {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
}

.core-modules span {
    display: grid;
    gap: 0.38rem;
    justify-items: center;
    min-width: 0;
    border: 1px solid rgba(15, 79, 131, 0.1);
    border-radius: 12px;
    padding: 0.58rem 0.35rem;
    color: var(--ink-2);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.68rem;
    font-weight: 400;
    line-height: 1.15;
}

.core-modules i {
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 8px;
    color: #3c9ab6;
    background: rgba(28, 100, 242, 0.09);
}

.core-modules .workflow-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2.3;
}

.architecture-api {
    grid-column: 3;
    grid-row: 3;
    display: flex;
    gap: 0.85rem;
    align-items: center;
    justify-self: center;
    width: min(100%, 25rem);
    padding: 0.95rem 1.1rem;
    border-color: rgba(213, 154, 30, 0.35);
    background:
        linear-gradient(180deg, rgba(255, 248, 232, 0.96), rgba(255, 255, 255, 0.96)),
        #fff;
}

.architecture-api::before {
    position: absolute;
    bottom: calc(100% + 0.28rem);
    left: 50%;
    height: 2.7rem;
    border-left: 2px dashed rgba(11, 18, 32, 0.48);
    content: "";
}

.architecture-api::after {
    position: absolute;
    top: -2.05rem;
    left: calc(50% - 0.27rem);
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid var(--ink);
    border-right: 2px solid var(--ink);
    content: "";
    transform: rotate(-45deg);
}

.architecture-api > span {
    flex: 0 0 auto;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 999px;
    color: #b87a0d;
    background: rgba(213, 154, 30, 0.13);
}

.benefits-section {
    margin: 0 0 1.5rem;
}

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

.benefits-grid div {
    border: 1px solid rgba(15, 79, 131, 0.12);
    border-radius: 18px;
    padding: 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.channel-card span {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.28rem 0.65rem;
    color: var(--blue-900);
    background: var(--blue-100);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
}

.channel-strip {
    display: grid;
    grid-template-columns: minmax(260px, 0.38fr) 1fr;
    gap: 1rem;
    align-items: center;
    margin-top: 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.channel-strip .eyebrow {
    margin-bottom: 0.4rem;
}

.channel-strip > div:last-child {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.channel-strip article {
    display: grid;
    align-content: start;
    gap: 0.72rem;
    border: 1px solid rgba(15, 79, 131, 0.12);
    border-radius: 18px;
    padding: 0.9rem;
    background: #fff;
}

.channel-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: space-between;
}

.channel-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 14px;
    color: var(--blue-900);
    background:
        linear-gradient(180deg, rgba(232, 247, 249, 0.94), rgba(255, 255, 255, 0.96)),
        #fff;
    box-shadow: inset 0 0 0 1px rgba(52, 163, 191, 0.18), 0 10px 24px rgba(15, 79, 131, 0.08);
}

.channel-icon .workflow-icon {
    width: 1.55rem;
    height: 1.55rem;
    stroke-width: 2.05;
}

.channel-icon .workflow-logo {
    width: 2.55rem;
    height: 2.55rem;
}

.channel-strip article:first-child .channel-icon {
    border-radius: 999px;
    background: transparent;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.18);
}

.channel-strip article:nth-child(2) .channel-icon {
    color: #1c64f2;
    background: rgba(232, 241, 255, 0.92);
}

.channel-strip article:nth-child(3) .channel-icon {
    color: #0f4f83;
    background: rgba(232, 247, 249, 0.96);
}

.channel-strip article:nth-child(4) .channel-icon {
    color: #6d36c7;
    background: rgba(243, 237, 255, 0.92);
}

.channel-strip .channel-status,
.cost-tags span {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 0.24rem 0.6rem;
    color: var(--blue-900);
    background: var(--blue-100);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
}

.channel-strip strong {
    display: block;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 0.96rem;
}

.pricing-transparency {
    padding-bottom: 4.8rem;
}

.note {
    max-width: 100%;
    margin: 1.35rem 0 0;
    font-size: 0.94rem;
}

.roadmap-disclosure {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
}

.roadmap-disclosure summary {
    display: grid;
    grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.32fr) minmax(0, 1fr) auto;
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 1.15rem 1.4rem;
    cursor: pointer;
    list-style: none;
}

.roadmap-disclosure summary::-webkit-details-marker {
    display: none;
}

.roadmap-disclosure summary::after {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 2rem;
    height: 3rem;
    border-radius: 999px;
    content: "+";
    color: var(--blue-900);
    background: var(--blue-100);
    font-family: var(--font-heading);
    font-weight: 900;
}

.roadmap-disclosure[open] summary::after {
    content: "-";
}

.roadmap-disclosure summary span {
    color: var(--blue-800);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roadmap-disclosure summary strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.02rem;
}

.roadmap-disclosure summary small {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
}

.roadmap-compact {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
    border-top: 1px solid var(--line);
    padding: 1.1rem;
}

.roadmap-compact article {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    border: 1px solid rgba(15, 79, 131, 0.12);
    border-radius: 18px;
    padding: 1rem;
    background: #fff;
}

.roadmap-compact article > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    align-items: center;
}

.roadmap-compact span,
.roadmap-compact article em {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 0.24rem 0.58rem;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 850;
}

.roadmap-compact span {
    color: var(--blue-900);
    background: var(--blue-100);
}

.roadmap-compact article em {
    color: var(--muted);
    background: rgba(232, 247, 249, 0.72);
}

.roadmap-compact h3 {
    font-size: 1rem;
}

.roadmap-compact li {
    color: var(--ink-2);
    font-size: 0.88rem;
    line-height: 1.38;
}

.roadmap-compact li::before {
    background: var(--blue-700);
}

.light-card {
    background: linear-gradient(180deg, #fff, rgba(244, 251, 252, 0.9));
}

.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-section .section-heading {
    position: relative;
    z-index: 1;
    justify-items: center;
    margin-inline: auto;
    text-align: center;
}

.pricing-grid {
    position: relative;
    z-index: 1;
    gap: 0.9rem;
    align-items: stretch;
    margin-top: 2.9rem;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-color: rgba(15, 79, 131, 0.14);
    padding: 2rem;
    text-align: center;
    background:
        linear-gradient(180deg, #fff, rgba(244, 251, 252, 0.88)),
        #fff;
}

.pricing-card.featured {
    border-color: rgba(60, 154, 182, 0.36);
    color: #fff;
    background:
        linear-gradient(155deg, rgba(60, 154, 182, 0.98), rgba(75, 175, 204, 0.96) 46%, rgba(15, 86, 140, 0.98)),
        var(--blue-900);
    box-shadow: 0 34px 86px rgba(60, 154, 182, 0.28);
    transform: translateY(-1.1rem);
}

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

.plan-badge {
    align-self: center;
    width: fit-content;
    margin: -0.55rem 0 0.85rem;
    border: 1px solid rgba(154, 220, 225, 0.46);
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    color: var(--blue-900);
    background: var(--blue-100);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured .pricing-price strong,
.pricing-card.featured .pricing-price span {
    color: #fff;
}

.pricing-price {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
    justify-content: center;
    align-items: baseline;
    min-height: 5.6rem;
    margin-top: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(15, 79, 131, 0.14);
}

.pricing-card.featured .pricing-price {
    border-bottom-color: rgba(255, 255, 255, 0.24);
}

.pricing-price strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(2.55rem, 4.2vw, 4.45rem);
    font-weight: 800;
    line-height: 0.95;
}

.pricing-price span {
    color: var(--muted);
    font-weight: 800;
}

.pricing-price.is-text-price strong {
    max-width: 12ch;
    font-size: clamp(1.75rem, 2.6vw, 2.65rem);
    line-height: 1.08;
}

.pricing-card > p {
    min-height: 4.9rem;
    margin: 1.25rem 0 0;
    font-weight: 700;
}

.pricing-card ul {
    margin-top: 1rem;
    margin-bottom: 1.65rem;
    text-align: left;
}

.pricing-card li {
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    gap: 0.58rem;
    align-items: start;
    padding-left: 0;
    color: var(--ink-2);
    font-weight: 760;
}

.pricing-card li + li {
    border-top: 1px solid rgba(15, 79, 131, 0.12);
    padding-top: 0.58rem;
}

.pricing-card li::before {
    position: relative;
    top: 0.34rem;
    left: 0;
    width: 0.52rem;
    height: 0.28rem;
    border: 0;
    border-bottom: 2px solid var(--blue-800);
    border-left: 2px solid var(--blue-800);
    border-radius: 0;
    content: "";
    background: transparent;
    transform: rotate(-45deg);
}

.pricing-card.featured li + li {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .plan-badge {
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.pricing-card.featured li::before {
    border-color: var(--blue-300);
}

.pricing-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 3.15rem;
    margin-top: auto;
    border-radius: 999px;
    padding: 0.78rem 1rem;
    color: #fff;
    background: var(--blue-900);
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.pricing-card.featured .pricing-action {
    color: var(--blue-900);
    background: #fff;
}

.pricing-action:hover {
    background: var(--blue-800);
}

.pricing-card.featured .pricing-action:hover {
    color: var(--blue-800);
    background: var(--blue-100);
}

.cost-note {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
    gap: 1.2rem;
    align-items: center;
    margin-top: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-soft);
}

.cost-note .eyebrow {
    margin-bottom: 0.4rem;
}

.cost-note p {
    margin: 0.65rem 0 0;
    color: var(--muted);
}

.cost-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: end;
}

.final-cta {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    margin: 0 calc((100vw - min(var(--site-width), calc(100vw - var(--site-gutter)))) / -2);
    border: 0;
    border-radius: 0;
    padding: 6.2rem max(calc(var(--site-gutter) / 2), calc((100vw - var(--site-width)) / 2));
    text-align: left;
    background:
        linear-gradient(155deg, rgba(60, 154, 182, 0.98), rgba(75, 175, 204, 0.96) 46%, rgba(15, 86, 140, 0.98)),
            var(--blue-900);
    box-shadow: none;
}

.contact-content {
    display: grid;
    gap: 0.85rem;
    max-width: 880px;
}

.final-cta h2 {
    max-width: 880px;
    color: #fff;
}

.final-cta .eyebrow,
.final-cta p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-form-panel {
    display: grid;
    gap: 1.25rem;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 70px rgba(11, 18, 32, 0.22);
}

.contact-form-heading {
    display: grid;
    gap: 0.35rem;
}

.contact-form-heading h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.25rem;
}

.contact-form-heading p,
.contact-form-actions p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-form-actions p {
    font-size: 0.7rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

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

.form-field {
    display: grid;
    gap: 0.4rem;
    color: var(--ink-2);
    font-size: 0.92rem;
    font-weight: 500;
}

.form-field span {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: baseline;
}

.form-field b {
    color: var(--soft);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(15, 79, 131, 0.18);
    border-radius: 14px;
    padding: 0.78rem 0.9rem;
    color: var(--ink);
    background: #fff;
    box-shadow: inset 0 1px 0 rgba(11, 18, 32, 0.03);
}

.form-field textarea {
    min-height: 8.5rem;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(52, 163, 191, 0.66);
    outline: none;
    box-shadow: 0 0 0 4px rgba(52, 163, 191, 0.12);
}

.form-field.has-error input,
.form-field.has-error textarea {
    border-color: rgba(190, 18, 60, 0.68);
}

.field-error {
    color: #be123c;
    font-size: 0.8rem;
    font-weight: 800;
}

.form-alert {
    margin: 0;
    border-radius: 16px;
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
    font-weight: 800;
}

.form-alert-success {
    border: 1px solid rgba(20, 184, 166, 0.28);
    color: #0f766e;
    background: rgba(204, 251, 241, 0.72);
}

.form-alert-error {
    border: 1px solid rgba(244, 63, 94, 0.26);
    color: #be123c;
    background: rgba(255, 241, 242, 0.88);
}

.contact-honeypot {
    position: absolute;
    left: -100vw;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.turnstile-field {
    min-height: 65px;
}

.contact-form-actions {
    display: grid;
    gap: 0.85rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.contact-form-actions p span {
    display: block;
    margin-top: 0.1rem;
}

.final-cta .button-primary {
    color: var(--blue-900);
    background: #fff;
}

.contact-form .button-primary {
    justify-self: center;
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    cursor: pointer;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.4rem 2rem;
    align-items: start;
    border-top: 1px solid var(--line);
    padding: 2.2rem 0 2.6rem;
    color: var(--muted);
}

.site-footer p {
    max-width: 680px;
    margin: 0.8rem 0 0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: end;
}

.site-footer a {
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--blue-800);
}

.site-footer small {
    grid-column: 1 / -1;
    color: var(--soft);
}

@media (prefers-reduced-motion: no-preference) {
    .button,
    .site-nav a,
    .info-card,
    .feature-card,
    .outcome-item,
    .pricing-card,
    .wa-chat-row,
    .channel-card,
    .steps article,
    .architecture-node,
    .architecture-core,
    .architecture-api {
        transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }

    .info-card:hover,
    .feature-card:hover,
    .outcome-item:hover,
    .pricing-card:hover,
    .channel-card:hover,
    .steps article:hover,
    .architecture-node:hover,
    .architecture-core:hover,
    .architecture-api:hover {
        transform: translateY(-3px);
        border-color: var(--line-strong);
        box-shadow: 0 24px 62px rgba(15, 79, 131, 0.12);
    }

    .pricing-card.featured:hover {
        transform: translateY(calc(-1.1rem - 3px));
        box-shadow: 0 38px 92px rgba(15, 79, 131, 0.3);
    }

    .flow-message {
        animation: flow-message-drift var(--flow-duration, 12s) ease-in-out var(--flow-delay, 0s) infinite alternate;
    }

    .flow-message-one {
        --flow-duration: 11s;
        --flow-delay: -2s;
        --flow-x: 2.2rem;
        --flow-y: 1.3rem;
    }

    .flow-message-two {
        --flow-duration: 13s;
        --flow-delay: -5s;
        --flow-x: -2.6rem;
        --flow-y: 1.2rem;
    }

    .flow-message-three {
        --flow-duration: 14s;
        --flow-delay: -3s;
        --flow-x: 3.2rem;
        --flow-y: -1rem;
    }

    .flow-message-four {
        --flow-duration: 10s;
        --flow-delay: -6s;
        --flow-x: -1.8rem;
        --flow-y: -1.4rem;
    }

    .flow-status,
    .flow-packet,
    .flow-lane::after {
        animation: flow-signal-pulse 3.8s ease-in-out infinite;
    }

    .flow-status-two,
    .flow-packet-two {
        animation-delay: -1.4s;
    }

    .flow-packet-three,
    .flow-lane-two::after {
        animation-delay: -2.3s;
    }

    @keyframes flow-message-drift {
        0% {
            opacity: 0.28;
            transform: translate3d(0, 0, 0) scale(0.98);
        }

        45% {
            opacity: 0.68;
        }

        100% {
            opacity: 0.42;
            transform: translate3d(var(--flow-x), var(--flow-y), 0) scale(1);
        }
    }

    @keyframes flow-signal-pulse {
        0%,
        100% {
            opacity: 0.25;
            transform: scale(0.92);
        }

        50% {
            opacity: 0.82;
            transform: scale(1);
        }
    }
}

@media (max-width: 1180px) {
    :root {
        --site-gutter: 2rem;
    }

    h1 {
        font-size: 5rem;
    }

    h2 {
        font-size: 2.65rem;
    }

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

    .menu-toggle {
        display: inline-flex;
        gap: 0.55rem;
        align-items: center;
        justify-self: start;
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 0.58rem 0.78rem;
        color: var(--ink);
        background: #f7fbfc;
        font-family: var(--font-heading);
        font-weight: 800;
        cursor: pointer;
    }

    .menu-toggle i,
    .menu-toggle i::before,
    .menu-toggle i::after {
        display: block;
        width: 1rem;
        height: 2px;
        border-radius: 99px;
        background: currentColor;
    }

    .menu-toggle i {
        position: relative;
    }

    .menu-toggle i::before,
    .menu-toggle i::after {
        position: absolute;
        left: 0;
        content: "";
    }

    .menu-toggle i::before {
        top: -5px;
    }

    .menu-toggle i::after {
        top: 5px;
    }

    .site-nav {
        position: absolute;
        top: calc(100% - 0.3rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: 24px;
        padding: 0.75rem;
        background: #fff;
        box-shadow: 0 24px 60px rgba(15, 79, 131, 0.15);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.82rem 0.95rem;
    }

    .feature-grid,
    .category-grid,
    .channel-grid,
    .channel-strip > div:last-child {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps,
    .benefits-grid,
    .workflow-layout .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-layout,
    .architecture-card,
    .channel-strip,
    .cost-note {
        grid-template-columns: 1fr;
    }

    .architecture-heading h3 {
        max-width: 38rem;
    }

    .cost-tags {
        justify-content: start;
    }

    .hero-flow {
        height: 55rem;
    }

    .flow-message-one,
    .flow-message-two,
    .flow-message-three {
        width: 9.2rem;
    }

    .flow-message-four {
        display: none;
    }

    .dashboard {
        grid-template-columns: minmax(260px, 0.42fr) minmax(360px, 0.58fr);
    }

    .wa-contact-card {
        display: none;
    }

    .wa-thread {
        border-right: 0;
    }
}

@media (max-width: 820px) {
    :root {
        --site-gutter: 1rem;
    }

    .site-header {
        top: 0.65rem;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 0.8rem;
        align-items: center;
        border-radius: 28px;
        padding: 0.7rem;
    }

    .brand {
        min-width: 0;
    }

    .menu-toggle {
        grid-column: 3;
        justify-self: end;
        gap: 0;
        width: 2.75rem;
        height: 2.75rem;
        justify-content: center;
        padding: 0;
    }

    .menu-toggle span {
        display: none;
    }

    .header-actions {
        grid-column: 2;
        grid-row: 1;
        justify-content: end;
    }

    .header-cta {
        display: none;
    }

    .site-nav .nav-cta {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-top: 0.25rem;
        padding: 0.9rem 1rem;
        color: #fff;
        background: var(--blue-900);
        box-shadow: 0 14px 34px rgba(15, 79, 131, 0.14);
    }

    .site-nav .nav-cta:hover {
        color: #fff;
        background: var(--blue-800);
    }

    .hero-section {
        justify-items: stretch;
        gap: 2rem;
        padding: 3.6rem 0 2.2rem;
        text-align: left;
    }

    .hero-flow {
        top: 8.5rem;
        height: 42rem;
        opacity: 0.58;
    }

    .hero-flow::before {
        inset: 8% 0;
        background-size: 3.8rem 3.8rem;
    }

    .flow-lane-one {
        top: 34%;
        left: -4%;
        width: 64%;
    }

    .flow-lane-two {
        top: 66%;
        right: -8%;
        width: 62%;
    }

    .flow-lane-three,
    .flow-message-one,
    .flow-message-two,
    .flow-message-three,
    .flow-status-one,
    .flow-status-two,
    .flow-packet-one,
    .flow-packet-two {
        display: none;
    }

    .flow-message-four {
        right: 4%;
        bottom: 8%;
        display: block;
        width: 7.6rem;
    }

    .hero-copy {
        justify-items: start;
    }

    h1 {
        max-width: 10.5ch;
        font-size: 3.35rem;
        line-height: 1;
    }

    h2 {
        font-size: 2.15rem;
        line-height: 1.08;
    }

    .hero-copy > p:not(.badge) {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .hero-copy > p.hero-pronunciation {
        font-size: 0.92rem;
        line-height: 1.45;
    }

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

    .dashboard {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 18px;
    }

    .outcome-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        overflow-x: visible;
        padding-bottom: 0;
    }

    .outcome-item {
        min-height: 12.2rem;
    }

    .solution-band,
    .continuity-section {
        grid-template-columns: 1fr;
    }

    .wa-sidebar {
        max-height: 20rem;
        overflow: hidden;
    }

    .wa-thread {
        min-height: 29rem;
        border-top: 1px solid #d8dbdf;
        border-inline: 0;
    }

    .wa-contact-card {
        display: none;
    }

    .wa-message-area {
        padding: 1rem 0.75rem;
    }

    .wa-bubble {
        max-width: 92%;
    }

    .proof-strip,
    .proof-strip > div,
    .card-grid,
    .feature-grid,
    .benefits-grid,
    .steps,
    .workflow-layout .steps,
    .category-grid,
    .pricing-grid,
    .channel-grid,
    .channel-strip > div:last-child,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4.2rem 0;
    }

    .section-surface {
        margin-inline: calc(var(--site-gutter) * -1);
        padding-inline: var(--site-gutter);
    }

    .pricing-section::before {
        inset: 2rem var(--site-gutter) auto;
        height: 22rem;
    }

    .pricing-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .pricing-card,
    .pricing-card:hover,
    .pricing-card.featured,
    .pricing-card.featured:hover {
        transform: none;
    }

    .pricing-card > p {
        min-height: auto;
    }

    .solution-band,
    .continuity-section,
    .benefits-section,
    .final-cta,
    .continuity-card,
    .architecture-card,
    .channel-strip,
    .cost-note {
        border-radius: 28px;
        padding: 1.45rem;
    }

    .step-icon {
        width: 3.8rem;
        height: 3.8rem;
        border-radius: 20px;
    }

    .architecture-diagram {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 0.95rem;
        min-height: 0;
        padding: 1.1rem;
    }

    .architecture-cloud,
    .node-customers,
    .connector-customers,
    .architecture-core,
    .connector-agents,
    .node-agents,
    .architecture-api {
        grid-column: 1;
        grid-row: auto;
    }

    .architecture-cloud {
        justify-self: start;
        margin-left: 0.2rem;
    }

    .architecture-cloud::after,
    .architecture-api::before,
    .architecture-api::after {
        display: none;
    }

    .architecture-node {
        min-height: auto;
    }

    .connector-customers,
    .connector-agents {
        min-height: 2.4rem;
    }

    .connector-customers {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        justify-items: stretch;
    }

    .connector-customers span,
    .connector-agents span {
        align-self: center;
    }

    .architecture-core {
        min-height: auto;
    }

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

    .core-modules span:last-child {
        grid-column: 1 / -1;
    }

    .architecture-api {
        justify-self: stretch;
        width: 100%;
    }

    .final-cta {
        grid-template-columns: 1fr;
        margin-inline: calc(var(--site-gutter) / -2);
        padding: 4.5rem calc(var(--site-gutter) / 2);
    }

    .contact-form-panel {
        padding: 1rem;
    }

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

    .roadmap-disclosure summary,
    .roadmap-compact {
        grid-template-columns: 1fr;
    }

    .roadmap-disclosure summary::after {
        grid-row: 1;
        grid-column: 1;
        justify-self: end;
    }

    .site-footer nav {
        justify-content: start;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 3rem;
    }

    .brand-icon {
        width: 2.55rem;
        height: 2.55rem;
    }

    .language-switcher a {
        min-width: 1.85rem;
    }

    .header-cta,
    .button {
        min-height: 3rem;
    }
}
