:root {
    --ink: #0d0f12;
    --ink-2: #14171c;
    --ink-3: #1b1f25;
    --paper: #ffffff;
    --paper-2: #f5f5f3;
    --line: #e7e7e3;
    --line-dark: rgba(255, 255, 255, 0.1);
    --text: #191b1f;
    --text-soft: #5d626a;
    --inv: #f2f2ef;
    --inv-soft: #a0a6ad;
    --orange: #f15a22;
    --orange-deep: #d8431a;
    --orange-soft: rgba(241, 90, 34, 0.1);
    --maxw: 1200px;
    --gutter: 24px;
    --disp: "Space Grotesk", system-ui, sans-serif;
    --body: "Inter", system-ui, sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--body);
    color: var(--text);
    background: var(--ink);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}
h1,
h2,
h3 {
    font-family: var(--disp);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}
::selection {
    background: var(--orange);
    color: #fff;
}
:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 2px;
}
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.section {
    padding: clamp(72px, 9vw, 120px) 0;
}
.eyebrow {
    font-family: var(--body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.eyebrow::before {
    content: "";
    width: 26px;
    height: 1.5px;
    background: var(--orange);
    display: inline-block;
}
.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-soft);
}
.h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}
.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--text-soft);
    max-width: 62ch;
}
.dark .lead {
    color: var(--inv-soft);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 26px;
    border-radius: 8px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition:
        transform 0.15s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
}
.btn-primary:hover {
    background: var(--orange-deep);
    transform: translateY(-2px);
}
.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}
.btn-ghost-dark {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}
.btn-ghost-dark:hover {
    border-color: var(--orange);
    color: var(--orange-deep);
    transform: translateY(-2px);
}
.btn .arr {
    transition: transform 0.15s ease;
}
.btn:hover .arr {
    transform: translateX(3px);
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
}
.nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 18px var(--gutter);
    display: flex;
    align-items: center;
    gap: 30px;
}
.brand {
    display: flex;
    align-items: center;
}
.brand img {
    height: 64px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
    font-size: 15px;
    font-weight: 500;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.82);
    transition: color 0.2s ease;
}
.nav-links a:hover {
    color: #fff;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    margin: 0;
    cursor: pointer;
    color: #fff;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
}
.nav-toggle .ic-close {
    display: none;
}
.nav-toggle[aria-expanded="true"] .ic-burger {
    display: none;
}
.nav-toggle[aria-expanded="true"] .ic-close {
    display: block;
}
html.menu-lock,
html.menu-lock body {
    overflow: hidden;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    box-shadow:
        0 1px 0 var(--line),
        0 8px 30px rgba(0, 0, 0, 0.06);
}
.nav.scrolled .nav-links a {
    color: var(--text-soft);
}
.nav.scrolled .nav-links a:hover {
    color: var(--ink);
}
.nav.scrolled .nav-toggle {
    color: var(--ink);
}
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 1;
    overflow: hidden;
    background: var(--ink);
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(8, 10, 14, 0.5) 0%,
            transparent 16%
        ),
        linear-gradient(
            100deg,
            rgba(8, 10, 14, 0.85) 0%,
            rgba(8, 10, 14, 0.62) 26%,
            rgba(8, 10, 14, 0.3) 48%,
            rgba(8, 10, 14, 0.06) 68%,
            rgba(8, 10, 14, 0) 100%
        ),
        linear-gradient(
            to top,
            rgba(8, 10, 14, 0.55) 0%,
            transparent 32%
        );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-inner {
    max-width: 680px;
}
.hero .eyebrow {
    color: #fff;
}
.hero .eyebrow::before {
    background: var(--orange);
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.7rem, 6.2vw, 4.7rem);
    font-weight: 700;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.hero h1 .accent {
    color: var(--orange);
}
.hero-sub {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    margin-top: 24px;
    max-width: 54ch;
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 38px;
    flex-wrap: wrap;
}
.hero-trust {
    margin-top: 42px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-trust .sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--orange);
}
.scrollcue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bob 2.4s ease-in-out infinite;
}
.scrollcue span {
    width: 1px;
    height: 30px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.6),
        transparent
    );
}
@keyframes bob {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(7px);
    }
}
.content {
    position: relative;
    z-index: 2;
    margin-top: 100vh;
    margin-top: 100dvh;
    background: var(--paper);
    box-shadow: 0 -30px 70px rgba(0, 0, 0, 0.35);
}
.announce {
    background: var(--paper);
    padding: clamp(32px, 5vw, 52px) 0;
}
.announce-card {
    background: var(--ink);
    border-radius: 20px;
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
}
.announce-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 12% 20%,
        rgba(241, 90, 34, 0.16),
        transparent 55%
    );
    pointer-events: none;
}
.announce-badge {
    flex: none;
    height: 96px;
    padding: 16px 26px;
    border-radius: 16px;
    background: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}
.announce-badge img {
    height: 64px;
    width: auto;
    display: block;
}
.announce-copy {
    flex: 1;
    position: relative;
    z-index: 1;
}
.announce-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--orange);
    background: rgba(241, 90, 34, 0.16);
    border-radius: 20px;
    padding: 6px 14px;
    margin-bottom: 16px;
}
.announce-copy h3 {
    color: #fff;
    font-size: clamp(1.5rem, 2.4vw, 2.05rem);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
    line-height: 1.2;
}
.announce-copy p {
    color: var(--inv-soft);
    font-size: 15.5px;
    max-width: 64ch;
}
.stats {
    background: var(--ink);
    color: var(--inv);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat {
    padding: clamp(40px, 6vw, 64px) 28px;
    border-right: 1px solid var(--line-dark);
    text-align: center;
}
.stat:last-child {
    border-right: none;
}
.stat .num {
    font-family: var(--disp);
    font-weight: 700;
    font-size: clamp(2.4rem, 4.6vw, 3.4rem);
    color: #fff;
    letter-spacing: -0.03em;
}
.stat .num .u {
    color: var(--orange);
}
.stat .cap {
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--inv-soft);
}
.problem {
    background: var(--paper);
}
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}
.problem h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}
.problem .big-state {
    font-family: var(--disp);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.5vw, 2.05rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--text);
}
.problem .big-state .hl {
    color: var(--orange);
}
.pain-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pain {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    color: var(--text-soft);
}
.pain .x {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange-soft);
    color: var(--orange-deep);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}
.model {
    background: var(--paper-2);
}
.section-head {
    max-width: 680px;
    margin-bottom: 54px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-head.center .eyebrow {
    justify-content: center;
}
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pillar {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 30px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
    border-color: #dcdcd6;
}
.pillar .ico {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    background: var(--ink);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
}
.pillar .ico svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange);
}
.pillar h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
}
.pillar p {
    color: var(--text-soft);
    font-size: 15.5px;
}
.pillar .tag {
    margin-top: 18px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 600;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}
.solutions {
    background: var(--paper);
}
.sol-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.sol-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 30px 28px;
    background: var(--paper);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 230px;
}
.sol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.08);
    border-color: #dcdcd6;
}
.sol-card .cat {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 14px;
}
.sol-card h3 {
    font-size: 1.5rem;
    margin-bottom: 11px;
    letter-spacing: -0.02em;
}
.sol-card h3 .tm {
    font-size: 0.6em;
    vertical-align: super;
    color: var(--text-soft);
    font-weight: 500;
}
.sol-card p {
    color: var(--text-soft);
    font-size: 15px;
    flex: 1;
}
.sol-card .explore {
    margin-top: 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.sol-card:hover .explore {
    color: var(--orange-deep);
}
.sol-card .explore .arr {
    transition: transform 0.15s ease;
}
.sol-card:hover .explore .arr {
    transform: translateX(4px);
}
.feature {
    overflow: hidden;
}
.feature .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5.5vw, 80px);
    align-items: center;
}
.feature.light {
    background: var(--paper);
}
.feature.flip .feat-media {
    order: -1;
}
.feat-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14);
    position: relative;
}
.feat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}
.feat-copy h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
    margin-bottom: 20px;
}
.feat-copy h2 .accent {
    color: var(--orange);
}
.feat-list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.feat-list li {
    list-style: none;
    display: flex;
    gap: 13px;
    align-items: flex-start;
    font-size: 15.5px;
}
.feat-list .ck {
    flex: none;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--orange-soft);
    display: grid;
    place-items: center;
    margin-top: 1px;
}
.feat-list .ck svg {
    width: 13px;
    height: 13px;
    stroke: var(--orange-deep);
}
.feat-copy .btn {
    margin-top: 32px;
}
.feature.dark {
    background: var(--ink);
    color: var(--inv);
}
.feature.dark .feat-copy h2 {
    color: #fff;
}
.feature.dark .feat-list li {
    color: var(--inv-soft);
}
.feature.dark .feat-media {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--line-dark);
}
.feature.dark .feat-list .ck {
    background: rgba(241, 90, 34, 0.18);
}
.feature.dark .feat-list .ck svg {
    stroke: var(--orange);
}
.consulting {
    background: var(--ink);
    color: var(--inv);
}
.consulting .section-head h2 {
    color: #fff;
}
.consulting .lead {
    color: var(--inv-soft);
}
.consulting-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5.5vw, 80px);
    align-items: center;
    margin-bottom: 54px;
}
.consulting-media {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--line-dark);
}
.consulting-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}
.con-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.con-card {
    border: 1px solid var(--line-dark);
    border-radius: 14px;
    padding: 28px 26px;
    background: var(--ink-2);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}
.con-card:hover {
    transform: translateY(-4px);
    border-color: rgba(241, 90, 34, 0.4);
    background: var(--ink-3);
}
.con-card .ctag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--orange);
    border: 1px solid rgba(241, 90, 34, 0.35);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 16px;
}
.con-card h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 9px;
}
.con-card p {
    color: var(--inv-soft);
    font-size: 14.5px;
}
.process {
    background: var(--paper);
}
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}
.step {
    padding: 34px 28px 36px;
    border-right: 1px solid var(--line);
    position: relative;
}
.step:last-child {
    border-right: none;
}
.step .n {
    font-family: var(--disp);
    font-weight: 700;
    font-size: 14px;
    color: var(--orange);
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.step p {
    color: var(--text-soft);
    font-size: 14.5px;
}
.step::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 42px;
    height: 3px;
    background: var(--orange);
}
.why {
    background: var(--paper-2);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.why-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 34px 30px;
}
.why-card .ico {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: var(--orange-soft);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.why-card .ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--orange-deep);
}
.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}
.why-card p {
    color: var(--text-soft);
    font-size: 15px;
}
.news {
    background: var(--paper-2);
}
.news-feature {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(28px, 3.5vw, 40px);
    margin-bottom: 24px;
}
.news-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--orange-deep);
    background: var(--orange-soft);
    border-radius: 20px;
    padding: 5px 13px;
    margin-bottom: 16px;
}
.news-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.news-feature p {
    color: var(--text-soft);
    font-size: 15.5px;
    max-width: 70ch;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--paper);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
    border-color: #dcdcd6;
}
.news-card-img {
    aspect-ratio: 1/1;
    background: var(--paper-2);
}
.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}
.news-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 22px 24px;
}
.news-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-soft);
    margin-bottom: 14px;
}
.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.news-card p {
    color: var(--text-soft);
    font-size: 14.5px;
    flex: 1;
}
.news-card-link {
    margin-top: 16px;
    font-weight: 600;
    font-size: 13.5px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-card-link .arr {
    transition: transform 0.15s ease;
}
.news-card:hover .news-card-link {
    color: var(--orange-deep);
}
.news-card:hover .news-card-link .arr {
    transform: translateX(4px);
}
.news-empty {
    grid-column: 1/-1;
    color: var(--text-soft);
    font-size: 15px;
    text-align: center;
    padding: 10px 0;
}
.coverage {
    background: var(--ink);
    color: var(--inv);
    overflow: hidden;
}
.coverage .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: center;
}
.cov-media {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line-dark);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.cov-media img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.coverage h2 {
    color: #fff;
    font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}
.cov-sa {
    font-family: var(--disp);
    font-weight: 700;
    font-size: clamp(3.2rem, 6vw, 4.6rem);
    color: var(--orange);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.cov-list {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.cov-list li {
    list-style: none;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--inv-soft);
}
.cov-list .d {
    flex: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    margin-top: 8px;
    box-shadow: 0 0 0 4px rgba(241, 90, 34, 0.15);
}
.cta-sec {
    background: var(--paper-2);
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 70px);
    align-items: start;
}
.cta-copy h2 {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin-bottom: 18px;
}
.cta-copy h2 .accent {
    color: var(--orange);
}
.cta-copy .lead {
    margin-bottom: 34px;
}
.contact-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 8px;
}
.contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.contact-row .ci {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    flex: none;
}
.contact-row .ci svg {
    width: 18px;
    height: 18px;
    stroke: var(--orange-deep);
}
.contact-row .cl {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
    font-weight: 600;
}
.contact-row .cv {
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
}
.form-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(28px, 3.5vw, 40px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.07);
}
.form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}
.form-card .fc-sub {
    font-size: 14.5px;
    color: var(--text-soft);
    margin-bottom: 26px;
}
.field {
    margin-bottom: 16px;
}
.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
}
.field input,
.field textarea {
    width: 100%;
    font-family: var(--body);
    font-size: 15.5px;
    color: var(--text);
    background: var(--paper-2);
    border: 1.5px solid var(--line);
    border-radius: 9px;
    padding: 13px 15px;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
}
.field textarea {
    resize: vertical;
    min-height: 88px;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    font-size: 16px;
    padding: 16px;
}
.form-reassure {
    text-align: center;
    font-size: 13px;
    color: var(--text-soft);
    margin-top: 16px;
}
.form-success {
    display: none;
    text-align: center;
    padding: 30px 10px;
}
.form-success.show {
    display: block;
}
.form-success .ok {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--orange-soft);
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
}
.form-success .ok svg {
    width: 30px;
    height: 30px;
    stroke: var(--orange-deep);
}
.form-success h3 {
    margin-bottom: 8px;
}
.form-success p {
    color: var(--text-soft);
    font-size: 15px;
}
.footer {
    background: var(--ink);
    color: var(--inv);
    padding: 72px 0 0;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 54px;
    border-bottom: 1px solid var(--line-dark);
}
.foot-brand .brand {
    margin-bottom: 18px;
}
.foot-brand .brand img {
    height: 38px;
}
.foot-brand p {
    color: var(--inv-soft);
    font-size: 14.5px;
    max-width: 34ch;
}
.foot-tag {
    margin-top: 20px;
    font-family: var(--disp);
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}
.foot-tag .accent {
    color: var(--orange);
}
.foot-col h4 {
    font-family: var(--body);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--inv-soft);
    margin-bottom: 18px;
    font-weight: 600;
}
.foot-col a {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14.5px;
    padding: 6px 0;
    transition: color 0.2s ease;
}
.foot-col a:hover {
    color: var(--orange);
}
.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding: 26px 0;
}
.foot-bottom p {
    color: var(--inv-soft);
    font-size: 13.5px;
}
.foot-bottom .links {
    display: flex;
    gap: 22px;
}
.foot-bottom .links a {
    color: var(--inv-soft);
    font-size: 13.5px;
    transition: color 0.2s ease;
}
.foot-bottom .links a:hover {
    color: #fff;
}
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
}
.mobile-cta .btn {
    width: 100%;
    justify-content: center;
}
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
    opacity: 1;
    transform: none;
}
@media (max-width: 980px) {
    .announce-card {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        justify-content: flex-start;
        padding-top: 105px;
    }
    .brand img {
        height: 46px;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        margin-left: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        background: rgba(13, 15, 18, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        font-size: 21px;
        font-weight: 600;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
        z-index: 95;
    }
    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-links a {
        color: rgba(255, 255, 255, 0.88);
    }
    .nav-links a:hover {
        color: #fff;
    }
    .nav.scrolled .nav-links a {
        color: rgba(255, 255, 255, 0.88);
    }
    .nav.menu-open {
        background: rgba(13, 15, 18, 0.97);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: none;
    }
    .nav.menu-open .nav-toggle {
        color: #fff;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat:nth-child(2) {
        border-right: none;
    }
    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid var(--line-dark);
    }
    .pillars,
    .sol-grid,
    .con-grid,
    .why-grid,
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    .why-grid .why-card:last-child {
        grid-column: 1/-1;
    }
    .steps {
        grid-template-columns: 1fr 1fr;
    }
    .step:nth-child(2) {
        border-right: none;
    }
    .problem-grid,
    .feature .container,
    .consulting-top,
    .coverage .container,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .feature.flip .feat-media {
        order: 0;
    }
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
    .foot-brand {
        grid-column: 1/-1;
    }
    .mobile-cta {
        display: block;
    }
    .scrollcue {
        display: none;
    }
    body {
        padding-bottom: 74px;
    }
}
@media (max-width: 560px) {
    :root {
        --gutter: 18px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat {
        border-right: none !important;
        border-bottom: 1px solid var(--line-dark);
    }
    .pillars,
    .sol-grid,
    .con-grid,
    .why-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .step {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .field-row {
        grid-template-columns: 1fr;
    }
    .foot-grid,
    .foot-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .hero-cta .btn {
        flex: 1;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .scrollcue {
        animation: none;
    }
    * {
        transition: none !important;
    }
}