:root {
  --bg: #061014;
  --bg-soft: #09161a;
  --surface: #0d1b20;
  --surface-2: #10242a;
  --text: #f4faf9;
  --muted: #8ca2a3;
  --muted-2: #627779;
  --line: rgba(255, 255, 255, 0.1);
  --line-bright: rgba(255, 255, 255, 0.18);
  --accent: #20d7c5;
  --accent-2: #3b9cff;
  --blue: #59b8ff;
  --green: #57e49b;
  --gradient: linear-gradient(112deg, #29e0c4 0%, #20aec8 52%, #59b8ff 110%);
  --container: 1180px;
  --radius: 20px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, svg { max-width: 100%; }

::selection { background: #18b9aa; color: #fff; }

.container { width: min(calc(100% - 48px), var(--container)); margin: 0 auto; }
.section { padding: 124px 0; position: relative; }
.section-grid {
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center;
  animation: gridShift 28s linear infinite;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -100px;
  padding: 10px 16px;
  border-radius: 8px;
  background: #fff;
  color: #061014;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 16, 20, .76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .25s ease;
}
.site-header.scrolled { background: rgba(6, 16, 20, .94); }
.header-inner { height: 76px; display: flex; align-items: center; gap: 42px; }

.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-name { font-weight: 800; letter-spacing: 0; font-size: 15px; white-space: nowrap; }
.brand-name span { color: var(--accent); }
.brand-division {
  padding: 3px 7px;
  border: 1px solid rgba(32,215,197,.45);
  border-radius: 5px;
  color: #71e9dc;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.desktop-nav { display: flex; align-items: center; gap: 26px; margin-right: auto; }
.desktop-nav a { color: #aaa5b4; font-size: 13px; transition: color .2s; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { color: #b7b2c0; font-size: 13px; font-weight: 500; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.button-small { min-height: 42px; padding: 0 19px; font-size: 12px; }
.button-primary { position: relative; overflow: hidden; background: var(--gradient); color: #fff; box-shadow: 0 12px 36px rgba(24, 178, 178, .22); }
.button-primary::after { content: ""; position: absolute; inset: -60% auto -60% -35%; width: 28%; transform: rotate(16deg); background: rgba(255,255,255,.34); filter: blur(4px); animation: buttonShine 4.8s 1.4s ease-in-out infinite; }
.button-primary:hover { box-shadow: 0 16px 45px rgba(24, 178, 178, .34); }
.button-secondary { border-color: var(--line-bright); background: rgba(255,255,255,.025); }
.button-secondary:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.button-light { background: #fff; color: #111; }

.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px auto; background: #fff; transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu { position: fixed; z-index: 99; inset: 76px 0 0; padding: 28px 24px; background: rgba(6,16,20,.98); overflow-y: auto; }
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 15px 0; border-bottom: 1px solid var(--line); color: #d2ceda; font-size: 18px; }
.mobile-menu .button { margin-top: 28px; width: 100%; }

.hero { min-height: 780px; padding: 148px 0 76px; display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,16,20,.18), rgba(6,16,20,.72)); pointer-events: none; }
.hero-glow { position: absolute; width: 820px; height: 620px; right: -150px; top: 30px; background: radial-gradient(ellipse, rgba(22,173,186,.25), transparent 65%); filter: blur(4px); animation: glowDrift 8s ease-in-out infinite alternate; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; }

.eyebrow { margin: 0 0 22px; color: #54d9ce; font-size: 11px; line-height: 1.3; text-transform: uppercase; letter-spacing: .22em; font-weight: 700; }
.eyebrow > span { display: inline-block; width: 38px; height: 1px; margin-right: 10px; background: #23bfae; vertical-align: middle; }

h1, h2, h3, p { overflow-wrap: break-word; }
h1 { margin: 0; max-width: 720px; font-size: clamp(48px, 5.5vw, 76px); line-height: .99; letter-spacing: -.055em; font-weight: 760; }
h2 { margin: 0; font-size: clamp(38px, 4.2vw, 59px); line-height: 1.06; letter-spacing: -.045em; font-weight: 730; }
h3 { letter-spacing: -.02em; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: #667c7e; }
.hero-lead { max-width: 660px; margin: 28px 0 0; color: #9aabad; font-size: 18px; line-height: 1.65; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 24px; padding: 0; margin: 34px 0 0; list-style: none; color: #87999b; font-size: 12px; }
.hero-points li { display: flex; align-items: flex-start; gap: 9px; }
.hero-points i { width: 5px; height: 5px; margin-top: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); flex: 0 0 auto; animation: pulseDot 2.4s ease-in-out infinite; }

.dashboard { position: relative; min-width: 0; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: linear-gradient(145deg, rgba(13,38,43,.94), rgba(7,19,24,.9)); box-shadow: var(--shadow); backdrop-filter: blur(10px); transform-style: preserve-3d; transition: transform .25s ease, border-color .25s ease; }
.dashboard::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(32,215,197,.38), transparent 38%, rgba(89,184,255,.18)); }
.dashboard-top { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.dashboard-label { display: block; color: #72888a; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.dashboard-top strong { display: block; margin-top: 5px; font-size: 17px; }
.live-badge { display: flex; align-items: center; gap: 7px; color: #91a5a6; font-size: 10px; }
.live-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.traffic-summary { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-top: 18px; }
.traffic-summary > div { display: grid; }
.traffic-summary strong { font-size: 24px; line-height: 1; letter-spacing: -.04em; }
.traffic-summary span { color: #718689; font-size: 9px; }
.traffic-growth { display: flex; align-items: baseline; gap: 5px; color: #55dfcf !important; font-size: 14px !important; font-weight: 700; }
.traffic-growth small { color: #708588; font-size: 8px; font-weight: 500; }
.traffic-chart { position: relative; height: 230px; margin: 8px 0 0; overflow: hidden; }
.chart-lines { position: absolute; inset: 19px 0 27px; background: repeating-linear-gradient(0deg, transparent 0 44px, rgba(255,255,255,.055) 45px), repeating-linear-gradient(90deg, transparent 0 83px, rgba(255,255,255,.035) 84px); }
.traffic-bars { position: absolute; inset: 20px 12px 20px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; align-items: end; }
.traffic-bars > div { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.traffic-bars i { width: 30%; min-width: 17px; height: var(--value); border-radius: 4px 4px 1px 1px; background: linear-gradient(180deg, rgba(32,215,197,.28), rgba(32,174,200,.06)); border-top: 1px solid rgba(72,229,213,.55); transform: scaleY(0); transform-origin: bottom; animation: barGrow 1.1s var(--delay) cubic-bezier(.2,.75,.25,1) forwards; }
.traffic-bars em { position: absolute; bottom: calc(var(--value) + 23px); color: #6f898a; font-size: 8px; font-style: normal; opacity: 0; animation: fade .45s calc(var(--delay) + .75s) ease forwards; }
.traffic-bars b { height: 18px; padding-top: 5px; color: #6f8284; font-size: 8px; font-weight: 500; }
.traffic-line { position: absolute; z-index: 2; inset: 27px 12px 31px; width: calc(100% - 24px); height: calc(100% - 58px); overflow: visible; filter: drop-shadow(0 0 7px rgba(32,215,197,.35)); pointer-events: none; }
.chart-line { stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 2s .55s ease forwards; }
.chart-dot { fill: #20d7c5; opacity: 0; animation: pointIn .4s ease forwards; }
.dot-1 { animation-delay: .65s; }.dot-2 { animation-delay: .85s; }.dot-3 { animation-delay: 1.05s; }.dot-4 { animation-delay: 1.25s; }.dot-5 { animation-delay: 1.45s; }.dot-6 { animation-delay: 1.65s; fill: #59b8ff; filter: drop-shadow(0 0 8px #59b8ff); }
.traffic-chart figcaption { position: absolute; z-index: 3; right: 0; top: 0; color: #52676a; font-size: 7px; letter-spacing: .04em; }
.dashboard-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 18px; border-top: 1px solid var(--line); }
.dashboard-metrics > div { position: relative; padding-left: 12px; border-left: 1px solid rgba(32,215,197,.55); }
.dashboard-metrics span { display: block; color: #2baea5; font-size: 8px; font-weight: 700; }
.dashboard-metrics strong { display: block; margin-top: 2px; font-size: 11px; }
.dashboard-metrics small { display: block; color: #607577; font-size: 8px; }
.scroll-hint { position: absolute; z-index: 3; bottom: 25px; left: 50%; transform: translateX(-50%); color: #605b68; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.scroll-hint span { display: block; width: 1px; height: 27px; margin: 0 auto 7px; background: linear-gradient(#1fb9ad, transparent); }

.section-heading { display: grid; grid-template-columns: 1.7fr .7fr; align-items: end; gap: 90px; margin-bottom: 62px; }
.section-heading > p { margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.section-heading.compact { grid-template-columns: 1fr; }

.intro { background: #081418; }
.approach-track { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.approach-card { position: relative; min-height: 425px; padding: 30px 24px; border-right: 1px solid var(--line); transition: background .25s, transform .25s; }
.approach-card:first-child { border-left: 1px solid var(--line); }
.approach-card:hover { background: rgba(255,255,255,.025); transform: translateY(-5px); }
.approach-card.featured { background: linear-gradient(180deg, rgba(26,180,170,.16), transparent); }
.card-number { color: #536a6c; font-size: 10px; letter-spacing: .14em; }
.approach-icon { display: grid; place-items: center; width: 46px; height: 46px; margin: 65px 0 28px; border: 1px solid rgba(32,215,197,.42); border-radius: 50%; color: #58dfd2; font-size: 22px; box-shadow: inset 0 0 18px rgba(32,185,176,.1); transition: transform .35s ease, box-shadow .35s ease; }
.approach-card:hover .approach-icon { transform: rotate(12deg) scale(1.08); box-shadow: inset 0 0 20px rgba(32,185,176,.18), 0 0 22px rgba(32,185,176,.12); }
.approach-card h3 { margin: 0; font-size: 21px; }
.approach-card p { min-height: 92px; margin: 13px 0 20px; color: #8f8997; font-size: 13px; line-height: 1.7; }
.approach-card ul { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.approach-card li { padding: 4px 8px; border: 1px solid var(--line); border-radius: 5px; color: #777180; font-size: 9px; }

.services { background-color: var(--bg); }
.services::before { content: ""; position: absolute; width: 600px; height: 600px; left: -300px; top: 180px; background: radial-gradient(circle, rgba(22,158,169,.17), transparent 66%); }
.services-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.service-card { min-height: 315px; display: flex; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: 14px; background: rgba(9,23,28,.84); transition: border-color .25s, transform .25s, background .25s, box-shadow .25s; }
.service-card:hover { transform: translateY(-4px); border-color: rgba(32,215,197,.38); background: #0e2227; box-shadow: 0 18px 45px rgba(0,0,0,.2); }
.service-card.service-accent { background: linear-gradient(145deg, #178f91, #176a87); border-color: transparent; }
.service-index { color: #6f6978; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.service-accent .service-index { color: rgba(255,255,255,.65); }
.service-card h3 { margin: 53px 0 13px; font-size: 20px; line-height: 1.25; }
.service-card p { margin: 0 0 20px; color: #918b99; font-size: 13px; line-height: 1.7; }
.service-card strong { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); color: #c4becb; font-size: 10px; line-height: 1.5; }
.service-card a { margin-top: 16px; font-size: 12px; font-weight: 700; }
.service-accent p, .service-accent strong { color: rgba(255,255,255,.78); }

.ai-section { padding: 70px 0; background: #071216; }
.ai-shell { position: relative; overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; padding: 70px; border: 1px solid rgba(42,210,197,.27); border-radius: 28px; background: radial-gradient(circle at 8% 100%, rgba(22,151,162,.31), transparent 34%), linear-gradient(135deg, rgba(11,39,43,.96), rgba(7,18,22,.97)); box-shadow: 0 30px 120px rgba(0,0,0,.35); }
.ai-copy { position: relative; z-index: 2; }
.ai-copy h2 { font-size: clamp(37px, 4vw, 54px); }
.ai-copy > p:not(.eyebrow) { max-width: 510px; margin: 25px 0; color: #a39da9; font-size: 14px; }
.ai-integrations { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 30px 0; }
.ai-integrations span { padding: 6px 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 5px; color: #aaa4b1; font-size: 10px; }
.ai-integrations i { color: #287e82; font-style: normal; }
.ai-orbit { position: absolute; width: 520px; height: 520px; left: -230px; bottom: -330px; border: 1px solid rgba(32,215,197,.28); border-radius: 50%; animation: orbitSpin 24s linear infinite; }
.ai-orbit::before, .ai-orbit::after { content: ""; position: absolute; border: 1px solid rgba(32,215,197,.18); border-radius: 50%; }
.ai-orbit::before { inset: 50px; }.ai-orbit::after { inset: 105px; }
.ai-orbit span { position: absolute; right: 75px; top: 58px; width: 8px; height: 8px; border-radius: 50%; background: #36d9c8; box-shadow: 0 0 18px #36d9c8; }
.ai-cases { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.ai-cases article { display: flex; gap: 16px; min-height: 145px; padding: 24px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s; }
.ai-cases article:hover { background: rgba(255,255,255,.03); }
.ai-cases article > span { color: #28a69e; font-size: 9px; font-weight: 700; }
.ai-cases h3 { margin: 0 0 7px; font-size: 14px; }
.ai-cases p { margin: 0; color: #827c89; font-size: 11px; line-height: 1.55; }

.tools { background: #edf5f3; color: #0d191b; }
.tools .eyebrow { color: #16877f; }.tools .muted { color: #9aabaa; }
.tool-cloud { display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch; }
.tool-pill { display: inline-flex; align-items: center; justify-content: center; min-height: 82px; padding: 0 27px; border: 1px solid rgba(20,16,26,.12); border-radius: 10px; background: rgba(255,255,255,.5); color: #4c4752; font-size: 17px; letter-spacing: -.02em; transition: transform .2s, background .2s; }
.tool-pill:hover { transform: translateY(-3px); background: #fff; }
.tool-pill b { color: #101b1d; }.tool-pill i { margin-left: 7px; color: #168f88; font-size: 10px; font-style: normal; }
.tool-pill.pill-large { flex-grow: 1; }.tool-pill.pill-accent { background: #147f82; color: #fff; }.tool-pill.pill-blue { background: #123c4b; color: #83dff0; }
.tools-note { margin: 22px 0 0; color: #98929d; font-size: 10px; }

.expertise { background: #081418; overflow: hidden; }
.expertise-layout { min-height: 520px; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 80px; }
.expertise-copy > p:not(.eyebrow) { max-width: 480px; margin: 25px 0; color: var(--muted); }
.text-link { color: #58ddd0; font-size: 13px; font-weight: 600; }
.skill-map { position: relative; min-height: 490px; border-radius: 50%; background: radial-gradient(circle, rgba(24,166,171,.17), transparent 57%); }
.skill-map::before, .skill-map::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.075); border-radius: 50%; }
.skill-map::before { inset: 55px 100px; }.skill-map::after { inset: 125px 170px; }
.skill-core { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-content: center; width: 118px; height: 118px; transform: translate(-50%, -50%); border: 1px solid rgba(43,218,202,.48); border-radius: 50%; background: #0c2528; box-shadow: 0 0 55px rgba(22,142,151,.28); text-align: center; animation: corePulse 3.8s ease-in-out infinite; }
.skill-core span { color: #857f8c; font-size: 9px; }.skill-core strong { font-size: 23px; }
.skill-node { position: absolute; z-index: 3; min-width: 175px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 8px; background: rgba(10,28,33,.92); color: #bdcccd; font-size: 11px; box-shadow: 0 8px 24px rgba(0,0,0,.22); }
.skill-node b { margin-right: 8px; color: #2bb2a8; font-size: 8px; }
.node-1 { left: 4%; top: 9%; }.node-2 { right: 3%; top: 12%; }.node-3 { left: -2%; top: 45%; }.node-4 { right: 0; top: 47%; }.node-5 { left: 11%; bottom: 10%; }.node-6 { right: 6%; bottom: 7%; }

.benefits { background-color: #071115; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.benefit-card { min-height: 280px; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: rgba(9,24,29,.86); transition: transform .25s ease, border-color .25s ease; }
.benefit-card:hover { transform: translateY(-4px); border-color: rgba(32,215,197,.35); }
.benefit-card > span { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(32,215,197,.28); border-radius: 50%; background: rgba(24,164,164,.09); color: #52d8cc; font-size: 16px; font-weight: 700; }
.benefit-card h3 { margin: 62px 0 12px; font-size: 18px; }
.benefit-card p { margin: 0; color: #8d8795; font-size: 12px; line-height: 1.7; }

.audiences { background: #081418; }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.list-panel { padding: 48px; border: 1px solid var(--line); border-radius: 18px; background: #0d1c21; }
.list-panel h2 { margin-bottom: 36px; font-size: 37px; }
.check-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 0 0 16px 29px; border-bottom: 1px solid var(--line); color: #a09aa8; font-size: 13px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #45d7c8; font-weight: 700; }
.result-panel { background: linear-gradient(145deg, #0d3538, #0d1b20 62%); }
.result-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.result-tags span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #bcb6c4; font-size: 11px; }

.process { background: #edf5f3; color: #0f1b1d; }
.process .eyebrow { color: #16877f; }.process .muted { color: #95a5a4; }.process .section-heading > p { color: #6e7e7e; }
.process-list { display: grid; grid-template-columns: repeat(7, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(15,27,29,.14); }
.process-list li { position: relative; min-height: 260px; padding: 25px 17px; border-right: 1px solid rgba(15,27,29,.12); }
.process-list li:first-child { border-left: 1px solid rgba(15,27,29,.12); }
.process-list li::before { content: ""; position: absolute; top: -4px; left: 17px; width: 7px; height: 7px; border-radius: 50%; background: #1aa79f; }
.process-list span { color: #168b84; font-size: 9px; font-weight: 700; }
.process-list div { margin-top: 95px; }
.process-list h3 { margin: 0 0 8px; font-size: 14px; }
.process-list p { margin: 0; color: #7f7884; font-size: 10px; line-height: 1.55; }

.faq { background: #081418; }
.faq-layout { display: grid; grid-template-columns: .66fr 1.34fr; gap: 100px; }
.faq-intro p:not(.eyebrow) { color: var(--muted); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; list-style: none; cursor: pointer; font-size: 16px; font-weight: 600; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; color: #4fd7ca; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 650px; margin: -5px 0 25px; color: #918b98; font-size: 13px; }

.contact-section { position: relative; overflow: hidden; padding: 115px 0; background-color: #061014; }
.contact-glow { position: absolute; width: 850px; height: 600px; left: -250px; bottom: -300px; background: radial-gradient(circle, rgba(22,167,171,.3), transparent 64%); animation: glowDrift 9s ease-in-out infinite alternate-reverse; }
.contact-layout { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 100px; }
.contact-copy > p:not(.eyebrow) { max-width: 500px; margin: 26px 0 38px; color: var(--muted); }
.contact-agenda { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; color: #9aacad; font-size: 13px; }
.contact-agenda li { position: relative; padding-left: 23px; }
.contact-agenda li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 1px; background: var(--accent); }
.contact-channels { padding: 24px; border: 1px solid var(--line-bright); border-radius: 20px; background: rgba(9,26,31,.94); box-shadow: var(--shadow); }
.channel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 5px 20px; color: #afbec0; font-size: 13px; }
.channel-head > i { display: flex; align-items: center; gap: 7px; color: #718587; font-size: 8px; font-style: normal; text-transform: uppercase; letter-spacing: .12em; }
.channel-head b { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.channel { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 16px; min-height: 86px; padding: 15px 18px; border-top: 1px solid var(--line); transition: background .25s ease, transform .25s ease, border-color .25s ease; }
.channel:hover { z-index: 2; transform: translateX(5px); background: rgba(255,255,255,.035); border-color: rgba(32,215,197,.3); }
.channel-primary { margin-bottom: 7px; border: 1px solid rgba(54,224,207,.26); border-radius: 12px; background: linear-gradient(100deg, rgba(23,140,142,.31), rgba(20,91,118,.18)); }
.channel-mark { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(32,215,197,.28); border-radius: 50%; color: #59ddd1; font-size: 9px; font-weight: 700; letter-spacing: .05em; }
.channel > span:nth-child(2) { display: grid; }
.channel small { color: #6e8385; font-size: 8px; text-transform: uppercase; letter-spacing: .12em; }
.channel strong { margin-top: 2px; font-size: 14px; }
.channel > i { color: #46cfc3; font-style: normal; }
.contact-note { margin: 18px 5px 2px; color: #65797b; font-size: 10px; }

.site-footer { padding: 68px 0 24px; border-top: 1px solid var(--line); background: #040c0f; }
.footer-top { display: grid; grid-template-columns: 1.2fr .6fr 1fr; gap: 70px; padding-bottom: 58px; }
.footer-brand { margin-bottom: 18px; }
.footer-top > div > p { max-width: 300px; margin: 0; color: #6f6a75; font-size: 12px; }
.footer-top nav, .footer-contacts { display: grid; align-content: start; gap: 11px; }
.footer-top nav a, .footer-contacts a { color: #928c99; font-size: 12px; }
.footer-top a:hover { color: #fff; }
.footer-contacts > a:first-child { color: #fff; font-size: 15px; }
.footer-contacts > div { display: flex; gap: 16px; margin-top: 7px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-top: 20px; border-top: 1px solid var(--line); color: #57525d; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.noscript { position: fixed; z-index: 1000; bottom: 0; left: 0; right: 0; padding: 10px; background: #fff; color: #111; text-align: center; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fade { to { opacity: 1; } }
@keyframes barGrow { to { transform: scaleY(1); } }
@keyframes pointIn { from { opacity: 0; transform: scale(.4); transform-origin: center; } to { opacity: 1; transform: scale(1); } }
@keyframes glowDrift { from { transform: translate3d(-3%, -2%, 0) scale(.96); } to { transform: translate3d(4%, 3%, 0) scale(1.05); } }
@keyframes pulseDot { 50% { opacity: .45; box-shadow: 0 0 18px var(--accent); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes corePulse { 50% { box-shadow: 0 0 80px rgba(22,142,151,.38); } }
@keyframes buttonShine { 0%, 58% { transform: translateX(-220%) rotate(16deg); } 76%, 100% { transform: translateX(620%) rotate(16deg); } }
@keyframes gridShift { to { background-position: 72px 72px; } }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .hero-layout { gap: 35px; }
  .hero { min-height: 740px; }
  .approach-track { grid-template-columns: repeat(2, 1fr); }
  .approach-card:nth-child(2) { border-right: 1px solid var(--line); }
  .approach-card:nth-child(3), .approach-card:nth-child(4) { border-top: 1px solid var(--line); }
  .ai-shell { padding: 50px; gap: 40px; }
  .skill-map { transform: scale(.9); }
  .process-list { grid-template-columns: repeat(4, 1fr); border-left: 1px solid rgba(15,27,29,.12); }
  .process-list li:first-child { border-left: 0; }
  .process-list li:nth-child(n+5) { border-top: 1px solid rgba(15,27,29,.12); }
  .process-list li:nth-child(4) { border-right: 0; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 34px), var(--container)); }
  .section { padding: 90px 0; }
  .header-inner { height: 68px; }
  .site-header .header-actions { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .mobile-menu { inset: 68px 0 0; }
  .hero { min-height: auto; padding: 128px 0 88px; }
  .hero-layout { grid-template-columns: 1fr; gap: 58px; }
  .hero-copy { max-width: 700px; }
  .dashboard { max-width: 650px; width: 100%; }
  .section-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 48px; }
  .section-heading > p { max-width: 600px; }
  .services-grid, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-shell { grid-template-columns: 1fr; }
  .expertise-layout { grid-template-columns: 1fr; gap: 20px; }
  .skill-map { min-height: 470px; transform: none; }
  .split-cards { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .footer-top { grid-template-columns: 1.2fr .7fr; }
  .footer-contacts { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  html { scroll-padding-top: 70px; }
  body { font-size: 15px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .eyebrow { margin-bottom: 17px; font-size: 9px; }
  .eyebrow > span { width: 25px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .hero { padding-top: 110px; }
  .hero-lead { font-size: 15px; }
  .hero-buttons { display: grid; }
  .hero-buttons .button { width: 100%; }
  .hero-points { grid-template-columns: 1fr; }
  .dashboard { padding: 18px; border-radius: 16px; }
  .traffic-chart { height: 205px; }
  .traffic-bars { gap: 8px; }
  .traffic-bars em { display: none; }
  .dashboard-metrics small { display: none; }
  .scroll-hint { display: none; }
  .approach-track { grid-template-columns: 1fr; border-bottom: 0; }
  .approach-card { min-height: 0; padding: 26px 22px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .approach-card:nth-child(n) { border-top: 0; }
  .approach-icon { margin: 34px 0 22px; }
  .approach-card p { min-height: 0; }
  .services-grid, .benefit-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .ai-section { padding: 40px 0; }
  .ai-shell { width: min(calc(100% - 20px), var(--container)); padding: 38px 24px; border-radius: 20px; }
  .ai-cases { grid-template-columns: 1fr; }
  .ai-cases article { min-height: 120px; }
  .tool-pill { min-height: 64px; padding: 0 17px; font-size: 14px; flex-grow: 1; }
  .skill-map { min-height: auto; display: grid; grid-template-columns: 1fr; gap: 8px; padding-top: 25px; background: none; }
  .skill-map::before, .skill-map::after { display: none; }
  .skill-core { position: static; transform: none; margin: 0 auto 17px; }
  .skill-node { position: static; min-width: 0; width: 100%; }
  .benefit-card { min-height: 250px; }
  .list-panel { padding: 30px 24px; }
  .list-panel h2 { font-size: 33px; }
  .process-list { grid-template-columns: 1fr; border-top: 0; }
  .process-list li { min-height: 0; display: grid; grid-template-columns: 36px 1fr; gap: 15px; padding: 22px 15px; border-top: 1px solid rgba(15,27,29,.12); border-right: 0; }
  .process-list li::before { top: 29px; left: -4px; }
  .process-list li:nth-child(n) { border-top: 1px solid rgba(15,27,29,.12); }
  .process-list div { margin-top: 0; }
  .process-list h3 { font-size: 15px; }
  .process-list p { font-size: 11px; }
  .accordion summary { font-size: 14px; }
  .contact-section { padding: 76px 0; }
  .contact-channels { padding: 18px; }
  .channel { grid-template-columns: 44px 1fr auto; gap: 12px; padding: 14px 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 35px; }
  .footer-contacts { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ═══ Дополнение: процесс из 5 шагов ═══ */
.process-list.steps-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) {
  .process-list.steps-5 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .process-list.steps-5 { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════
   Компоненты обновлённой структуры SEO
   ═══════════════════════════════════════════ */

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── Демо управленческого отчёта в первом экране ── */
.report-demo {
  position: relative; z-index: 2;
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: linear-gradient(160deg, rgba(11,32,30,.96), rgba(6,17,14,.98));
  box-shadow: 0 30px 90px rgba(0,0,0,.4);
}
.report-demo-head { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--line); color: #7f9294; font-size: 11px; }
.report-demo-dots { display: flex; gap: 5px; }
.report-demo-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.14); }
.report-demo-body { padding: 20px; display: grid; gap: 10px; }
.rd-row { padding: 14px 16px; border-left: 2px solid rgba(255,255,255,.12); border-radius: 0 9px 9px 0; background: rgba(255,255,255,.03); }
.rd-row small { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.rd-row p { margin: 0; color: #cfd8d6; font-size: 13px; line-height: 1.5; }
.rd-row.is-done { border-left-color: #2ad2c5; } .rd-row.is-done small { color: #45d7c8; }
.rd-row.is-changed { border-left-color: #7bd68f; } .rd-row.is-changed small { color: #7bd68f; }
.rd-row.is-next { border-left-color: #59b8ff; } .rd-row.is-next small { color: #59b8ff; }
.rd-row.is-risk { border-left-color: #f5a623; } .rd-row.is-risk small { color: #f5a623; }
.report-demo-note { margin: 0; padding: 13px 20px 16px; border-top: 1px solid rgba(255,255,255,.06); color: #6d7d7e; font-size: 10.5px; line-height: 1.5; }

/* ── Слои «что входит» ── */
.layer-list { display: grid; gap: 10px; }
.layer-item { border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); overflow: hidden; }
.layer-item summary {
  display: flex; align-items: center; gap: 18px; padding: 22px 26px;
  list-style: none; cursor: pointer;
}
.layer-item summary::-webkit-details-marker { display: none; }
.layer-no { flex: 0 0 auto; color: #45d7c8; font-size: 10px; font-weight: 700; letter-spacing: .1em; }
.layer-text { flex: 1; min-width: 0; }
.layer-text b { display: block; margin-bottom: 3px; font-size: 17px; }
.layer-text small { display: block; color: #85929a; font-size: 12.5px; line-height: 1.45; }
.layer-toggle {
  flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px;
  border: 1px solid var(--line); border-radius: 50%; color: #45d7c8; transition: transform .2s;
}
.layer-item[open] .layer-toggle { transform: rotate(45deg); }
.layer-body { padding: 0 26px 24px 62px; }
.layer-body p { margin: 0 0 10px; color: #9aa4a8; font-size: 13.5px; line-height: 1.65; }
.layer-example { padding: 14px 16px; border-left: 2px solid #2ad2c5; border-radius: 0 8px 8px 0; background: rgba(42,210,197,.06); color: #cfd8d6 !important; font-size: 13px !important; }
.layer-example b { color: #45d7c8; }

.honest-note {
  margin-top: 22px; padding: 20px 24px;
  border: 1px dashed rgba(255,255,255,.14); border-radius: 12px;
}
.honest-note p { margin: 0; color: #9aa4a8; font-size: 13.5px; line-height: 1.65; }
.honest-note b { color: #cfd8d6; }

/* ── Роли ── */
.roles-section { padding: 96px 0; }
.roles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.role-card { padding: 28px 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.role-card.is-us { border-color: rgba(42,210,197,.32); background: rgba(42,210,197,.05); }
.role-card h3 { margin: 0 0 16px; font-size: 16px; }
.role-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.role-card li { position: relative; padding-left: 20px; color: #9aa4a8; font-size: 12.5px; line-height: 1.5; }
.role-card li::before { content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 1px; background: #2ad2c5; }
.role-note { margin: 14px 0 0; padding-top: 13px; border-top: 1px solid var(--line); color: #7f8c92; font-size: 11.5px; line-height: 1.5; }

/* ── Модуль ── */
.module-section { padding: 96px 0; }
.nb-module-scenarios { padding: 24px 26px; border-bottom: 1px solid var(--nb-line); }
.nb-options-row { grid-template-columns: repeat(2, 1fr); }
.view-switch { display: flex; gap: 5px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.05); }
.view-btn {
  padding: 8px 15px; border: 0; border-radius: 999px; background: transparent;
  color: #85929a; font-family: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer; transition: .2s;
}
.view-btn:hover { color: #cfd8d6; }
.view-btn.is-active { background: #2ad2c5; color: #06110f; }
.view-btn:focus-visible { outline: 2px solid #2ad2c5; outline-offset: 2px; }

.chain-steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.chain-steps li { display: flex; gap: 14px; padding: 14px 16px; border: 1px solid var(--nb-line); border-radius: 11px; background: rgba(0,0,0,.2); }
.chain-steps b {
  flex: 0 0 auto; display: grid; place-items: center; width: 24px; height: 24px;
  border-radius: 50%; background: rgba(42,210,197,.14); color: #45d7c8; font-size: 11px;
}
.chain-steps div { min-width: 0; }
.chain-steps small { display: block; margin-bottom: 4px; color: #7f8c92; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.chain-steps span { display: block; color: #cfd8d6; font-size: 13px; line-height: 1.5; }

/* ── Цикл работы ── */
.cycle-track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin: 0; padding: 0; list-style: none; gap: 10px;
}
.cycle-track li { position: relative; padding: 24px 22px; border: 1px solid rgba(15,27,29,.14); border-radius: 14px; background: rgba(255,255,255,.5); }
.cycle-track > li > span { color: #168b84; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.cycle-track div { margin-top: 14px; }
.cycle-track h3 { margin: 0 0 7px; font-size: 15px; }
.cycle-track p { margin: 0 0 10px; color: #6f7b7d; font-size: 12.5px; line-height: 1.55; }
.cycle-track small { display: block; padding-top: 10px; border-top: 1px solid rgba(15,27,29,.1); color: #168b84; font-size: 11px; font-weight: 600; }

/* ── Демо отчёта ── */
.demo-section { padding: 96px 0; }
.report-viewer { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.02); }
.report-screen { padding: 28px; border: 1px solid var(--line); border-radius: 13px; background: rgba(0,0,0,.28); }
.report-screen h3 { margin: 0 0 16px; font-size: 18px; }
.rs-lead { margin: 0 0 18px; color: #cfd8d6; font-size: 14px; line-height: 1.6; }
.rs-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.rs-list li { position: relative; padding-left: 22px; color: #9aa4a8; font-size: 13.5px; line-height: 1.6; }
.rs-list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 1px; background: #2ad2c5; }
.rs-list b { color: #cfd8d6; }
.rs-note { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: #7f8c92; font-size: 12.5px; line-height: 1.6; }
.report-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.report-table th, .report-table td { padding: 11px 13px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.07); vertical-align: top; }
.report-table th { color: #7f8c92; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.report-table td { color: #9aa4a8; line-height: 1.5; }
.report-table td:first-child { color: #e6ecea; font-weight: 600; }
.st { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.st-ok { background: rgba(42,210,197,.14); color: #45d7c8; }
.st-wait { background: rgba(245,166,35,.14); color: #f5a623; }

/* ── Сроки ── */
.timing-section { padding: 96px 0; }
.timing-track {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin: 0; padding: 0; list-style: none;
}
.timing-track li { position: relative; padding: 24px 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.timing-track li::after {
  content: "→"; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  color: #4a5a5c; font-size: 15px; z-index: 2;
}
.timing-track li:last-child::after { display: none; }
.timing-track > li > span { color: #45d7c8; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.timing-track div { margin-top: 16px; }
.timing-track h3 { margin: 0 0 7px; font-size: 15px; }
.timing-track p { margin: 0; color: #85929a; font-size: 12.5px; line-height: 1.55; }

/* ── Факторы стоимости ── */
.factor-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin: 0 0 32px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.factor-strip > div { min-height: 128px; padding: 22px 20px; border-right: 1px solid var(--line); }
.factor-strip > div:first-child { border-left: 1px solid var(--line); }
.factor-strip span { display: block; color: #45d7c8; font-size: 9px; font-weight: 700; letter-spacing: .08em; }
.factor-strip strong { display: block; margin-top: 24px; font-size: 14.5px; }
.factor-strip small { display: block; margin-top: 5px; color: #7f8c92; font-size: 11px; line-height: 1.45; }

.check-list b { color: #e6ecea; }
.panel-note { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: #7f8c92; font-size: 12.5px; line-height: 1.6; }

/* ── Адаптив ── */
@media (max-width: 1080px) {
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .cycle-track { grid-template-columns: repeat(2, 1fr); }
  .timing-track { grid-template-columns: repeat(2, 1fr); }
  .timing-track li:nth-child(2)::after { display: none; }
  .factor-strip { grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line); }
  .factor-strip > div:first-child { border-left: 0; }
  .factor-strip > div:nth-child(n+4) { border-top: 1px solid var(--line); }
}
@media (max-width: 820px) {
  .nb-options-row { grid-template-columns: 1fr; }
  .roles-section, .module-section, .demo-section, .timing-section { padding: 64px 0; }
  .layer-body { padding: 0 20px 22px 20px; }
}
@media (max-width: 560px) {
  .roles-grid, .cycle-track, .timing-track, .factor-strip { grid-template-columns: 1fr; }
  .timing-track li::after { display: none; }
  .factor-strip > div { min-height: 0; padding: 18px; }
  .factor-strip strong { margin-top: 12px; }
  .report-viewer { padding: 18px 14px; }
  .report-screen { padding: 20px 16px; }
  .layer-item summary { padding: 18px 16px; gap: 12px; }
  .role-card, .honest-note { padding: 22px 18px; }
  .nb-module-scenarios { padding: 18px 16px; }
  .view-switch { width: 100%; }
  .view-btn { flex: 1; }
  /* Широкая таблица прокручивается внутри контейнера */
  .report-table { display: block; overflow-x: auto; white-space: nowrap; }
}
