:root {
  --navy: #15263a;
  --navy-2: #20364e;
  --teal: #14b8a6;
  --teal-dark: #0f8f84;
  --coral: #f9735b;
  --cloud: #f6f8fb;
  --mist: #e6edf3;
  --slate: #475569;
  --ink: #0f172a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(21, 38, 58, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background: var(--white);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(230, 237, 243, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--slate);
  font-size: 15px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--cloud);
}

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

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--white);
  font-weight: 820;
  cursor: pointer;
}

.lang-toggle:hover {
  border-color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 760;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(20, 184, 166, 0.22);
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-secondary {
  color: var(--navy);
  border-color: var(--mist);
  background: var(--white);
}

.btn-secondary:hover {
  border-color: var(--teal);
}

.section {
  padding: 86px 0;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(21, 38, 58, 0.94), rgba(25, 59, 80, 0.86)),
    url("data:image/svg+xml,%3Csvg width='1440' height='820' viewBox='0 0 1440 820' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1440' height='820' fill='%23f6f8fb'/%3E%3Cg fill='none' stroke='%2314b8a6' stroke-width='2' opacity='.28'%3E%3Cpath d='M80 130h210c44 0 80 36 80 80v30c0 44 36 80 80 80h190'/%3E%3Cpath d='M940 80h-180c-44 0-80 36-80 80v70c0 44-36 80-80 80h-80'/%3E%3Cpath d='M1110 580H900c-44 0-80-36-80-80v-20c0-44-36-80-80-80H560'/%3E%3Cpath d='M260 650h180c44 0 80-36 80-80v-60c0-44 36-80 80-80h240'/%3E%3C/g%3E%3Cg opacity='.35'%3E%3Crect x='120' y='90' width='170' height='78' rx='8' fill='%23ffffff'/%3E%3Crect x='1020' y='112' width='200' height='92' rx='8' fill='%23ffffff'/%3E%3Crect x='180' y='555' width='210' height='92' rx='8' fill='%23ffffff'/%3E%3Crect x='1010' y='575' width='190' height='78' rx='8' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  color: var(--white);
}

.hero .container {
  min-height: 560px;
  padding: 42px 0 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(40px, 4.8vw, 58px);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.hero-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.dashboard {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--mist);
}

.dash-label {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.dash-title {
  margin: 2px 0 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 820;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.12);
}

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

.metric {
  min-height: 86px;
  padding: 12px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--cloud);
}

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

.metric strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 25px;
}

.workflow-preview {
  padding: 4px 18px 22px;
}

.flow-line {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr;
  align-items: center;
  gap: 8px;
}

.flow-node {
  min-height: 84px;
  padding: 14px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
}

.flow-node b {
  display: block;
  color: var(--navy);
  font-size: 14px;
}

.flow-node span {
  display: block;
  margin-top: 4px;
  color: var(--slate);
  font-size: 12px;
}

.flow-arrow {
  color: var(--coral);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h1,
.section-head h2 {
  font-size: clamp(34px, 4.4vw, 54px);
}

.section-head p {
  margin: 16px 0 0;
  color: var(--slate);
  font-size: 18px;
}

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

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

.card {
  padding: 24px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
}

.card h3 {
  font-size: 22px;
}

.card p {
  margin: 12px 0 0;
  color: var(--slate);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(20, 184, 166, 0.12);
}

.band {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.band h2 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 44px);
}

.band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--slate);
}

.check-list li::before {
  content: "\2713";
  color: var(--teal);
  font-weight: 900;
}

.price-table {
  display: grid;
  gap: 16px;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
}

.price-row.featured {
  border-color: rgba(20, 184, 166, 0.55);
  box-shadow: 0 16px 40px rgba(20, 184, 166, 0.12);
}

.price-row h3 {
  font-size: 24px;
}

.price-row p {
  margin: 8px 0 0;
  color: var(--slate);
}

.price {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 860;
  white-space: nowrap;
}

.small-note {
  color: var(--slate);
  font-size: 14px;
}

.example-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.example-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
}

.example-item svg {
  flex: 0 0 22px;
  margin-top: 2px;
  color: var(--teal);
}

.example-item b {
  display: block;
  color: var(--navy);
}

.example-item span {
  display: block;
  margin-top: 3px;
  color: var(--slate);
  font-size: 14px;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  background: var(--white);
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--coral);
  font-weight: 900;
}

.step h3 {
  font-size: 20px;
}

.step p {
  color: var(--slate);
}

.page-hero {
  padding: 76px 0 54px;
  background: var(--cloud);
}

.business-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.business-strip span {
  padding: 9px 12px;
  border: 1px solid var(--mist);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 14px;
  font-weight: 720;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 760;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.form textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-grid .brand {
  color: var(--white);
}

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

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--mist);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

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

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

  .hero .container {
    min-height: auto;
    max-height: none;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 62px 0;
  }

  .hero-panel {
    display: none;
  }

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

  .hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

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

  .dash-grid,
  .grid-3,
  .steps,
  .example-list {
    grid-template-columns: 1fr;
  }

  .flow-line {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
  }

  .price-row {
    grid-template-columns: 1fr;
  }

  .price {
    white-space: normal;
  }

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