:root {
  --navy: #062b44;
  --blue: #0d3d5d;
  --blue-2: #154e72;
  --teal: #25b7ad;
  --teal-soft: #def7f2;
  --amber: #ff9f2f;
  --amber-2: #ffbe5b;
  --ink: #102033;
  --soft: #5f7187;
  --muted: #8a9aad;
  --line: #dbe8e6;
  --paper: #f7fbf8;
  --cream: #fbfaf5;
  --white: #ffffff;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(6, 43, 68, .14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.wrap {
  width: min(var(--max), calc(100vw - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 12px 34px rgba(6, 43, 68, .18);
}

.nav {
  width: min(var(--max), calc(100vw - 36px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.02em;
}

.brand img {
  width: 66px;
  height: 66px;
  padding: 4px;
  border-radius: 10px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,.3), 0 12px 26px rgba(0,0,0,.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255,255,255,.78);
  font-weight: 760;
}

.nav-links a:hover { color: #fff; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
  font-size: 22px;
  font-weight: 820;
}

.header-cta:hover {
  background: rgba(255,255,255,.18);
}

.section {
  padding: 86px 0;
}

.hero {
  padding: 66px 0 70px;
  background:
    radial-gradient(820px 430px at 84% 2%, rgba(37, 183, 173, .2), transparent 66%),
    linear-gradient(180deg, #f9fffd 0%, #eff7f4 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.04;
  overflow-wrap: break-word;
  hyphens: manual;
}

h1 {
  max-width: 680px;
  font-size: clamp(56px, 7vw, 92px);
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
}

h3 {
  font-size: 23px;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.62;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 860;
}

.btn-primary {
  color: #111827;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  box-shadow: 0 14px 34px rgba(255, 159, 47, .26);
}

.btn-secondary {
  color: var(--blue);
  border-color: rgba(13,61,93,.22);
  background: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

.page-hero {
  padding: 70px 0 52px;
  background:
    radial-gradient(760px 380px at 86% 0%, rgba(37,183,173,.18), transparent 68%),
    linear-gradient(180deg, #f9fffd 0%, #eef7f4 100%);
}

.page-hero .lead {
  max-width: 780px;
}

.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--blue);
}

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

.detail-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
}

.detail-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.detail-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.58;
}

.proof-band {
  background: var(--cream);
}

.page-cta {
  padding: 34px;
  border-radius: 12px;
  color: #fff;
  background: var(--navy);
}

.page-cta h2 {
  color: #fff;
}

.page-cta p {
  max-width: 720px;
  color: rgba(255,255,255,.76);
  line-height: 1.62;
}

.intro-strip {
  padding: 28px 0;
  background: var(--navy);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.signal-grid article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}

.signal-grid strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.signal-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.35;
}

.problem {
  background: var(--cream);
}

.split, .two-columns, .contact-grid, .faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: start;
}

.copy p {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 19px;
  line-height: 1.72;
}

.product-band {
  background: #fff;
}

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

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

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

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

.feature-card, .price-card, .steps article, .mode-list article, .customer-card, .route-card, .module-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(6,43,68,.06);
}

.feature-card {
  min-height: 224px;
  padding: 24px;
}

.feature-card span, .steps span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--blue);
  background: var(--teal-soft);
  font-weight: 900;
}

.feature-card p, .mode-list p, .steps p, .faq-list p, .price-card p {
  color: var(--soft);
  line-height: 1.58;
}

.route-section {
  background: #fff;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.route-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.route-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(6,43,68,.12);
}

.route-card span {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 900;
}

.route-card strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.route-card em {
  color: var(--soft);
  font-style: normal;
  line-height: 1.55;
}

.customers {
  background: linear-gradient(180deg, #f8fdfb 0%, #eef7f4 100%);
}

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

.module-card {
  display: grid;
  overflow: hidden;
  min-height: 600px;
}

.module-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--paper);
}

.module-card:nth-child(3) img {
  object-position: center top;
}

.module-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.module-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.module-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.6;
}

.module-card strong {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 18px;
}

.module-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.module-note p {
  margin: 0;
  color: var(--soft);
  line-height: 1.5;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  white-space: nowrap;
}

.align-center {
  align-items: center;
}

.integrations-preview {
  background: #fff;
}

.mini-list {
  display: grid;
  gap: 9px;
  margin: 24px 0;
}

.mini-list span {
  position: relative;
  padding-left: 24px;
  color: var(--soft);
  line-height: 1.45;
}

.mini-list span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.integration-stack {
  display: grid;
  gap: 14px;
}

.integration-shot,
.kingbill-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.integration-shot img,
.kingbill-shot img {
  width: 100%;
  height: auto;
}

.kingbill-shot {
  width: min(360px, 100%);
  justify-self: center;
  box-shadow: 0 12px 32px rgba(6,43,68,.08);
}

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

.customer-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 420px;
  padding: 18px;
}

.client-logo {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  overflow: hidden;
  text-decoration: none;
}

.client-logo img {
  display: block;
  width: 100%;
  max-width: 188px;
  max-height: 88px;
  object-fit: contain;
}

.client-logo.elektro {
  background: #050505;
}

.client-logo.elektro img {
  max-width: 178px;
  max-height: 100px;
}

.client-logo.temel {
  background: #1d1e20;
}

.client-logo.imex img,
.client-logo.temel img {
  max-height: 74px;
}

.client-logo.onse img {
  max-width: 202px;
  max-height: 86px;
}

.client-logo.kinderwunsch {
  background: #fbfdff;
}

.client-logo.kinderwunsch img {
  max-width: 206px;
  max-height: 78px;
}

.case-meta {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--teal-soft);
  font-size: 12px;
  font-weight: 850;
}

.customer-card h3 {
  font-size: 20px;
}

.customer-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.54;
}

.geo-proof {
  background:
    radial-gradient(820px 420px at 86% 4%, rgba(37,183,173,.2), transparent 66%),
    var(--navy);
}

.geo-proof h2,
.geo-proof .eyebrow {
  color: #fff;
}

.geo-proof .lead {
  color: rgba(255,255,255,.75);
}

.geo-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background: #050817;
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.geo-shot img {
  width: 100%;
  height: auto;
}

.geo-shot figcaption {
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.45;
}

.image-story {
  background: linear-gradient(180deg, #f7fbf8 0%, #eef7f4 100%);
}

.image-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 18px;
  align-items: stretch;
}

.image-card, .screen-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.image-card.large img {
  height: 520px;
}

.image-card figcaption, .screen-card figcaption {
  padding: 17px 18px;
  border-top: 1px solid var(--line);
}

.image-card strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
}

.image-card span, .screen-card figcaption {
  display: block;
  margin-top: 5px;
  color: var(--soft);
  line-height: 1.45;
}

.bot-section {
  background: var(--navy);
}

.bot-section h2, .bot-section h3, .bot-section .eyebrow {
  color: #fff;
}

.bot-section .lead {
  color: rgba(255,255,255,.76);
}

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

.bot-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.bot-phone-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: #090d18;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}

.bot-phone-shot img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.mode-list article {
  padding: 24px;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  box-shadow: none;
}

.mode-list p {
  color: rgba(255,255,255,.76);
}

.screens {
  background: #fff;
}

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

.screen-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.pricing {
  background: var(--cream);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 530px;
  padding: 22px;
}

.price-card.highlight {
  border-color: rgba(255,159,47,.55);
  box-shadow: 0 20px 54px rgba(255,159,47,.16);
}

.badge {
  display: inline-flex;
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.price small {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 760;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--soft);
  line-height: 1.9;
}

.process {
  background: #fff;
}

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

.steps article {
  padding: 22px;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
}

.contact {
  background:
    radial-gradient(760px 420px at 86% 8%, rgba(37,183,173,.16), transparent 68%),
    #fff;
}

.contact-note {
  display: grid;
  gap: 7px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-note a {
  color: var(--blue);
  font-weight: 840;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
}

.lead-form > input[name="website"] {
  position: absolute;
  left: -9999px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
}

input, textarea, select {
  width: 100%;
  border: 1px solid #cfdedc;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdfc;
  padding: 13px 14px;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(37,183,173,.14);
}

textarea { resize: vertical; }

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--soft);
  line-height: 1.45;
}

.check input {
  width: auto;
  margin-top: 3px;
}

.footer {
  padding: 36px 0;
  color: rgba(255,255,255,.76);
  background: var(--navy);
}

.footer-grid {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-size: 24px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer p {
  margin: 0 auto 0 0;
}

.footer a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .hero-grid, .split, .two-columns, .contact-grid, .faq-grid, .image-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid, .screen-grid, .customer-grid, .route-grid, .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .bot-proof-grid {
    grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 86px;
  }

  .brand {
    font-size: 22px;
    gap: 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    font-size: 17px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 44px 0 58px;
  }

  h1 {
    font-size: 46px;
  }

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

  h2 {
    font-size: 33px;
  }

  .lead {
    font-size: 18px;
  }

  .signal-grid, .feature-grid, .screen-grid, .customer-grid, .price-grid, .steps, .route-grid, .module-grid, .bot-proof-grid, .detail-grid {
    grid-template-columns: 1fr;
  }

  .image-card img, .image-card.large img {
    height: auto;
  }

  .module-card {
    min-height: auto;
  }

  .module-card img {
    height: 220px;
  }

  .module-note {
    display: grid;
  }

  .text-link {
    white-space: normal;
  }

  .bot-phone-shot img {
    height: auto;
    min-height: 0;
  }

  .price-card {
    min-height: auto;
  }

  .footer-grid {
    display: grid;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .wrap, .nav {
    width: min(var(--max), calc(100vw - 28px));
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-width: 176px;
  }
}
