:root {
  --blue-dark: #0b2c44;
  --blue-main: #1f6fb2;
  --blue-light: #eaf3fa;
  --orange-main: #f2994a;
  --orange-soft: #ffe3c7;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --bg-main: #faf7f3;
  --white: #ffffff;
  --line: rgba(11, 61, 102, 0.12);
  --shadow: 0 20px 40px rgba(11, 61, 102, 0.10);
  --radius: 20px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 61, 102, 0.08);
  box-shadow: 0 18px 40px rgba(11, 61, 102, 0.12);
  backdrop-filter: blur(16px);
  overflow: visible;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: radial-gradient(720px 200px at 18% 0%, rgba(45, 156, 219, 0.22), transparent 70%),
    radial-gradient(740px 240px at 78% 0%, rgba(255, 148, 68, 0.25), transparent 70%);
  pointer-events: none;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 16px;
}
.header__nav { display: none; gap: 18px; }
.navlink {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  color: rgba(11, 61, 102, 0.9);
  padding: 12px 8px;
  border-radius: 12px;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.navlink::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 210, 255, 0), rgba(36, 210, 255, 0));
  transform: scaleX(0.12);
  transform-origin: center;
  transition: transform 0.18s ease, background 0.18s ease;
}
.navlink:hover {
  color: var(--blue-dark);
}
.navlink:hover::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, #24d2ff, #2d9cdb);
}
.header__cta { display: flex; gap: 10px; align-items: center; }
.langSwitch {
  display: inline-flex;
  border: 1px solid rgba(11, 61, 102, 0.16);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
}
.langSwitch__btn {
  border: 0;
  background: transparent;
  color: rgba(11, 61, 102, 0.86);
  font-weight: 800;
  font-size: 12px;
  padding: 8px 10px;
  cursor: pointer;
}
.langSwitch__btn.is-active {
  background: linear-gradient(90deg, #24d2ff, #2d9cdb);
  color: #fff;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
.brand--small { font-size: 16px; }
.brand__logo {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(11, 61, 102, 0.08);
  box-shadow: 0 10px 24px rgba(11, 61, 102, 0.08);
}
.brand__logo img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}
.brand__text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}
.brand__mark { color: var(--blue-dark); }
.brand__mark--light { color: rgba(11, 61, 102, 0.62); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(11, 61, 102, 0.14);
  color: rgba(11, 61, 102, 0.92);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn--full { width: 100%; }
.btn--primary {
  color: #ffffff;
  background: linear-gradient(90deg, #24d2ff, #2d9cdb);
  border-color: rgba(36, 210, 255, 0.28);
  box-shadow: 0 18px 36px rgba(45, 156, 219, 0.20);
}
.btn--primary:hover { background: linear-gradient(90deg, #2dd4ff, #1f6fb2); }
.btn--secondary {
  background: rgba(255, 255, 255, 0.85);
}
.btn--secondary:hover { background: rgba(255, 255, 255, 1); }
.btn--ghost {
  background: transparent;
}
.btn--ghost:hover { background: rgba(11, 61, 102, 0.06); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(11, 61, 102, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(11, 61, 102, 0.88);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.landingTitle {
  padding: 30px 0 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 250, 0.6));
}
.landingTitle__inner {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(11, 61, 102, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 252, 0.84));
  border-radius: calc(var(--radius) + 10px);
  padding: 18px 18px 16px;
  box-shadow: 0 16px 32px rgba(11, 61, 102, 0.08);
}
.landingTitle__inner::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 0;
  width: 110px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #24d2ff, #2d9cdb);
}
.landingTitle__main { min-width: 0; }
.landingTitle__kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(11, 61, 102, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(11, 61, 102, 0.86);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.landingTitle__h1 {
  margin: 10px 0 0;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--blue-dark);
  text-wrap: balance;
}
.landingTitle__accent {
  background: linear-gradient(90deg, #2d9cdb, #1f6fb2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.landingTitle__sub {
  margin: 12px 0 10px;
  max-width: 72ch;
  color: rgba(31, 41, 55, 0.82);
  line-height: 1.6;
}
.landingTitle__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.landingTitle__panel {
  border: 1px solid rgba(11, 61, 102, 0.12);
  background: rgba(255, 255, 255, 0.82);
  border-radius: calc(var(--radius) + 2px);
  padding: 14px;
}
.landingTitle__panelTitle {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.landingTitle__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.landingTitle__chips li {
  border: 1px solid rgba(45, 156, 219, 0.22);
  background: rgba(234, 243, 250, 0.8);
  color: rgba(11, 61, 102, 0.88);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero { padding: 56px 0 28px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.25fr;
  gap: 22px;
  align-items: start;
}
.hero__content { padding: 8px 0; }

.h1 {
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 14px 0 12px;
}
.h1__accent { color: var(--blue-dark); }
.lead {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 58ch;
}

.hero__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 18px 0;
}
.kpi {
  border: 1px solid rgba(11, 61, 102, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 14px 14px;
}
.kpi--total {
  border-color: rgba(242, 153, 74, 0.40);
  background: rgba(242, 153, 74, 0.16);
}
.kpi__value { font-size: 22px; font-weight: 900; letter-spacing: -0.03em; }
.kpi__label { color: var(--text-muted); font-size: 13px; margin-top: 4px; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__note { margin-top: 14px; color: var(--text-muted); font-size: 13px; }

.heroCard {
  border: 1px solid rgba(11, 61, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 18px;
}
.heroCard__title { margin: 0 0 10px; font-weight: 900; letter-spacing: -0.02em; }

.checklist {
  margin: 0;
  padding-left: 18px;
  color: rgba(31, 41, 55, 0.78);
  line-height: 1.65;
}
.heroCard__cta { margin-top: 16px; display: grid; gap: 10px; }
.heroCard__cta--row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.heroCard__cta--row .btn { flex: 1 1 220px; }

.section { padding: 52px 0; }
.section--alt {
  background: rgba(234, 243, 250, 0.55);
  border-top: 1px solid rgba(11, 61, 102, 0.08);
  border-bottom: 1px solid rgba(11, 61, 102, 0.08);
}

.h2 {
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.grid {
  display: grid;
  gap: 14px;
}
.grid--3 { grid-template-columns: 1fr; }

.card {
  border: 1px solid rgba(11, 61, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 16px;
}
.card__title { margin: 0 0 8px; font-weight: 900; }
.card__text { margin: 0; color: var(--text-muted); line-height: 1.6; }

.offerGrid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.offerCard {
  border: 1px solid rgba(11, 61, 102, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 250, 0.65));
  border-radius: calc(var(--radius) + 4px);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(11, 61, 102, 0.08);
}

.offerCard--accent {
  border-color: rgba(242, 153, 74, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 227, 199, 0.62));
}

.offerCard--intro { grid-column: auto; }

.offerCard__title {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.offerCard__text {
  margin: 0;
  color: rgba(31, 41, 55, 0.88);
  font-size: 16px;
  line-height: 1.7;
}

.steps { display: grid; gap: 12px; margin-top: 18px; }
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  border: 1px solid rgba(11, 61, 102, 0.10);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 14px;
}
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(45, 156, 219, 0.14);
  border: 1px solid rgba(45, 156, 219, 0.26);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.step__title { margin: 0; font-weight: 900; }
.step__text { margin: 6px 0 0; color: var(--text-muted); line-height: 1.6; }

.callout {
  margin-top: 18px;
  border: 1px solid rgba(242, 153, 74, 0.30);
  background: rgba(255, 227, 199, 0.55);
  border-radius: calc(var(--radius) + 6px);
  padding: 16px;
  display: grid;
  gap: 14px;
}
.callout__title { margin: 0; font-weight: 900; }
.callout__body { margin: 8px 0 0; color: var(--text-muted); line-height: 1.6; }
.callout__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.sectionHead { display: grid; gap: 10px; margin-bottom: 16px; }
.sectionSub { margin: 0; color: var(--text-muted); line-height: 1.6; max-width: 80ch; }
.sectionHead__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.casesSplit {
  display: grid;
  gap: 20px;
}

.casesSplit__col {
  padding: 0;
}

.case--demo {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.85);
}

.case__quote {
  margin: 12px 0 0;
  color: rgba(11, 61, 102, 0.78);
  font-style: italic;
  line-height: 1.55;
}

.case {
  display: block;
  border: 1px solid rgba(11, 61, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--radius) + 6px);
  padding: 16px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.case:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 1); border-color: rgba(11, 61, 102, 0.16); }
.case__title { margin: 0; font-weight: 900; }
.case__meta { margin: 8px 0 0; color: var(--text-muted); line-height: 1.6; }
.case__metrics { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.metric {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 61, 102, 0.14);
  background: rgba(234, 243, 250, 0.8);
  color: rgba(11, 61, 102, 0.82);
}
.case__link { margin: 14px 0 0; color: rgba(11, 61, 102, 0.92); font-weight: 800; }

.note {
  margin-top: 16px;
  border: 1px solid rgba(11, 61, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--radius) + 6px);
  padding: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.note__text { margin: 0; color: var(--text-muted); line-height: 1.6; max-width: 80ch; }

.pricing { display: grid; gap: 14px; margin-top: 18px; }
.priceCard {
  border: 1px solid rgba(11, 61, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--radius) + 6px);
  padding: 16px;
}
.priceCard--accent { border-color: rgba(45, 156, 219, 0.22); background: rgba(234, 243, 250, 0.75); }
.priceCard__title { margin: 0 0 6px; font-weight: 900; }
.priceCard__price { margin: 0 0 12px; font-size: 28px; font-weight: 900; letter-spacing: -0.03em; }

.list { margin: 0; padding-left: 18px; color: rgba(31, 41, 55, 0.9); line-height: 1.65; }

.leadBox {
  border: 1px solid rgba(11, 61, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--radius) + 6px);
  padding: 16px;
  display: grid;
  gap: 16px;
}
.leadBox__small { margin-top: 10px; color: var(--text-muted); font-size: 13px; line-height: 1.6; }

.form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field--check {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(11, 61, 102, 0.12);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 12px;
  padding: 10px 12px;
}
.field__checkbox {
  width: 18px;
  height: 18px;
  accent-color: #2d9cdb;
  cursor: pointer;
}
.field__checkLabel {
  font-size: 14px;
  font-weight: 700;
  color: rgba(31, 41, 55, 0.86);
  cursor: pointer;
}
.field__label { font-size: 13px; color: rgba(31, 41, 55, 0.72); font-weight: 700; }
.field__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(11, 61, 102, 0.14);
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 12px;
  color: var(--text-main);
  outline: none;
  font-family: inherit;
  font-size: 14px;
}
.field__input:focus { border-color: rgba(45, 156, 219, 0.55); box-shadow: 0 0 0 3px rgba(45, 156, 219, 0.16); }
textarea.field__input { resize: vertical; min-height: 110px; }

.form__hint { margin: 4px 0 0; min-height: 18px; font-size: 13px; color: rgba(31, 41, 55, 0.72); }

.faq { display: grid; gap: 10px; margin-top: 16px; }
.faqItem {
  border: 1px solid rgba(11, 61, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 14px;
}
.faqItem summary { cursor: pointer; font-weight: 900; }
.faqItem p { margin: 10px 0 0; color: var(--text-muted); line-height: 1.6; }

.final {
  border: 1px solid rgba(45, 156, 219, 0.22);
  background: rgba(234, 243, 250, 0.9);
  border-radius: calc(var(--radius) + 8px);
  padding: 18px;
  text-align: center;
}
.final__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }

.packages {
  display: grid;
  gap: 16px;
}

.packages__head {
  display: grid;
  gap: 10px;
}

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

.package {
  display: block;
  border: 1px solid rgba(11, 61, 102, 0.10);
  background: rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--radius) + 6px);
  padding: 16px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.package:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 1);
  border-color: rgba(11, 61, 102, 0.16);
}

.package__title {
  margin: 0;
  font-weight: 900;
}

.package__meta {
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.package__link {
  margin: 14px 0 0;
  color: rgba(11, 61, 102, 0.92);
  font-weight: 800;
}

.footer { padding: 24px 0 34px; border-top: 1px solid rgba(11, 61, 102, 0.10); }
.footer__inner { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.footer__text { margin-top: 8px; color: var(--text-muted); font-size: 13px; }
.footer__right { display: flex; gap: 10px; flex-wrap: wrap; }

.link { text-decoration: underline; text-underline-offset: 3px; color: rgba(11, 61, 102, 0.88); }

@media (min-width: 920px) {
  .header__nav { display: flex; }
  .landingTitle__inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    align-items: start;
  }
  .hero__grid { grid-template-columns: 1.25fr 0.85fr; gap: 26px; }
  .hero__highlights { grid-template-columns: repeat(3, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .offerGrid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .offerCard--accent,
  .offerCard--intro { grid-column: auto; }
  .pricing { grid-template-columns: repeat(3, 1fr); }
  .leadBox { grid-template-columns: 1.1fr 0.9fr; align-items: start; padding: 20px; }
  .callout { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .casesSplit { grid-template-columns: 1fr 1fr; gap: 26px; }
  .packages__grid { grid-template-columns: repeat(3, 1fr); }
}
