:root {
    --navy-950: #04151c;
    --navy-900: #061d26;
    --navy-850: #082832;
    --navy-800: #0b3440;
    --ink: #10272d;
    --ink-soft: #405b61;
    --muted: #647a7f;
    --paper: #f4f8f7;
    --paper-cool: #edf5f4;
    --white: #ffffff;
    --teal: #11a995;
    --teal-bright: #2ed3bd;
    --teal-dark: #087b70;
    --teal-soft: #d9f4ef;
    --cyan: #72dbdf;
    --gold: #f0bd5e;
    --gold-soft: #fff3d8;
    --line: #d8e4e2;
    --line-dark: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 12px 32px rgba(7, 34, 42, 0.08);
    --shadow-md: 0 24px 70px rgba(7, 34, 42, 0.13);
    --shadow-dark: 0 28px 90px rgba(0, 9, 13, 0.34);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Noto Sans Thai", "Leelawadee UI", "Thonburi", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    color: var(--navy-950);
    background: var(--cyan);
}

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

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

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

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

svg {
    stroke-width: 1.8;
}

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

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--white);
    background: var(--teal-dark);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

.site-header {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(1240px, calc(100% - 32px));
    min-height: 70px;
    margin: 0 auto;
    padding: 10px 12px 10px 22px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(4, 21, 28, 0.68);
    box-shadow: 0 16px 54px rgba(0, 8, 12, 0.2);
    backdrop-filter: blur(18px) saturate(125%);
    transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, top 180ms ease;
}

.site-header.is-scrolled {
    top: 8px;
    min-height: 64px;
    background: rgba(4, 21, 28, 0.92);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 42px rgba(0, 8, 12, 0.3);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
}

.brand__logo {
    width: 168px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 23px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.site-nav > a {
    position: relative;
    padding: 11px 0;
    font-weight: 720;
    white-space: nowrap;
}

.site-nav > a:not(.nav-contact)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    background: var(--teal-bright);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
    color: var(--white);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-contact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 13px !important;
    color: var(--navy-950);
    border-radius: 8px;
    background: var(--gold);
}

.nav-contact:hover,
.nav-contact:focus-visible {
    color: var(--navy-950) !important;
    background: #f7cb79;
}

.nav-contact svg {
    width: 15px;
    height: 15px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    min-height: 30px;
    padding: 5px 7px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
}

.language-switcher a.is-active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
}

.icon-button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.icon-button svg,
.button svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.icon-button {
    width: 46px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
    display: none;
}

.button {
    padding: 13px 19px;
    font-size: 14px;
    font-weight: 780;
}

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

.button--primary {
    color: var(--navy-950);
    background: var(--gold);
    box-shadow: 0 15px 36px rgba(240, 189, 94, 0.22);
}

.button--primary:hover {
    background: #f8ca73;
    box-shadow: 0 18px 42px rgba(240, 189, 94, 0.3);
}

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

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

.button--dark {
    width: 100%;
    color: var(--white);
    background: linear-gradient(135deg, var(--teal-dark), #0a9687);
    box-shadow: 0 16px 34px rgba(8, 123, 112, 0.2);
}

.button--dark:hover {
    background: linear-gradient(135deg, #087267, #0aad9a);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 920px;
    height: 100svh;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.hero__image,
.hero__overlay,
.hero__grid {
    position: absolute;
    inset: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: hero-scale 16s ease-out both;
}

@keyframes hero-scale {
    from { transform: scale(1.035); }
    to { transform: scale(1); }
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(3, 18, 24, 0.97) 0%, rgba(3, 18, 24, 0.9) 31%, rgba(3, 18, 24, 0.38) 58%, rgba(3, 18, 24, 0.12) 100%),
        linear-gradient(180deg, rgba(2, 15, 20, 0.16) 55%, rgba(2, 15, 20, 0.82) 100%);
}

.hero__grid {
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(97, 212, 209, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(97, 212, 209, 0.12) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 150px 0 94px;
}

.hero__copy {
    max-width: 690px;
}

.hero__note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 28px;
    padding: 7px 11px;
    color: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 10px;
    font-weight: 820;
    letter-spacing: 0.15em;
}

.hero__note span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-bright);
    box-shadow: 0 0 0 5px rgba(46, 211, 189, 0.12);
}

.eyebrow {
    margin: 0 0 15px;
    color: var(--teal-dark);
    font-size: 11px;
    font-weight: 880;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--gold);
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 750;
    line-height: 1.06;
    letter-spacing: -0.035em;
}

.hero__lead {
    max-width: 650px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
}

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

.hero__proofs,
.contact-promises {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 22px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.hero__proofs li,
.contact-promises li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 650;
}

.hero__proofs svg,
.contact-promises svg {
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    color: var(--teal-bright);
}

.hero__scroll {
    position: absolute;
    right: 38px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero__scroll svg {
    width: 17px;
    height: 17px;
    animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.stats-band {
    position: relative;
    z-index: 3;
    color: var(--ink);
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-item {
    position: relative;
    min-height: 156px;
    padding: 30px 30px 27px;
    border-left: 1px solid var(--line);
}

.stat-item:last-child {
    border-right: 1px solid var(--line);
}

.stat-item__index {
    display: block;
    margin-bottom: 15px;
    color: #96aaa7;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.stat-item strong {
    display: block;
    color: var(--teal-dark);
    font-size: 29px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.stat-item p {
    max-width: 240px;
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.trust-band {
    color: rgba(255, 255, 255, 0.74);
    background: var(--navy-950);
}

.trust-band__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(560px, 1fr);
    gap: 44px;
    align-items: center;
    min-height: 90px;
    padding-top: 22px;
    padding-bottom: 22px;
}

.trust-band__inner > p {
    margin: 0;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.trust-list {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.trust-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.trust-list svg {
    width: 14px;
    height: 14px;
    color: var(--teal-bright);
}

.section {
    position: relative;
    padding: 112px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 50px;
}

.section-heading h2,
.showcase-copy h2,
.why-copy h2,
.contact-copy h2,
.site-footer h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 730;
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.section-heading > p,
.section-heading > div + p,
.showcase-copy > p:not(.eyebrow),
.why-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow):not(.contact-badge) {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

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

.section-heading--dark > p,
.section-heading--dark > div + p {
    color: rgba(255, 255, 255, 0.58);
}

.section-heading--center {
    align-items: center;
}

.section--services {
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 12%, rgba(17, 169, 149, 0.08), transparent 28%),
        var(--paper);
}

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

.service-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-sm);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -80px;
    width: 150px;
    height: 150px;
    border: 35px solid rgba(17, 169, 149, 0.06);
    border-radius: 50%;
    transition: transform 240ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(17, 169, 149, 0.36);
    box-shadow: var(--shadow-md);
}

.service-card:hover::after {
    transform: scale(1.14);
}

.service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 44px;
}

.service-card__number {
    color: #9aadaa;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.12em;
}

.service-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--teal-dark);
    border-radius: 12px;
    background: var(--teal-soft);
}

.service-card__icon svg {
    width: 22px;
    height: 22px;
}

.service-card h3,
.case-card h3,
.process-item h3,
.insight-card h3,
.audience-card h3,
.why-list h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.service-card > p {
    min-height: 104px;
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.service-card ul {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.service-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #385158;
    font-size: 12px;
    font-weight: 650;
}

.service-card li svg {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-top: 3px;
    color: var(--teal);
}

.section--showcase {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 25%, rgba(23, 181, 165, 0.18), transparent 30%),
        linear-gradient(135deg, #061922, #082a34 68%, #063d43);
}

.section--showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(114, 219, 223, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(114, 219, 223, 0.12) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, #000, transparent 70%);
}

.showcase-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 0.7fr) minmax(620px, 1.3fr);
    gap: 62px;
    align-items: center;
}

.showcase-copy .eyebrow {
    color: var(--gold);
}

.showcase-copy > p:not(.eyebrow) {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.64);
}

.showcase-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 32px 0 30px;
    border-top: 1px solid var(--line-dark);
}

.showcase-points > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 5px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line-dark);
}

.showcase-points > div:nth-child(odd) {
    margin-right: 18px;
}

.showcase-points > div:nth-child(even) {
    padding-left: 18px;
    border-left: 1px solid var(--line-dark);
}

.showcase-points span {
    color: var(--teal-bright);
    font-size: 10px;
    font-weight: 850;
}

.showcase-points p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 680;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 800;
}

.showcase-copy .text-link {
    color: var(--white);
}

.text-link svg {
    width: 16px;
    height: 16px;
    transition: transform 160ms ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.analytics-window {
    overflow: hidden;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    background: #f6faf9;
    box-shadow: var(--shadow-dark);
    transform: perspective(1200px) rotateY(-1.5deg);
}

.analytics-window__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 43px;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy-950);
    font-size: 9px;
    font-weight: 730;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.window-dots i:first-child {
    background: #e37664;
}

.window-dots i:nth-child(2) {
    background: var(--gold);
}

.window-dots i:last-child {
    background: var(--teal-bright);
}

.live-pill {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 6px;
}

.live-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-bright);
}

.analytics-window__body {
    padding: 23px;
}

.dashboard-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.dashboard-heading small {
    display: block;
    margin-bottom: 2px;
    color: var(--teal-dark);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dashboard-heading h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
}

.dashboard-heading button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 6px 9px;
    color: var(--ink-soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    font-size: 9px;
}

.dashboard-heading button svg {
    width: 12px;
    height: 12px;
}

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

.dashboard-kpis article {
    padding: 13px 14px;
    border: 1px solid #dfe9e7;
    border-radius: 10px;
    background: var(--white);
}

.dashboard-kpis span {
    display: block;
    color: var(--muted);
    font-size: 8px;
}

.dashboard-kpis strong {
    display: block;
    margin-top: 4px;
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.dashboard-kpis small {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 5px;
    color: var(--teal-dark);
    font-size: 8px;
    font-weight: 750;
}

.dashboard-kpis svg {
    width: 10px;
    height: 10px;
}

.dashboard-main {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(150px, 0.62fr);
    gap: 9px;
    margin-top: 9px;
}

.chart-card {
    padding: 13px;
    border: 1px solid #dfe9e7;
    border-radius: 10px;
    background: var(--white);
}

.chart-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.chart-card__head strong {
    font-size: 9px;
}

.chart-card__head > span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--muted);
    font-size: 6px;
}

.chart-card__head > span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
}

.chart-card__head > span i:nth-child(2) {
    margin-left: 4px;
    background: var(--gold);
}

.trend-chart {
    width: 100%;
    height: auto;
    margin-top: 7px;
    overflow: visible;
}

.chart-grid-lines line {
    stroke: #e8efee;
    stroke-width: 1;
}

.chart-area {
    fill: url(#chartArea);
}

.chart-line {
    fill: none;
    stroke: var(--teal);
    stroke-linecap: round;
    stroke-width: 4;
}

.chart-line--forecast {
    stroke: var(--gold);
    stroke-dasharray: 7 6;
}

.chart-points circle {
    fill: var(--white);
    stroke: var(--teal);
    stroke-width: 3;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: -5px;
    color: #9eafad;
    font-size: 6px;
}

.chart-card--mix {
    display: flex;
    flex-direction: column;
}

.donut-chart {
    position: relative;
    display: grid;
    place-items: center;
    width: 100px;
    height: 100px;
    margin: 20px auto 14px;
    border-radius: 50%;
    background: conic-gradient(var(--teal) 0 68%, var(--gold) 68% 89%, #b5d9d5 89%);
}

.donut-chart::after {
    content: "";
    position: absolute;
    inset: 17px;
    border-radius: 50%;
    background: var(--white);
}

.donut-chart > span {
    position: relative;
    z-index: 1;
    text-align: center;
}

.donut-chart strong,
.donut-chart small {
    display: block;
}

.donut-chart strong {
    font-size: 16px;
}

.donut-chart small {
    color: var(--muted);
    font-size: 7px;
}

.mix-legend {
    display: grid;
    gap: 5px;
    margin-top: auto;
}

.mix-legend span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 7px;
}

.mix-legend i {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--teal);
}

.mix-legend span:nth-child(2) i {
    background: var(--gold);
}

.mix-legend span:nth-child(3) i {
    background: #b5d9d5;
}

.ai-signal {
    display: grid;
    grid-template-columns: 30px 1fr 15px;
    gap: 10px;
    align-items: center;
    margin-top: 9px;
    padding: 11px 13px;
    border: 1px solid #cce9e4;
    border-radius: 10px;
    background: #eaf8f5;
}

.ai-signal > div {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--teal-dark);
    border-radius: 8px;
    background: var(--white);
}

.ai-signal svg {
    width: 14px;
    height: 14px;
}

.ai-signal > svg {
    color: var(--teal-dark);
}

.ai-signal p,
.ai-signal strong,
.ai-signal span {
    display: block;
    margin: 0;
}

.ai-signal strong {
    font-size: 8px;
}

.ai-signal span {
    margin-top: 2px;
    color: var(--ink-soft);
    font-size: 7px;
    line-height: 1.5;
}

.section--industries {
    overflow: hidden;
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.audience-card {
    position: relative;
    min-height: 230px;
    padding: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    transition: color 200ms ease, background 200ms ease;
}

.audience-card:hover {
    color: var(--white);
    background: var(--navy-850);
}

.audience-card > div {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 36px;
    color: var(--teal-dark);
    border-radius: 10px;
    background: var(--teal-soft);
}

.audience-card > div svg {
    width: 20px;
    height: 20px;
}

.audience-card p {
    max-width: 245px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
    transition: color 200ms ease;
}

.audience-card:hover p {
    color: rgba(255, 255, 255, 0.62);
}

.audience-card > span {
    position: absolute;
    top: 27px;
    right: 27px;
    color: #a1b2af;
}

.audience-card > span svg {
    width: 16px;
    height: 16px;
}

.audience-card:hover > span {
    color: var(--teal-bright);
}

.industry-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-top: 26px;
}

.industry-ribbon > span {
    margin-right: 7px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 780;
}

.industry-ribbon i {
    padding: 6px 10px;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    font-size: 10px;
    font-style: normal;
    font-weight: 680;
}

.section--cases {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 15% 0%, rgba(28, 173, 158, 0.14), transparent 25%),
        var(--navy-950);
}

.section--cases::after {
    content: "";
    position: absolute;
    right: -200px;
    bottom: -220px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(61, 209, 194, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(61, 209, 194, 0.025), 0 0 0 200px rgba(61, 209, 194, 0.018);
}

.case-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.case-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.09);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 211, 189, 0.36);
    background: rgba(255, 255, 255, 0.075);
}

.case-card__visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 150px;
    overflow: hidden;
    padding: 38px 70px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(135deg, rgba(17, 169, 149, 0.18), rgba(5, 29, 38, 0.2));
    background-size: 24px 24px, 24px 24px, auto;
}

.case-card__visual span {
    flex: 1;
    height: 32%;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, var(--teal-bright), var(--teal-dark));
    opacity: 0.76;
}

.case-card__visual span:nth-child(2) { height: 55%; }
.case-card__visual span:nth-child(3) { height: 42%; }
.case-card__visual span:nth-child(4) { height: 77%; }
.case-card__visual span:nth-child(5) { height: 66%; }
.case-card__visual--2 span:nth-child(1) { height: 68%; }
.case-card__visual--2 span:nth-child(2) { height: 35%; }
.case-card__visual--2 span:nth-child(3) { height: 57%; }
.case-card__visual--2 span:nth-child(4) { height: 46%; }
.case-card__visual--2 span:nth-child(5) { height: 81%; }
.case-card__visual--3 span:nth-child(1) { height: 38%; }
.case-card__visual--3 span:nth-child(2) { height: 48%; }
.case-card__visual--3 span:nth-child(3) { height: 65%; }
.case-card__visual--3 span:nth-child(4) { height: 58%; }
.case-card__visual--3 span:nth-child(5) { height: 86%; }

.case-card__visual > b {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
    background: rgba(4, 21, 28, 0.55);
    font-weight: inherit;
}

.case-card__visual > b svg {
    width: 20px;
    height: 20px;
}

.case-card__body {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 26px;
}

.case-card__industry {
    color: var(--gold);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.case-card h3 {
    margin-top: 14px;
    color: var(--white);
    font-size: 20px;
}

.case-card__body > p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.case-card__metric {
    margin-top: auto;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-card__metric strong,
.case-card__metric small {
    display: block;
}

.case-card__metric strong {
    color: var(--teal-bright);
    font-size: 18px;
    line-height: 1.25;
}

.case-card__metric small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.case-disclaimer {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
}

.case-disclaimer svg {
    flex: 0 0 13px;
    width: 13px;
    height: 13px;
    margin-top: 1px;
}

.section--why {
    background: var(--paper);
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.62fr) minmax(580px, 1.1fr);
    gap: 90px;
    align-items: start;
}

.why-copy {
    position: sticky;
    top: 112px;
}

.why-copy > p:not(.eyebrow) {
    margin-top: 24px;
}

.why-list {
    display: grid;
}

.why-list article {
    display: grid;
    grid-template-columns: 55px minmax(150px, 0.45fr) minmax(240px, 1fr);
    gap: 24px;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--line);
}

.why-list article:last-child {
    border-bottom: 1px solid var(--line);
}

.why-list article > div {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: var(--teal-dark);
    border-radius: 12px;
    background: var(--teal-soft);
}

.why-list article > div svg {
    width: 22px;
    height: 22px;
}

.why-list p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

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

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

.process-list::before {
    content: "";
    position: absolute;
    top: 63px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
}

.process-item {
    position: relative;
    z-index: 1;
    min-height: 280px;
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.process-item > span {
    display: block;
    color: #99aaa8;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.13em;
}

.process-item__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 23px 0 38px;
    color: var(--white);
    border-radius: 14px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    box-shadow: 0 10px 25px rgba(17, 169, 149, 0.2);
}

.process-item__icon svg {
    width: 20px;
    height: 20px;
}

.process-item p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.section--insights {
    background: var(--paper-cool);
}

.section--insights .section-heading {
    align-items: center;
}

.section--insights .section-heading > .text-link {
    justify-self: end;
}

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

.insight-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.insight-card::after {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 110px;
    height: 110px;
    border: 18px solid rgba(17, 169, 149, 0.055);
    border-radius: 50%;
}

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

.insight-card > div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    color: var(--teal-dark);
    font-size: 9px;
    font-weight: 820;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.insight-card time {
    color: #9baaa8;
}

.insight-card h3 {
    max-width: 330px;
    margin-top: 42px;
    font-size: 20px;
}

.insight-card > p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.insight-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 22px;
    color: var(--teal-dark);
    font-size: 10px;
    font-weight: 780;
}

.insight-card__link svg {
    width: 13px;
    height: 13px;
}

.section--cta {
    color: var(--white);
    background:
        radial-gradient(circle at 10% 20%, rgba(46, 211, 189, 0.13), transparent 28%),
        var(--navy-900);
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(400px, 0.62fr);
    gap: 80px;
    align-items: center;
}

.contact-copy .eyebrow {
    color: var(--gold);
}

.contact-copy > p:not(.eyebrow):not(.contact-badge) {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.62);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 35px;
    padding: 8px 11px;
    color: var(--teal-bright);
    border: 1px solid rgba(46, 211, 189, 0.2);
    border-radius: 999px;
    background: rgba(46, 211, 189, 0.07);
    font-size: 10px;
    font-weight: 750;
}

.contact-badge svg {
    width: 14px;
    height: 14px;
}

.contact-promises {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.contact-promises li {
    font-size: 12px;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 38px 0 0;
}

.contact-list div {
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-list dt {
    color: rgba(255, 255, 255, 0.36);
    font-size: 8px;
    font-weight: 820;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-list dd {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    font-weight: 680;
    overflow-wrap: anywhere;
}

.contact-form {
    display: grid;
    gap: 15px;
    padding: 30px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-dark);
}

.contact-form__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.contact-form__head > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.contact-form__head span {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    color: var(--teal-dark);
    border-radius: 9px;
    background: var(--teal-soft);
    font-size: 9px;
    font-weight: 850;
}

.contact-form__head h3 {
    margin: 0;
    font-size: 17px;
}

.contact-form__head > svg {
    width: 20px;
    height: 20px;
    color: #95aaa7;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 760;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 13px;
    color: var(--ink);
    border: 1px solid #cfddda;
    border-radius: 8px;
    outline: 0;
    background: #f9fbfb;
    font-size: 12px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
    min-height: 125px;
    resize: vertical;
}

.contact-form textarea::placeholder {
    color: #9caeab;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(17, 169, 149, 0.12);
    background: var(--white);
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
}

.form-alert {
    margin: 0;
    padding: 11px 13px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 720;
}

.form-alert--success {
    color: #0d5a47;
    background: #dff4e9;
}

.form-alert--error {
    color: #7a281d;
    background: #f9ddd7;
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #849996;
    font-size: 8px;
}

.form-privacy svg {
    width: 11px;
    height: 11px;
}

.site-footer {
    padding: 70px 0 26px;
    color: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) 180px 220px;
    gap: 70px;
}

.brand--footer {
    margin-bottom: 25px;
}

.site-footer h2 {
    max-width: 630px;
    color: var(--white);
    font-size: clamp(30px, 3vw, 43px);
}

.site-footer p {
    max-width: 590px;
    margin: 17px 0 0;
    font-size: 12px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 7px;
    font-size: 11px;
}

.footer-links strong,
.footer-contact strong {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.admin-link {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.28);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 55px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.32);
    font-size: 9px;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js .service-card[data-reveal].is-visible:hover {
    transform: translateY(-6px);
}

.js .case-card[data-reveal].is-visible:hover {
    transform: translateY(-5px);
}

.js .insight-card[data-reveal].is-visible:hover {
    transform: translateY(-4px);
}

@media (max-width: 1120px) {
    .site-nav {
        gap: 16px;
        font-size: 12px;
    }

    .nav-contact {
        display: none !important;
    }

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

    .service-card {
        min-height: 370px;
    }

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

    .showcase-grid {
        grid-template-columns: 0.72fr 1.28fr;
        gap: 35px;
    }

    .analytics-window {
        transform: none;
    }

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

@media (max-width: 920px) {
    .container {
        width: min(100% - 36px, 1240px);
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 12px 18px 18px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 13px;
        background: rgba(4, 21, 28, 0.98);
        box-shadow: 0 22px 50px rgba(0, 8, 12, 0.32);
    }

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

    .site-nav > a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-nav > a::after {
        display: none;
    }

    .nav-contact {
        display: flex !important;
        justify-content: center;
        margin-top: 10px;
    }

    .language-switcher {
        justify-self: start;
        margin-top: 12px;
    }

    .hero {
        min-height: 820px;
    }

    .hero__image {
        object-position: 62% center;
    }

    .hero__overlay {
        background:
            linear-gradient(90deg, rgba(3, 18, 24, 0.96) 0%, rgba(3, 18, 24, 0.82) 52%, rgba(3, 18, 24, 0.26) 100%),
            linear-gradient(180deg, rgba(2, 15, 20, 0.14) 50%, rgba(2, 15, 20, 0.85) 100%);
    }

    .hero__copy {
        max-width: 610px;
    }

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

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .trust-band__inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .trust-list {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .section {
        padding: 88px 0;
    }

    .section-heading,
    .showcase-grid,
    .why-grid,
    .contact-shell {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .showcase-grid,
    .why-grid,
    .contact-shell {
        gap: 34px;
    }

    .showcase-copy {
        max-width: 680px;
    }

    .analytics-window {
        max-width: 760px;
        margin: 8px auto 0;
    }

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

    .why-copy {
        position: static;
        max-width: 720px;
    }

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

    .process-list::before {
        display: none;
    }

    .contact-shell {
        max-width: 760px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

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

    .container {
        width: min(100% - 28px, 1240px);
    }

    .site-header {
        top: 8px;
        width: min(100% - 18px, 1240px);
        min-height: 61px;
        padding: 8px 9px 8px 14px;
        border-radius: 11px;
    }

    .site-header.is-scrolled {
        top: 6px;
        min-height: 58px;
    }

    .brand__logo {
        width: 142px;
    }

    .icon-button {
        width: 42px;
        min-height: 42px;
    }

    .hero {
        align-items: flex-end;
        min-height: 800px;
        height: 100svh;
        max-height: 940px;
    }

    .hero__image {
        object-position: 70% center;
    }

    .hero__overlay {
        background:
            linear-gradient(180deg, rgba(3, 18, 24, 0.2) 0%, rgba(3, 18, 24, 0.5) 34%, rgba(3, 18, 24, 0.96) 71%, rgba(3, 18, 24, 1) 100%),
            linear-gradient(90deg, rgba(3, 18, 24, 0.58), rgba(3, 18, 24, 0.12));
    }

    .hero__grid {
        mask-image: linear-gradient(180deg, transparent, #000);
    }

    .hero__content {
        padding: 115px 0 48px;
    }

    .hero__note {
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: clamp(39px, 12vw, 52px);
        line-height: 1.1;
    }

    .hero__lead {
        margin-top: 17px;
        font-size: 15px;
        line-height: 1.65;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 24px;
    }

    .hero__actions .button {
        min-height: 46px;
        padding: 11px 10px;
        font-size: 12px;
    }

    .hero__proofs {
        display: grid;
        gap: 6px;
        margin-top: 20px;
    }

    .hero__proofs li {
        font-size: 10px;
    }

    .hero__scroll {
        display: none;
    }

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

    .stat-item {
        min-height: 145px;
        padding: 22px 16px;
    }

    .stat-item strong {
        font-size: 23px;
    }

    .stat-item p {
        font-size: 10px;
    }

    .trust-band__inner > p {
        font-size: 12px;
    }

    .trust-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .trust-list span {
        font-size: 9px;
    }

    .section {
        padding: 72px 0;
    }

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

    .section-heading h2,
    .showcase-copy h2,
    .why-copy h2,
    .contact-copy h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .section-heading > p,
    .section-heading > div + p,
    .showcase-copy > p:not(.eyebrow),
    .why-copy > p:not(.eyebrow),
    .contact-copy > p:not(.eyebrow):not(.contact-badge) {
        font-size: 14px;
    }

    .service-grid,
    .audience-grid,
    .case-grid,
    .process-list,
    .insight-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 22px;
    }

    .service-card__top {
        margin-bottom: 28px;
    }

    .showcase-points {
        grid-template-columns: 1fr;
    }

    .showcase-points > div:nth-child(odd) {
        margin-right: 0;
    }

    .showcase-points > div:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .analytics-window {
        border-radius: 14px;
    }

    .analytics-window__bar {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .analytics-window__bar > span:nth-child(2) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .analytics-window__body {
        padding: 13px;
    }

    .dashboard-heading h3 {
        font-size: 14px;
    }

    .dashboard-heading button span {
        display: none;
    }

    .dashboard-kpis {
        gap: 5px;
    }

    .dashboard-kpis article {
        padding: 9px;
    }

    .dashboard-kpis strong {
        font-size: 14px;
    }

    .dashboard-kpis span,
    .dashboard-kpis small {
        font-size: 6px;
    }

    .dashboard-main {
        grid-template-columns: 1fr;
    }

    .chart-card--mix {
        display: none;
    }

    .ai-signal {
        grid-template-columns: 27px 1fr;
    }

    .ai-signal > svg {
        display: none;
    }

    .audience-grid {
        border: 0;
        gap: 8px;
    }

    .audience-card {
        min-height: 185px;
        border: 1px solid var(--line);
        border-radius: 13px;
    }

    .audience-card > div {
        margin-bottom: 28px;
    }

    .case-card__body {
        min-height: 290px;
    }

    .why-list article {
        grid-template-columns: 49px 1fr;
        gap: 15px;
        padding: 24px 0;
    }

    .why-list article > div {
        width: 44px;
        height: 44px;
    }

    .why-list p {
        grid-column: 2;
    }

    .process-item {
        min-height: auto;
    }

    .contact-shell {
        gap: 45px;
    }

    .contact-list {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .contact-form {
        padding: 21px;
        border-radius: 15px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .site-footer h2 {
        font-size: 30px;
    }

    .footer-bottom {
        display: grid;
        margin-top: 38px;
    }
}

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

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

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
