:root {
  --ink: #091526;
  --night: #070d18;
  --panel: #0d1a2e;
  --muted: #64748b;
  --line: rgba(10, 22, 40, 0.1);
  --white: #ffffff;
  --soft: #f5f7fb;
  --blue: #1f5eff;
  --cyan: #05b8d9;
  --green: #24c785;
  --amber: #f6b73c;
  --red: #ef6b6b;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: inherit;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.narrow {
  max-width: 780px;
}

.center {
  text-align: center;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.brand-mark {
  width: 148px;
  height: 76px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 6px 14px 12px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13.5px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 48px rgba(31, 94, 255, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  place-items: center;
  padding: 11px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--white);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 132px 0 86px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero-bg,
.hero-bg::before,
.hero-bg::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    var(--night);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 82% 68% at 50% 26%, #000 42%, transparent 92%);
}

.hero-bg::before {
  content: "";
  width: 78vw;
  height: 52vw;
  max-width: 1100px;
  max-height: 720px;
  left: 50%;
  top: -20%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 94, 255, 0.2), transparent 70%);
}

.hero-bg::after {
  content: "";
  width: 42vw;
  height: 42vw;
  right: -5%;
  top: 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(5, 184, 217, 0.16), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border-radius: 999px;
  color: #76e7f6;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow.dark {
  color: var(--blue);
  border-color: rgba(10, 22, 40, 0.1);
  background: rgba(10, 22, 40, 0.035);
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(5, 184, 217, 0.14);
}

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

h1 {
  margin-top: 28px;
  max-width: 660px;
  font-size: clamp(2.65rem, 5vw, 4.75rem);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
}

h1 span,
.cta-section h2 span {
  color: transparent;
  background: linear-gradient(90deg, #8cf0ff, #4b84ff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy p {
  margin-top: 24px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-note {
  margin-top: 16px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.pricing-note {
  color: #9af4ff;
  font-weight: 800;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
}

.hero-stats div {
  min-width: 120px;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
}

.hero-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12.5px;
}

.dashboard-wrap {
  position: relative;
}

.dashboard-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(13, 26, 46, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36), 0 18px 80px rgba(31, 94, 255, 0.22);
  backdrop-filter: blur(18px);
}

.hero-dashboard {
  padding: 20px;
  transform: rotate(1deg);
}

.window-bar,
.card-head,
.alert-row,
.audit-bottom,
.panel-columns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.window-bar {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.dots {
  display: flex;
  gap: 6px;
}

.dots span,
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}

.dots span:nth-child(2) {
  background: var(--amber);
}

.dots span:nth-child(3),
.status-dot {
  background: var(--green);
}

.metric-grid,
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric-grid article,
.kpi-grid article,
.bars-card,
.score-card,
.line-card,
.ai-grid article,
.process-map,
.audit-card,
.panel-columns > div,
.service-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.metric-grid article,
.kpi-grid article {
  padding: 14px;
}

.metric-grid span,
.kpi-grid span,
.card-head span,
.score-card > span,
.audit-card span,
.panel-columns span {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11.5px;
  font-weight: 700;
}

.metric-grid strong,
.kpi-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 22px;
}

.metric-grid em,
.kpi-grid em {
  display: block;
  margin-top: 5px;
  color: var(--green);
  font-size: 11px;
  font-style: normal;
}

.metric-grid .cyan,
.kpi-grid .cyan {
  color: #78e9f6;
}

.chart-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 12px;
  margin-top: 12px;
}

.bars-card,
.score-card,
.line-card {
  padding: 15px;
}

.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 78px;
  margin-top: 12px;
}

.bars span,
.mini-bars i {
  flex: 1;
  min-width: 8px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.score-card {
  display: grid;
  place-items: center;
  text-align: center;
}

.ring {
  --value: 65;
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-top: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--panel) 54%, transparent 56%),
    conic-gradient(var(--cyan) calc(var(--value) * 1%), rgba(255, 255, 255, 0.08) 0);
}

.ring strong {
  color: var(--white);
  font-size: 17px;
}

.line-card {
  margin-top: 12px;
}

.line-card small,
.card-head small {
  color: #78e9f6;
  font-size: 10.5px;
  font-weight: 800;
}

.line-card svg {
  width: 100%;
  height: 78px;
  margin-top: 8px;
}

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

.area {
  fill: rgba(5, 184, 217, 0.14);
}

.alert-row {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(246, 183, 60, 0.18);
  border-radius: 14px;
  color: rgba(255, 246, 219, 0.92);
  background: rgba(246, 183, 60, 0.08);
  font-size: 12px;
}

.alert-row b {
  color: #ffd06d;
}

.floating-note {
  position: absolute;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--white);
  background: rgba(13, 26, 46, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 12px;
}

.floating-note span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10.5px;
}

.floating-note.top {
  left: -34px;
  top: -28px;
}

.floating-note.bottom {
  right: -28px;
  bottom: -22px;
}

.scroll-hint {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
}

.section {
  padding: 116px 0;
}

.compact-section {
  padding: 82px 0;
}

.section.light {
  color: var(--ink);
  background: var(--white);
}

.section.soft {
  color: var(--ink);
  background: var(--soft);
}

.section.dark,
.cta-section,
.footer {
  color: var(--white);
  background: var(--night);
}

.section h2,
.cta-section h2 {
  margin-top: 22px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.section p,
.cta-section p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.72;
}

.section.dark p,
.cta-section p {
  color: rgba(255, 255, 255, 0.52);
}

.source-cloud,
.automation-flow,
.integration-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}

.source-cloud span,
.integration-cloud span,
.automation-flow span,
.pill-list span,
.ecosystem span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(10, 22, 40, 0.05);
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quick-points span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(10, 22, 40, 0.055);
}

.integration-cloud {
  max-width: 980px;
}

.integration-cloud span {
  border-color: rgba(31, 94, 255, 0.16);
  background: rgba(31, 94, 255, 0.055);
  color: var(--blue);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1fr 0.92fr;
}

.split h2 {
  max-width: 570px;
}

.split p {
  max-width: 590px;
}

.symptom-list {
  display: grid;
  gap: 12px;
}

.symptom-list div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(10, 22, 40, 0.055);
}

.accompaniment-list div {
  border-color: rgba(31, 94, 255, 0.14);
}

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

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.pillar-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(31, 94, 255, 0.14);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(10, 22, 40, 0.07);
}

.pillar-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(31, 94, 255, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.pillar-grid h3 {
  margin-top: 28px;
  font-size: 24px;
}

.pillar-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 24px;
  border: 1px solid rgba(31, 94, 255, 0.16);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(10, 22, 40, 0.075);
}

.mid-cta h3 {
  font-size: 22px;
}

.mid-cta p {
  max-width: 640px;
  margin-top: 8px;
  font-size: 15px;
}

.mid-cta .button {
  flex: 0 0 auto;
}

.pricing-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  margin-top: 36px;
  padding: 28px;
  border: 1px solid rgba(31, 94, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 255, 0.92));
  box-shadow: 0 22px 56px rgba(10, 22, 40, 0.085);
}

.pricing-block h2 {
  margin-top: 18px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.pricing-block p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

.pricing-points {
  display: grid;
  gap: 12px;
}

.pricing-points article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.pricing-points h3 {
  font-size: 17px;
}

.pricing-points p {
  margin-top: 8px;
  font-size: 13.5px;
}

.pricing-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.examples-block {
  margin-top: 54px;
}

.examples-heading {
  max-width: 780px;
}

.examples-heading h2 {
  margin-top: 18px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.14;
}

.examples-heading p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.examples-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(10, 22, 40, 0.055);
}

.examples-grid h3 {
  font-size: 18px;
  line-height: 1.3;
}

.examples-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.integration-note {
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(31, 94, 255, 0.18);
  border-radius: 16px;
  background: rgba(31, 94, 255, 0.06);
}

.integration-note h3 {
  font-size: 20px;
}

.integration-note p {
  max-width: 880px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.integration-examples {
  margin-top: 14px;
}

.examples-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.service-grid article {
  min-height: 215px;
  padding: 24px;
  border-color: var(--line);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(10, 22, 40, 0.055);
}

.service-grid article span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.service-grid h3,
.ai-grid h3 {
  margin-top: 22px;
  font-size: 20px;
}

.service-grid p,
.ai-grid p {
  margin-top: 12px;
  font-size: 14px;
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.credibility-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(10, 22, 40, 0.055);
}

.credibility-grid h3 {
  font-size: 19px;
}

.credibility-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.case-grid article {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(10, 22, 40, 0.055);
}

.case-grid h3 {
  font-size: 19px;
}

.case-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.case-grid a {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 54px;
}

.method-flow article {
  min-height: 165px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.method-flow strong {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.method-flow span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.55;
}

.audit-card {
  padding: 24px;
  border-color: var(--line);
  background: var(--ink);
  color: var(--white);
}

.audit-score {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-score strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.15;
}

.process-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
}

.process-map span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.process-map b {
  color: #87effb;
}

.audit-bottom {
  margin-top: 18px;
}

.audit-bottom > div {
  flex: 1;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.audit-bottom strong {
  display: block;
  margin-top: 7px;
  font-size: 22px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.automation-flow {
  position: relative;
  align-items: center;
}

.automation-flow span {
  color: var(--blue);
  border-color: rgba(31, 94, 255, 0.2);
  background: rgba(31, 94, 255, 0.07);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.faq-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(10, 22, 40, 0.055);
}

.faq-grid h3 {
  font-size: 18px;
  line-height: 1.35;
}

.faq-grid p {
  margin-top: 14px;
  font-size: 14px;
}

.ai-grid article {
  min-height: 240px;
  padding: 22px;
}

.ai-grid h3 {
  margin-top: 0;
}

.ai-grid strong {
  display: block;
  margin-top: 18px;
  color: #8cf0ff;
  font-size: 13px;
}

.full-dashboard {
  padding: 20px;
  box-shadow: 0 28px 80px rgba(10, 22, 40, 0.18);
}

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

.panel-columns {
  align-items: stretch;
  margin-top: 12px;
}

.panel-columns > div {
  flex: 1;
  padding: 16px;
}

.mini-bars {
  display: flex;
  align-items: end;
  height: 96px;
  gap: 8px;
  margin-top: 16px;
}

.panel-columns p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.2;
}

.ecosystem {
  display: grid;
  gap: 28px;
  justify-items: center;
  margin-top: 44px;
}

.ecosystem strong,
.ecosystem b {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
}

.ecosystem strong {
  border: 2px solid rgba(31, 94, 255, 0.2);
  background: rgba(31, 94, 255, 0.06);
}

.ecosystem b {
  color: var(--white);
  background: var(--ink);
}

.ecosystem div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 720px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(31, 94, 255, 0.2), transparent 58%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  max-width: 920px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-line {
  margin-top: 20px;
  font-size: 14px;
}

.contact-line a {
  color: var(--white);
  font-weight: 800;
}

.footer {
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer span,
.footer small {
  color: rgba(255, 255, 255, 0.35);
}

.footer-contact {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

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

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #19c463;
  box-shadow: 0 18px 44px rgba(25, 196, 99, 0.32), 0 12px 32px rgba(0, 0, 0, 0.22);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .mobile-menu {
    position: absolute;
    inset: calc(100% - 8px) 20px auto;
    z-index: 49;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(7, 13, 24, 0.96);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu a {
    padding: 13px 12px;
    border-radius: 10px;
    color: var(--white);
    font-weight: 700;
  }

  .mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

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

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

  .mid-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-block {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pillar-grid,
  .examples-grid,
  .credibility-grid,
  .case-grid,
  .faq-grid,
  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand-mark {
    width: 120px;
    height: 64px;
    padding: 5px 11px 10px;
  }

  .hero {
    min-height: auto;
    padding: 110px 0 70px;
  }

  h1 {
    font-size: 2.65rem;
  }

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

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .button {
    width: 100%;
  }

  .hero-note {
    max-width: none;
  }

  .examples-cta .button {
    width: 100%;
  }

  .mid-cta {
    padding: 20px;
  }

  .pricing-block {
    padding: 20px;
  }

  .pricing-cta .button {
    width: 100%;
  }

  .mid-cta .button {
    width: 100%;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stats div {
    flex: 1 1 140px;
  }

  .dashboard-card {
    border-radius: 14px;
  }

  .hero-dashboard {
    padding: 14px;
    transform: none;
  }

  .floating-note {
    display: none;
  }

  .metric-grid,
  .kpi-grid,
  .chart-row,
  .process-map,
  .panel-columns {
    grid-template-columns: 1fr;
  }

  .panel-columns {
    display: grid;
  }

  .section,
  .cta-section {
    padding: 78px 0;
  }

  .compact-section {
    padding: 66px 0;
  }

  .section h2,
  .cta-section h2 {
    font-size: 2.1rem;
  }

  .service-grid,
  .pillar-grid,
  .examples-grid,
  .credibility-grid,
  .case-grid,
  .faq-grid,
  .ai-grid,
  .method-flow {
    grid-template-columns: 1fr;
  }

  .audit-bottom,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }

  .audit-bottom > div {
    width: 100%;
  }

  .scroll-hint {
    display: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 15px;
  }
}
