:root {
    --ink: #111827;
    --ink-soft: #526074;
    --paper: #f5f7fb;
    --paper-strong: #ffffff;
    --night: #0b1020;
    --night-soft: #111a2e;
    --night-card: #151f36;
    --line: #dfe5ee;
    --line-dark: rgba(255, 255, 255, 0.1);
    --brand: #61d6b3;
    --brand-strong: #36b990;
    --brand-dark: #0d6d58;
    --sky: #73a9ff;
    --violet: #a78bfa;
    --danger: #b4233a;
    --success: #087a58;
    --shadow-sm: 0 12px 34px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.3);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1200px;
    --header-height: 76px;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--night);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
    color: var(--ink);
    font-weight: 760;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

h1 {
    max-width: 780px;
    margin-bottom: 28px;
    font-size: clamp(3.35rem, 7.5vw, 6.9rem);
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.25rem, 4.4vw, 4.5rem);
}

h3 {
    font-size: 1.3rem;
}

section[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
}

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

.section {
    padding-block: clamp(88px, 10vw, 148px);
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 16px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--night);
    background: var(--brand);
    font-weight: 800;
    transform: translateY(-180%);
}

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

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

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    color: #fff;
    transition: height 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(11, 16, 32, 0.93);
    box-shadow: 0 10px 38px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--night);
    background: var(--brand);
    box-shadow: 0 8px 26px rgba(97, 214, 179, 0.2);
    font-weight: 900;
    line-height: 1;
}

.site-header .brand-mark {
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.brand-copy {
    display: grid;
    gap: 1px;
    line-height: 1.15;
}

.brand-copy strong {
    color: #fff;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
}

.brand-copy small {
    color: #91a0b7;
    font-size: 0.67rem;
    letter-spacing: 0.035em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.primary-nav a {
    padding: 9px 13px;
    border-radius: 9px;
    color: #aab6c8;
    font-size: 0.87rem;
    font-weight: 650;
    transition: color 150ms ease, background 150ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.primary-nav .nav-cta {
    margin-left: 8px;
    padding-inline: 17px;
    color: var(--night);
    background: var(--brand);
}

.primary-nav .nav-cta:hover {
    color: var(--night);
    background: #82e2c6;
}

.primary-nav .nav-cta.is-active {
    color: var(--night);
    background: var(--brand);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin-block: 4px;
    border-radius: 9px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    color: #a9b6ca;
    background:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        var(--night);
    background-size: 72px 72px;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 180px;
    background: linear-gradient(transparent, rgba(11, 16, 32, 0.98));
    content: "";
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 850px;
    padding-top: calc(var(--header-height) + 66px);
    padding-bottom: 92px;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
    align-items: center;
    gap: clamp(56px, 7vw, 110px);
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.hero h1 {
    color: #fff;
}

.hero h1 em {
    color: var(--brand);
    font-style: normal;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 20px;
    color: var(--brand-dark);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 27px;
    height: 2px;
    background: currentColor;
}

.hero .eyebrow,
.specialty .eyebrow,
.contact .eyebrow {
    color: var(--brand);
}

.hero-lead {
    max-width: 680px;
    margin-bottom: 35px;
    color: #b1bdd0;
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

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

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 150ms ease, background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

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

.button-primary {
    color: var(--night);
    background: var(--brand);
    box-shadow: 0 14px 34px rgba(97, 214, 179, 0.18);
}

.button-primary:hover {
    background: #82e2c6;
    box-shadow: 0 17px 42px rgba(97, 214, 179, 0.27);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
}

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

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 30px 0 0;
    padding: 0;
    color: #8492aa;
    font-size: 0.8rem;
    list-style: none;
}

.hero-points li::before {
    margin-right: 8px;
    color: var(--brand);
    content: "✓";
}

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

.hero-glow-one {
    top: -220px;
    left: -230px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(88, 130, 255, 0.13), transparent 67%);
}

.hero-glow-two {
    right: -250px;
    bottom: -330px;
    width: 820px;
    height: 820px;
    background: radial-gradient(circle, rgba(97, 214, 179, 0.14), transparent 65%);
}

.hero-visual {
    --browser-right: -40px;
    --browser-top: 60px;
    --browser-width: min(630px, 110%);

    position: relative;
    min-height: 650px;
    perspective: 1400px;
}

.browser-window {
    position: absolute;
    z-index: 2;
    top: var(--browser-top);
    right: var(--browser-right);
    width: var(--browser-width);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: #121b30;
    box-shadow: var(--shadow-lg);
    transform: rotateY(-8deg) rotateX(2deg);
}

.browser-bar {
    display: flex;
    min-height: 52px;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0f1729;
}

.browser-bar > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #33405a;
}

.browser-bar > span:first-child {
    background: #ff7588;
}

.browser-bar > span:nth-child(2) {
    background: #f1c76a;
}

.browser-bar > span:nth-child(3) {
    background: #61d6b3;
}

.browser-bar div {
    min-width: 180px;
    margin-left: 12px;
    padding: 5px 15px;
    border-radius: 7px;
    color: #73829b;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.66rem;
    text-align: center;
}

.browser-body {
    min-height: 540px;
    padding: 40px 40px 36px;
    background:
        radial-gradient(circle at 90% 10%, rgba(115, 169, 255, 0.15), transparent 35%),
        linear-gradient(145deg, #111c32, #0f1729);
}

.preview-heading {
    display: grid;
    gap: 15px;
    margin-bottom: 28px;
}

.preview-label {
    width: fit-content;
    padding: 5px 10px;
    border: 1px solid rgba(97, 214, 179, 0.2);
    border-radius: 99px;
    color: var(--brand);
    background: rgba(97, 214, 179, 0.07);
    font-size: 0.62rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.preview-heading strong {
    color: #f5f8ff;
    font-size: clamp(2rem, 3.6vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 10px;
}

.preview-card {
    display: grid;
    min-height: 110px;
    align-content: end;
    gap: 2px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
}

.preview-card-featured {
    background: linear-gradient(145deg, rgba(97, 214, 179, 0.14), rgba(255, 255, 255, 0.03));
}

.preview-icon {
    display: grid;
    width: 29px;
    height: 29px;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 8px;
    color: var(--night);
    background: var(--brand);
    font-weight: 900;
}

.preview-card small {
    color: #7887a0;
    font-size: 0.65rem;
}

.preview-card strong {
    color: #e8edf6;
    font-size: 0.77rem;
}

.trust-strip {
    position: relative;
    z-index: 5;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip p {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 27px 28px;
    border-left: 1px solid var(--line);
}

.trust-strip p:last-child {
    border-right: 1px solid var(--line);
}

.trust-strip strong {
    color: var(--ink);
    font-size: 0.84rem;
}

.trust-strip span {
    color: #7b8798;
    font-size: 0.72rem;
}

.services {
    background: #f7f8fb;
}

.section-intro {
    max-width: 800px;
    margin-bottom: 58px;
}

.section-intro h2 {
    margin-bottom: 0;
}

.section-intro > p:last-child,
.section-intro-split > p {
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.section-intro-split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: end;
    gap: 80px;
}

.section-intro-split > p {
    margin-bottom: 7px;
}

.centered {
    margin-inline: auto;
    text-align: center;
}

.centered .eyebrow {
    justify-content: center;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 410px;
    padding: 31px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
    border-color: #c8d1dd;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.card-number {
    position: absolute;
    top: 27px;
    right: 28px;
    color: #aeb8c7;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 36px;
    place-items: center;
    border-radius: 13px;
    color: var(--brand-dark);
    background: #e8f7f2;
    font-size: 1.05rem;
    font-weight: 900;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.38rem;
}

.service-card > p {
    margin-bottom: 24px;
    color: var(--ink-soft);
    font-size: 0.93rem;
}

.service-card ul {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding: 21px 0 0;
    border-top: 1px solid var(--line);
    color: #69768a;
    font-size: 0.79rem;
    list-style: none;
}

.service-card li::before {
    margin-right: 8px;
    color: var(--brand-dark);
    content: "—";
}

.open-brief {
    display: flex;
    margin-top: 16px;
    padding: 23px 28px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px dashed #b8c5d6;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.45);
}

.open-brief p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.89rem;
}

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

.open-brief a,
.text-link {
    flex: 0 0 auto;
    color: var(--brand-dark);
    font-size: 0.86rem;
    font-weight: 850;
}

.open-brief a:hover,
.text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.specialty {
    position: relative;
    overflow: hidden;
    color: #aebbd0;
    background:
        radial-gradient(circle at 85% 20%, rgba(115, 169, 255, 0.12), transparent 30%),
        radial-gradient(circle at 15% 80%, rgba(97, 214, 179, 0.09), transparent 27%),
        var(--night);
}

.specialty-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    align-items: center;
    gap: clamp(70px, 9vw, 140px);
}

.specialty h2,
.specialty h3 {
    color: #fff;
}

.specialty-lead {
    margin-bottom: 40px;
    color: #a7b4c8;
    font-size: 1.05rem;
}

.specialty-list {
    display: grid;
    gap: 0;
    margin-bottom: 32px;
    border-top: 1px solid var(--line-dark);
}

.specialty-list article {
    display: grid;
    padding-block: 22px;
    border-bottom: 1px solid var(--line-dark);
    grid-template-columns: 44px 1fr;
    gap: 13px;
}

.specialty-list article > span {
    padding-top: 3px;
    color: var(--brand);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.specialty-list h3 {
    margin-bottom: 6px;
    font-size: 1rem;
    letter-spacing: -0.015em;
}

.specialty-list p {
    margin: 0;
    color: #8493aa;
    font-size: 0.84rem;
}

.specialty .text-link {
    color: var(--brand);
}

.system-diagram {
    position: relative;
    display: grid;
    min-height: 590px;
    place-items: center;
}

.system-diagram::before {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(97, 214, 179, 0.09);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.012), 0 0 0 140px rgba(255, 255, 255, 0.008);
    content: "";
}

.system-source,
.system-result {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 330px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 17px;
    background: rgba(17, 26, 46, 0.96);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
}

.system-source {
    top: 55px;
    left: 0;
    transform: rotate(-5deg);
}

.system-result {
    right: 0;
    bottom: 40px;
    grid-template-columns: 54px 1fr;
    transform: rotate(4deg);
}

.system-source > strong,
.system-source > small,
.system-result > strong,
.system-result > small {
    grid-column: 1 / -1;
}

.system-source > strong,
.system-result > strong {
    margin-top: 18px;
    color: #fff;
    font-size: 0.86rem;
}

.system-source > small,
.system-result > small {
    color: #77869e;
    font-size: 0.68rem;
}

.sheet-bar {
    display: flex;
    gap: 5px;
    margin: -18px -18px 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.035);
}

.sheet-bar span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #465269;
}

.sheet-grid {
    display: grid;
    height: 150px;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sheet-grid span {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sheet-grid span:nth-child(2),
.sheet-grid span:nth-child(7),
.sheet-grid span:nth-child(12) {
    background: rgba(97, 214, 179, 0.16);
}

.app-sidebar {
    display: grid;
    min-height: 190px;
    align-content: start;
    gap: 13px;
    padding: 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
}

.app-sidebar i {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    background: #35425a;
}

.app-sidebar i:first-child {
    background: var(--brand);
}

.app-content {
    padding: 6px 0 0 13px;
}

.app-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-title span {
    width: 72px;
    height: 8px;
    border-radius: 9px;
    background: #43516b;
}

.app-title i {
    width: 25px;
    height: 16px;
    border-radius: 6px;
    background: var(--brand);
}

.app-stats {
    display: grid;
    margin-block: 23px;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.app-stats i {
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.03);
}

.app-chart {
    position: relative;
    height: 95px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
}

.app-chart span {
    position: absolute;
    right: -15px;
    bottom: -35px;
    left: -15px;
    height: 95px;
    border: 3px solid var(--sky);
    border-radius: 50%;
    transform: rotate(-9deg);
}

.audiences {
    background: #fff;
}

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

.audience-grid article {
    min-height: 245px;
    padding: 29px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.audience-grid article > span {
    display: block;
    margin-bottom: 65px;
    color: var(--brand-dark);
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.audience-grid h3 {
    margin-bottom: 12px;
    font-size: 1.16rem;
}

.audience-grid p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.approach {
    background: #eef2f7;
}

.approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    gap: clamp(70px, 9vw, 140px);
}

.approach-intro {
    position: sticky;
    top: calc(var(--header-height) + 40px);
    align-self: start;
}

.approach-intro > p:not(.eyebrow) {
    margin-bottom: 31px;
    color: var(--ink-soft);
    font-size: 1.02rem;
}

.approach .button-secondary {
    border-color: #cdd6e2;
    color: var(--ink);
    background: #fff;
}

.approach .button-secondary:hover {
    border-color: #aebaca;
    background: #fff;
}

.process-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    padding: 27px 29px;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
}

.process-list li > span {
    color: var(--brand-dark);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.process-list h3 {
    margin-bottom: 8px;
    font-size: 1.13rem;
}

.process-list p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.local-section {
    padding-top: 0;
    background: #eef2f7;
}

.local-card {
    display: grid;
    padding: clamp(42px, 6vw, 75px);
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    align-items: center;
    gap: 75px;
    border-radius: var(--radius-lg);
    color: #cfe7df;
    background:
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.13), transparent 30%),
        #0e705c;
}

.local-card h2 {
    color: #fff;
}

.local-card p:not(.eyebrow) {
    max-width: 760px;
    margin-bottom: 0;
    color: #c9e3db;
}

.local-card .eyebrow {
    color: #a9f0db;
}

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

.location-list li {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.82rem;
    font-weight: 700;
}

.faq {
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.25fr);
    gap: clamp(70px, 9vw, 140px);
}

.faq-intro > p:not(.eyebrow) {
    color: var(--ink-soft);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 25px 48px 25px 0;
    color: var(--ink);
    font-size: 1rem;
    font-weight: 760;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 20px;
    right: 0;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--brand-dark);
    content: "+";
    font-size: 1.1rem;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: -4px 48px 25px 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.contact {
    color: #aebbd0;
    background:
        radial-gradient(circle at 5% 10%, rgba(115, 169, 255, 0.1), transparent 28%),
        radial-gradient(circle at 100% 100%, rgba(97, 214, 179, 0.1), transparent 27%),
        var(--night);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    align-items: start;
    gap: clamp(65px, 9vw, 130px);
}

.contact-copy {
    position: sticky;
    top: calc(var(--header-height) + 40px);
}

.contact h2 {
    color: #fff;
}

.contact-copy > p:not(.eyebrow, .contact-only-note) {
    color: #aebbd0;
    font-size: 1.03rem;
}

.contact-promises {
    display: grid;
    gap: 9px;
    margin-block: 32px;
}

.contact-promises p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #d7dfeb;
    font-size: 0.87rem;
}

.contact-promises span {
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--night);
    background: var(--brand);
    font-size: 0.65rem;
    font-weight: 900;
}

.contact-only-note {
    padding-top: 22px;
    border-top: 1px solid var(--line-dark);
    color: #7f8da4;
    font-size: 0.78rem;
}

.form-panel {
    padding: clamp(27px, 4vw, 48px);
    border-radius: var(--radius-md);
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.form-heading {
    margin-bottom: 29px;
}

.form-heading p {
    margin-bottom: 5px;
    color: var(--brand-dark);
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-heading h3 {
    margin-bottom: 0;
    font-size: 1.7rem;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-field {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.form-field > span {
    color: #3c4859;
    font-size: 0.74rem;
    font-weight: 750;
}

.form-field small {
    margin-left: 4px;
    color: #929dad;
    font-size: 0.66rem;
    font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #d8e0ea;
    border-radius: 9px;
    outline: none;
    color: var(--ink);
    background: #f9fafc;
    transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--brand-strong);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(54, 185, 144, 0.12);
}

.form-field textarea::placeholder {
    color: #98a3b3;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.turnstile-widget {
    display: flex;
    width: 100%;
    min-height: 65px;
    align-items: center;
    justify-content: center;
    margin: 2px 0 14px;
}

.turnstile-widget.is-disabled {
    display: none;
}

.turnstile-loading {
    color: #8995a5;
    font-size: 0.72rem;
}

.submit-button {
    width: 100%;
    margin-top: 4px;
    border: 0;
}

.submit-button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.btn-spinner {
    display: none;
    width: 17px;
    height: 17px;
    border: 2px solid rgba(11, 16, 32, 0.28);
    border-top-color: var(--night);
    border-radius: 50%;
    animation: spin 750ms linear infinite;
}

.submit-button.loading .btn-text {
    display: none;
}

.submit-button.loading .btn-spinner {
    display: block;
}

.form-privacy {
    margin: 12px 0 0;
    color: #8995a5;
    font-size: 0.68rem;
    text-align: center;
}

.form-alert {
    margin-top: 17px;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 0.78rem;
    font-weight: 650;
}

.form-alert.success {
    border-color: rgba(8, 122, 88, 0.22);
    color: var(--success);
    background: rgba(8, 122, 88, 0.08);
}

.form-alert.error {
    border-color: rgba(180, 35, 58, 0.2);
    color: var(--danger);
    background: rgba(180, 35, 58, 0.07);
}

.site-footer {
    color: #8b98ad;
    background: #070b15;
}

.footer-top {
    display: flex;
    padding-block: 55px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px 24px;
}

.footer-nav a {
    font-size: 0.77rem;
    font-weight: 650;
}

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

.footer-bottom {
    display: flex;
    padding-block: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    color: #68768c;
    font-size: 0.69rem;
}

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

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
        gap: 45px;
    }

    .hero-visual {
        --browser-right: -90px;
        --browser-width: 590px;
    }

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

    .specialty-grid {
        grid-template-columns: 1fr 1fr;
        gap: 55px;
    }

    .system-source,
    .system-result {
        width: 285px;
    }

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

@media (max-width: 860px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(var(--container), calc(100% - 32px));
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        z-index: 999;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        max-height: 0;
        padding: 0 16px;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(11, 16, 32, 0.98);
        opacity: 0;
        pointer-events: none;
        transition: max-height 220ms ease, opacity 160ms ease, padding 220ms ease;
    }

    .primary-nav.is-open {
        max-height: calc(100vh - var(--header-height));
        padding-block: 14px 22px;
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav a {
        padding: 13px 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .primary-nav .nav-cta {
        margin: 9px 0 0;
        border: 0;
        text-align: center;
    }

    .hero,
    .hero-grid {
        min-height: auto;
    }

    .hero-grid {
        padding-top: calc(var(--header-height) + 75px);
        padding-bottom: 100px;
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-visual {
        --browser-right: 0px;
        --browser-width: 100%;

        width: min(680px, 100%);
        min-height: 650px;
        margin-inline: auto;
    }

    .browser-window {
        transform: none;
    }

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

    .trust-strip p:nth-child(3) {
        border-top: 1px solid var(--line);
    }

    .trust-strip p:nth-child(4) {
        border-top: 1px solid var(--line);
        border-right: 1px solid var(--line);
    }

    .section-intro-split,
    .specialty-grid,
    .approach-grid,
    .local-card,
    .faq-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-intro-split,
    .specialty-grid,
    .approach-grid,
    .faq-grid,
    .contact-grid {
        gap: 48px;
    }

    .section-intro-split > p {
        margin-bottom: 0;
    }

    .system-diagram {
        width: min(650px, 100%);
        margin-inline: auto;
    }

    .approach-intro,
    .contact-copy {
        position: static;
    }

    .local-card {
        gap: 38px;
    }

    .faq-intro {
        max-width: 640px;
    }
}

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

    h1 {
        font-size: clamp(3.05rem, 15vw, 4.8rem);
    }

    h2 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .brand-copy small {
        display: none;
    }

    .hero-grid {
        padding-top: calc(var(--header-height) + 55px);
        padding-bottom: 75px;
    }

    .hero .eyebrow {
        max-width: 290px;
        align-items: flex-start;
        line-height: 1.5;
    }

    .hero .eyebrow > span {
        margin-top: 7px;
        flex: 0 0 auto;
    }

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

    .hero-points {
        display: grid;
    }

    .hero-visual {
        --browser-top: 40px;

        min-height: 550px;
    }

    .browser-bar div {
        min-width: 0;
        flex: 1;
    }

    .browser-body {
        min-height: 455px;
        padding: 32px 20px 25px;
    }

    .preview-heading {
        margin-bottom: 25px;
    }

    .preview-heading strong {
        font-size: 2rem;
    }

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

    .preview-card {
        min-height: 105px;
        padding: 10px;
    }

    .preview-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 10px;
        font-size: 0.75rem;
    }

    .preview-card small {
        font-size: 0.54rem;
    }

    .preview-card strong {
        font-size: 0.62rem;
    }

    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip p,
    .trust-strip p:nth-child(3),
    .trust-strip p:nth-child(4) {
        padding: 20px;
        border-top: 0;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .service-grid,
    .audience-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
    }

    .open-brief,
    .footer-top,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .open-brief {
        display: flex;
    }

    .system-diagram {
        min-height: 650px;
    }

    .system-source,
    .system-result {
        width: min(315px, calc(100% - 16px));
    }

    .system-source {
        top: 30px;
        left: 0;
    }

    .system-result {
        right: 0;
        bottom: 30px;
    }

    .audience-grid article {
        min-height: 205px;
    }

    .audience-grid article > span {
        margin-bottom: 38px;
    }

    .process-list li {
        padding: 23px 20px;
        grid-template-columns: 40px 1fr;
    }

    .local-card {
        padding: 35px 24px;
        border-radius: var(--radius-md);
    }

    .form-panel {
        margin-inline: -2px;
    }

    .footer-top {
        display: flex;
    }

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

    .footer-bottom {
        display: flex;
    }
}

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

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