:root {
  --bg: #ffffff;
  --text: #060d0d;
  --muted: #64748b;
  --soft: #f8fafc;
  --line: #e5eef1;
  --accent: #39a2ae;
  --accent-soft: #99ced5;
  --accent-dark: #1a6f78;
  --warm-surface: #fbfaf7;
  --shadow: 0 18px 48px rgba(6, 13, 13, 0.08);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(57, 162, 174, 0.35);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid #e3dfd6;
  backdrop-filter: blur(16px);
}

.brand img {
  width: 154px;
  height: auto;
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.primary-nav a {
  transition: color 180ms ease;
}

.primary-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle,
.nav-toggle {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
}

.language-toggle {
  min-width: 44px;
  height: 40px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(57, 162, 174, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 16px 32px rgba(57, 162, 174, 0.24);
}

.button-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--soft);
  border-color: var(--accent-soft);
  color: var(--text);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
  min-height: calc(100vh - 78px);
  padding-top: 74px;
}

.hero h1,
.section-heading h2,
.assessment h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.35rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
}

.hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.microcopy {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.dashboard-visual {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.9), #fff),
    radial-gradient(circle at 20% 0%, rgba(153, 206, 213, 0.28), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 162, 174, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 162, 174, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
  pointer-events: none;
}

.dashboard-visual > * {
  position: relative;
}

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

.visual-label,
.metric-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.dashboard-top strong {
  display: block;
  margin-top: 3px;
  font-size: 1.38rem;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(153, 206, 213, 0.22);
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

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

.metric-card {
  min-height: 118px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.metric-card strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1;
}

.metric-card small {
  color: var(--accent-dark);
  font-weight: 900;
}

.metric-card.accent {
  background: #06393f;
  color: #fff;
  border-color: #06393f;
}

.metric-card.accent span,
.metric-card.accent small {
  color: var(--accent-soft);
}

.chart-panel {
  height: 190px;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.chart-bars {
  display: flex;
  align-items: end;
  height: 100%;
  gap: 12px;
}

.chart-bars span {
  flex: 1;
  min-width: 22px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  animation: soft-pulse 4s ease-in-out infinite;
}

.chart-bars span:nth-child(even) {
  animation-delay: 600ms;
}

.workflow-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.workflow-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.workflow-list span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.workflow-list p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.assessment h2,
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.assessment p,
.final-cta p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.card-grid {
  display: grid;
  gap: 16px;
}

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

.info-card {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(57, 162, 174, 0.34);
  box-shadow: 0 14px 32px rgba(6, 13, 13, 0.06);
}

.info-card h3,
.steps h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.info-card p,
.steps p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 64px;
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 82px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(6, 13, 13, 0.05);
}

.solution-list span,
.steps span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(153, 206, 213, 0.24);
  color: var(--accent-dark);
  font-weight: 900;
}

.solution-list p {
  margin: 0;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.steps article {
  min-height: 270px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.steps h3 {
  margin-top: 24px;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 930px;
  margin: 0 auto;
}

.benefits-list span {
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 750;
}

.assessment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.assessment-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.assessment-panel ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.assessment-panel li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 750;
}

.assessment-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.final-cta {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto 36px;
  padding: clamp(44px, 8vw, 76px);
  border-radius: var(--radius);
  background: #06393f;
  color: #fff;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.76);
}

.final-cta .button {
  margin-top: 30px;
  background: #fff;
  border-color: #fff;
  color: var(--text);
  box-shadow: none;
}

.contact-link {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  color: var(--accent-soft);
  font-weight: 800;
}

.site-footer {
  padding: clamp(44px, 7vw, 72px) clamp(20px, 5vw, 64px) 34px;
  border-top: 1px solid var(--line);
  background: var(--warm-surface);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(56px, 12vw, 180px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand {
  max-width: 520px;
}

.footer-brand img {
  width: 146px;
  margin-bottom: 26px;
}

.footer-brand p {
  margin: 0;
  max-width: 470px;
  color: #7b817f;
  font-size: 1rem;
  line-height: 1.75;
}

.site-footer a {
  color: var(--text);
  font-weight: 800;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: clamp(48px, 7vw, 88px);
  min-width: 330px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-heading {
  margin-bottom: 4px;
  color: #9a9f9d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.footer-column span:not(.footer-heading) {
  color: #8a908e;
}

.footer-links a {
  color: #7b817f;
  font-weight: 750;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), 100%);
  margin: clamp(42px, 6vw, 62px) auto 0;
  padding-top: 24px;
  border-top: 1px solid #e3dfd6;
  color: #a0a5a3;
  font-size: 0.86rem;
}

.footer-bottom span:last-child {
  letter-spacing: 0.24em;
  white-space: nowrap;
}

.legal-header {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.legal-main {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 100px;
}

.legal-content {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 13, 13, 0.06);
}

.legal-content h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.legal-content h2 {
  margin: 38px 0 12px;
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p {
  margin: 14px 0 0;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-content a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  color: var(--accent-dark) !important;
  font-weight: 800;
}

@keyframes soft-pulse {
  0%,
  100% {
    opacity: 0.78;
  }
  50% {
    opacity: 1;
  }
}

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

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .primary-nav a {
    padding: 12px;
  }

  .site-header.nav-open .primary-nav {
    display: flex;
  }

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

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

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

  .header-actions {
    justify-self: end;
  }

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

  .hero {
    min-height: 0;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-columns {
    width: min(100%, 440px);
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    padding: 14px 20px;
  }

  .brand img {
    width: 126px;
  }

  .header-actions .button {
    display: none;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 72px 0;
  }

  .section-muted {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1,
  .section-heading h2,
  .assessment h2,
  .final-cta h2 {
    line-height: 1.04;
  }

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

  .hero-actions .button,
  .assessment-panel .button,
  .final-cta .button {
    width: 100%;
  }

  .dashboard-visual {
    padding: 14px;
  }

  .metric-grid,
  .three-cols,
  .steps {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 104px;
  }

  .chart-panel {
    height: 150px;
  }

  .steps article {
    min-height: 0;
  }

  .assessment-panel {
    padding: 22px;
  }

  .final-cta {
    width: calc(100% - 32px);
    padding: 34px 20px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom span:last-child {
    letter-spacing: 0.18em;
    white-space: normal;
  }

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

  .legal-main {
    width: calc(100% - 32px);
    padding: 48px 0 72px;
  }

  .legal-content {
    padding: 24px 20px;
  }
}

@media (max-width: 390px) {
  .language-toggle,
  .nav-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .brand img {
    width: 116px;
  }
}
