:root {
  --ink: #0c1d2e;
  --muted: #5e7184;
  --soft: #f5f9fb;
  --line: #dce8ee;
  --line-dark: #bfd6df;
  --accent: #0089a7;
  --accent-2: #12b8a6;
  --accent-3: #2879ff;
  --success: #12b886;
  --warning: #f97316;
  --white: #ffffff;
  --shadow: 0 16px 45px rgba(14, 42, 62, 0.09);
  --shadow-soft: 0 8px 24px rgba(14, 42, 62, 0.07);
  --radius: 8px;
  --font-sans: "Onest", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 22% 6%, rgba(0, 137, 167, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 42%, #ffffff 100%);
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--font-sans);
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.site-icon {
  display: block;
  width: var(--icon-size, 20px);
  height: var(--icon-size, 20px);
  object-fit: contain;
  flex: 0 0 auto;
}

.btn .site-icon {
  --icon-size: 18px;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.nav > *,
.hero-grid > *,
.section-layout > *,
.split-content > *,
.results-grid > *,
.case-list > *,
.pricing-grid > *,
.clients-row > *,
.faq-grid > *,
.articles > *,
.features-band > *,
.cta-grid > *,
.footer-grid > * {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 232, 238, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  max-width: 100%;
}

.brand-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.footer a,
.text-link {
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer a:hover,
.text-link:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-stack {
  display: grid;
  gap: 3px;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.contact-stack a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-stack .site-icon {
  --icon-size: 16px;
}

.mobile-nav-actions {
  display: none;
}

.mobile-call {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.mobile-call-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  flex: 0 0 auto;
}

.mobile-call-icon::before {
  content: "☎";
  font-size: 13px;
  line-height: 1;
  transform: rotate(-14deg);
}

.mobile-call-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(0, 137, 167, 0.32);
  border-radius: inherit;
  animation: call-ring 1.45s ease-out infinite;
}

@keyframes call-ring {
  0% {
    opacity: 0.9;
    transform: scale(0.72);
  }

  100% {
    opacity: 0;
    transform: scale(1.32);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 44px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 0 22px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 22px rgba(0, 137, 167, 0.22);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: #006f89;
  border-color: #006f89;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  box-shadow: none;
}

.btn.secondary:hover {
  background: #eef8fb;
  color: #006f89;
}

.icon-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 14px 0 20px;
}

.mobile-menu.open {
  display: grid;
  gap: 12px;
}

main#top {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

main#top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: clamp(700px, 45vw, 920px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.16) 42%, rgba(255, 255, 255, 0.56) 73%, rgba(255, 255, 255, 0.92) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.14) 42%, rgba(247, 251, 253, 0.30) 70%, rgba(247, 251, 253, 0) 100%),
    url("./content/background.webp") left top / 100% auto no-repeat;
  opacity: 0.94;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.66) 72%, rgba(0, 0, 0, 0.18) 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.66) 72%, rgba(0, 0, 0, 0.18) 88%, transparent 100%);
  pointer-events: none;
}

main#top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: clamp(740px, 44vw, 920px);
  background:
    radial-gradient(ellipse at 17% 56%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 34%, rgba(255, 255, 255, 0.62) 52%, rgba(255, 255, 255, 0.94) 68%, #ffffff 82%, #ffffff 100%);
  pointer-events: none;
}

main#top > section {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  padding: 46px 0 28px;
  overflow: visible;
  background: transparent;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 6px;
  background: #e9f7fb;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

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

.hero h1 {
  max-width: 640px;
  margin-top: 22px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 800;
}

.hero h1 strong {
  color: var(--accent);
}

.lead {
  max-width: 560px;
  margin-top: 24px;
  color: #334b5f;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  max-width: 560px;
}

.stat {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
}

.stat-icon,
.feature-icon,
.service-icon,
.process-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 137, 167, 0.48);
  border-radius: 8px;
  color: var(--accent);
  background: #f3fbfd;
  flex: 0 0 auto;
}

.stat-icon .site-icon,
.feature-icon .site-icon {
  --icon-size: 24px;
}

.service-icon .site-icon {
  --icon-size: 20px;
}

.stat strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.dashboard {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 22px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.dashboard-title {
  font-weight: 800;
  font-size: 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  padding: 5px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

button.chip {
  cursor: pointer;
}

.chip.is-active,
.chip:hover,
.chip:focus-visible {
  border-color: rgba(0, 137, 167, 0.55);
  background: #eefbfe;
  color: var(--accent);
  transform: translateY(-1px);
}

.chip-logo {
  width: auto;
  height: 14px;
  object-fit: contain;
  flex: 0 0 auto;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.dot.blue {
  background: var(--accent-3);
}

.dot.red {
  background: #ef4444;
}

.dot.orange {
  background: var(--warning);
}

.chart-shell {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 20px;
  align-items: stretch;
}

.chart-area {
  position: relative;
  min-height: 250px;
  border-right: 1px solid var(--line);
  padding-right: 12px;
}

.interactive-chart {
  position: relative;
  width: 100%;
  min-height: 260px;
  isolation: isolate;
}

.chart-canvas {
  width: 100%;
  height: auto;
  overflow: visible;
  touch-action: none;
}

.chart-line,
.chart-area-fill,
.chart-point,
.chart-cursor {
  transition: opacity 0.22s ease, stroke-width 0.22s ease, transform 0.22s ease, fill 0.22s ease;
}

.chart-line {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 10px rgba(0, 137, 167, 0.12));
}

.chart-line.is-muted,
.chart-area-fill.is-muted,
.chart-point.is-muted {
  opacity: 0.18;
}

.chart-line.is-hidden,
.chart-area-fill.is-hidden,
.chart-point.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.chart-point {
  stroke: #ffffff;
  stroke-width: 3;
  cursor: pointer;
}

.chart-point.is-active {
  transform: scale(1.35);
  transform-box: fill-box;
  transform-origin: center;
  stroke-width: 4;
}

.chart-hotspot {
  fill: transparent;
  cursor: crosshair;
}

.chart-cursor {
  stroke: rgba(0, 137, 167, 0.38);
  stroke-width: 1.4;
  stroke-dasharray: 4 5;
  opacity: 0;
  pointer-events: none;
}

.chart-cursor.is-visible {
  opacity: 1;
}

.chart-tooltip {
  position: absolute;
  z-index: 30;
  min-width: 150px;
  max-width: min(240px, calc(100% - 24px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(10px);
}

.chart-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, -18px);
}

.chart-tooltip strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.chart-tooltip span {
  display: block;
  color: var(--muted);
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  row-gap: 8px;
  margin: 8px 0 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.legend-item.is-disabled {
  opacity: 0.38;
}

.legend-item:hover,
.legend-item:focus-visible {
  color: var(--accent);
}

.metrics {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 10px 0;
}

.metric + .metric {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.metric {
  border-radius: 8px;
  padding: 10px 10px 10px 0;
  cursor: pointer;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.metric:hover,
.metric:focus-visible,
.metric.is-active {
  background: #f1fbfd;
  padding-left: 10px;
  outline: none;
}

.metric small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.metric strong {
  display: block;
  margin-top: 5px;
  color: var(--success);
  font-size: 26px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.search-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.search-card {
  display: grid;
  grid-template-columns: minmax(76px, auto) minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  gap: 12px;
  min-height: 66px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
  font-size: 15px;
  text-align: left;
  line-height: 1.18;
  padding: 12px 18px;
}

.search-logo {
  width: 76px;
  height: auto;
  max-height: 28px;
  object-fit: contain;
  justify-self: center;
}

.search-card .search-logo[src*="google"] {
  width: 74px;
  max-height: 26px;
}

.features-band {
  position: relative;
  z-index: 1;
  margin: 16px auto 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
}

@media (min-width: 2300px), (max-resolution: 0.85dppx) {
  main#top::before {
    height: clamp(460px, 16vw, 620px);
    opacity: 0.86;
  }

  main#top::after {
    height: clamp(500px, 18vw, 700px);
    background:
      radial-gradient(ellipse at 17% 58%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 28%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 32%, rgba(255, 255, 255, 0.88) 58%, #ffffff 78%, #ffffff 100%);
  }
}

.feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  min-width: 0;
}

.feature:last-child {
  border-right: 0;
}

.feature h3 {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 7px;
}

.feature p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 650;
}

.section {
  padding: 34px 0;
}

.section-layout {
  display: grid;
  grid-template-columns: 225px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.section-kicker {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
}

.section-title {
  font-size: 30px;
  line-height: 1.13;
  font-weight: 800;
}

.section-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

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

.process-line + .content-panel {
  margin-top: 28px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 38px;
  right: 38px;
  border-top: 1px dashed rgba(0, 137, 167, 0.55);
}

.process-step {
  position: relative;
  background: transparent;
  min-width: 0;
}

.process-number {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  background: #ffffff;
  color: var(--accent);
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.process-step p {
  color: #40576a;
  font-size: 13px;
  line-height: 1.45;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.info-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(14, 42, 62, 0.04);
}

.info-tile h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 800;
}

.info-tile p + p {
  margin-top: 12px;
}

.info-tile p,
.content-panel p,
.case-card p,
.pricing-card p,
.faq-answer,
.article-card p {
  color: var(--muted);
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.result-stats {
  border-left: 3px solid rgba(0, 137, 167, 0.35);
  padding-left: 22px;
  display: grid;
  gap: 18px;
}

.result-stats strong {
  display: block;
  color: var(--accent);
  font-size: 28px;
  line-height: 1.05;
}

.result-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.case-card,
.pricing-card,
.article-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(14, 42, 62, 0.04);
}

.case-card {
  overflow: visible;
}

.case-body {
  padding: 20px;
}

.case-card h3 {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 2px;
}

.case-card small {
  display: block;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 700;
}

.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 16px;
}

.case-metric {
  border-radius: 6px;
  background: #f1fbfd;
  padding: 10px;
}

.case-metric strong {
  display: block;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.case-metric span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
}

.case-image-button {
  width: 100%;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f8fbfc;
  overflow: hidden;
}

.case-image-button img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  object-position: left center;
  transition: transform 0.25s ease;
}

.case-image-button:hover img {
  transform: scale(1.03);
}

.case-chart {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(241, 251, 253, 0.82), rgba(255, 255, 255, 0.96));
  padding: 14px 16px 10px;
  overflow: visible;
  isolation: isolate;
}

.case-chart-top {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.case-chart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-chart-toggle,
.case-chart-source {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--muted);
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.case-chart-toggle.is-active,
.case-chart-toggle:hover,
.case-chart-source:hover,
.case-chart-toggle:focus-visible,
.case-chart-source:focus-visible {
  border-color: rgba(0, 137, 167, 0.55);
  background: #eefbfe;
  color: var(--accent);
  transform: translateY(-1px);
}

.case-chart-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  overflow: visible;
  touch-action: none;
}

.case-chart-note {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.what-done {
  margin-top: 16px;
}

.what-done strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.case-card .text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.services-card {
  grid-column: 2;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(14, 42, 62, 0.04);
}

.services-card h3 {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.service-row:first-of-type {
  border-top: 0;
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.section-note + .pricing-grid {
  margin-top: 22px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.pricing-card.recommended {
  border-color: var(--accent);
  box-shadow: 0 16px 35px rgba(0, 137, 167, 0.12);
}

.badge {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px 8px 0 0;
  background: var(--accent);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-card.recommended {
  padding-top: 42px;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}

.price {
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
}

.price span {
  font-size: 16px;
  font-weight: 750;
}

.pricing-card p {
  margin-bottom: 18px;
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  color: #40576a;
  font-size: 14px;
  font-weight: 700;
}

.check-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  align-items: start;
}

.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
}

.clients-slider {
  position: relative;
  min-width: 0;
}

.clients-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 12px;
}

.client-slider-btn {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(14, 42, 62, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.client-slider-btn:hover:not(:disabled),
.client-slider-btn:focus-visible {
  border-color: rgba(0, 137, 167, 0.42);
  color: #006f89;
  transform: translateY(-1px);
  outline: none;
}

.client-slider-btn:disabled {
  cursor: default;
  opacity: 0.42;
}

.client-slider-btn span {
  display: block;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.clients-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 220px);
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 12px;
  mask-image: linear-gradient(90deg, transparent, #000 18px, #000 calc(100% - 18px), transparent);
}

.clients-row::-webkit-scrollbar {
  display: none;
}

.clients-row:focus-visible {
  outline: 2px solid rgba(0, 137, 167, 0.35);
  outline-offset: 4px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 18px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(14, 42, 62, 0.04);
  color: #52677a;
  font-weight: 800;
  text-align: center;
  gap: 8px;
  scroll-snap-align: start;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.client-logo:hover,
.client-logo:focus-visible {
  border-color: rgba(0, 137, 167, 0.34);
  box-shadow: 0 14px 28px rgba(14, 42, 62, 0.08);
  transform: translateY(-2px);
  outline: none;
}

.client-logo img {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

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

.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
}

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

.article-card {
  overflow: hidden;
}

.article-visual {
  height: 138px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(0, 137, 167, 0.82), rgba(18, 184, 166, 0.68)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 12px);
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
}

.article-card:nth-child(2) .article-visual {
  background:
    linear-gradient(135deg, rgba(40, 121, 255, 0.78), rgba(0, 137, 167, 0.62)),
    url("content/case2.webp") center / cover;
  background-blend-mode: multiply;
}

.article-card:nth-child(3) .article-visual {
  background:
    linear-gradient(135deg, rgba(12, 29, 46, 0.66), rgba(0, 137, 167, 0.68)),
    url("content/case1.webp") center / cover;
  background-blend-mode: multiply;
}

.article-body {
  padding: 18px;
}

.article-body time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.article-body h3 {
  margin: 8px 0 12px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(14, 42, 62, 0.04);
}

.content-panel + .content-panel {
  margin-top: 20px;
}

.content-panel h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
}

.content-panel p + p {
  margin-top: 12px;
}

.content-panel .btn {
  margin-top: 24px;
}

.cta {
  position: relative;
  isolation: isolate;
  margin-top: 28px;
  border-radius: 8px;
  background: #053f52 url("content/contact.webp") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 111, 134, 0.88) 0%, rgba(0, 93, 113, 0.68) 42%, rgba(3, 44, 59, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16));
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 620px);
  justify-content: start;
  gap: 36px;
  align-items: center;
  padding: 40px 44px;
}

.cta h2 {
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 18px;
}

.cta p {
  color: rgba(255, 255, 255, 0.86);
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.socials .site-icon {
  --icon-size: 25px;
  filter: saturate(1.35) contrast(1.08);
}

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

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field,
.textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 6px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  outline: none;
}

.field.is-invalid,
.textarea.is-invalid {
  border-color: #ffb3b3;
  box-shadow: 0 0 0 3px rgba(255, 179, 179, 0.28);
}

.textarea-row {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 10px;
  margin-top: 10px;
  align-items: start;
}

.textarea {
  min-height: 58px;
  max-height: 260px;
  resize: vertical;
}

.cta .btn {
  height: auto;
  min-height: 58px;
  border-color: #ffffff;
  background: #ffffff;
  color: var(--accent);
  box-shadow: none;
}

.textarea-row .btn {
  align-self: start;
  width: 100%;
}

.textarea-row .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.privacy {
  margin-top: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
}

.privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer {
  background: #071a2a;
  color: #ffffff;
  margin-top: 0;
  padding: 34px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.3fr;
  gap: 40px;
}

.footer .brand {
  width: 150px;
  margin-bottom: 14px;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.footer-title {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.footer ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(4, 16, 26, 0.82);
}

.modal.open {
  display: flex;
}

.modal img {
  max-width: min(1180px, 94vw);
  max-height: 86vh;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 26px;
  line-height: 1;
}

.status {
  margin-top: 8px;
  min-height: 18px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
}

.status.is-error {
  color: #ffd6d6;
}

.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;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .chart-shell {
    grid-template-columns: 1fr 170px;
  }

  .features-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature:nth-child(3n) {
    border-right: 0;
  }

  .feature:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .results-grid {
    grid-template-columns: 190px 1fr;
  }

  .cta-grid {
    grid-template-columns: 280px minmax(0, 1fr);
  }
}

@media (max-width: 960px) {
  .container {
    width: min(1180px, calc(100% - 32px));
  }

  .nav {
    grid-template-columns: auto 1fr;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-nav-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
  }

  .icon-btn {
    display: inline-flex;
  }

  .mobile-menu {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
  }

  .hero h1 {
    font-size: 44px;
  }

  .section-layout {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .process-line,
  .pricing-grid,
  .articles,
  .faq-grid,
  .split-content {
    grid-template-columns: 1fr;
  }

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

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

  .services-card {
    grid-column: auto;
  }

  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  main#top::before {
    height: 720px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.72) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.10) 42%, rgba(247, 251, 253, 0.26) 70%, rgba(247, 251, 253, 0) 100%),
      url("./content/background.webp") 24% top / auto 720px no-repeat;
    opacity: 0.82;
  }

  main#top::after {
    height: 760px;
    background:
      radial-gradient(ellipse at 20% 68%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0) 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.10) 38%, rgba(255, 255, 255, 0.70) 70%, #ffffff 100%);
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-stats,
  .features-band,
  .case-list,
  .search-results,
  .form-grid,
  .textarea-row,
  .chart-shell {
    grid-template-columns: 1fr;
  }

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

  .search-card {
    padding: 10px;
    font-size: 14px;
  }

  .chart-area {
    border-right: 0;
    padding-right: 0;
  }

  .features-band {
    overflow: visible;
  }

  .feature {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .feature:first-child {
    border-top: 0;
  }

  .dashboard {
    padding: 16px;
  }

  .dashboard-top {
    display: block;
  }

  .chart-legend {
    margin-left: 0;
    flex-wrap: wrap;
  }

  .cta-grid {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .brand {
    width: 138px;
  }

  .mobile-call {
    min-height: 40px;
    font-size: 13px;
  }

  .mobile-call-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 430px) {
  .mobile-call {
    width: 42px;
    justify-content: center;
  }

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