@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0759ff;
  --blue-dark: #0047dc;
  --blue-light: #eaf1ff;
  --blue-pale: #f5f8ff;
  --ink: #07122e;
  --muted: #53617e;
  --muted-2: #77839b;
  --line: #dce4f2;
  --green: #0a9e58;
  --white: #fff;
  --shadow: 0 22px 60px rgba(35, 76, 148, 0.12);
  --shadow-soft: 0 12px 30px rgba(35, 76, 148, 0.08);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'Manrope', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 228, 242, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-logo,
.mini-logo {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  flex: 0 0 auto;
  width: 41px;
  height: 41px;
  padding: 9px 8px;
  border-radius: 12px;
  background: linear-gradient(145deg, #2b78ff, #0755f2 68%, #0038b8);
  box-shadow: 0 10px 22px rgba(7, 89, 255, 0.23), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.brand-logo i,
.mini-logo i,
.tile-brand i {
  display: block;
  width: 5px;
  border-radius: 4px;
  background: var(--white);
}

.brand-logo i:nth-child(1),
.mini-logo i:nth-child(1),
.tile-brand i:nth-child(1) {
  height: 14px;
}

.brand-logo i:nth-child(2),
.mini-logo i:nth-child(2),
.tile-brand i:nth-child(2) {
  height: 21px;
}

.brand-logo i:nth-child(3),
.mini-logo i:nth-child(3),
.tile-brand i:nth-child(3) {
  height: 17px;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 500;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 29px;
  font-size: 12px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 28px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: var(--blue);
  transition: inset 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a.active::after {
  right: 0;
  left: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 19px;
  color: var(--white);
  background: linear-gradient(135deg, #1268ff, #0752ec);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(7, 89, 255, 0.22);
  font-size: 12px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(7, 89, 255, 0.3);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(214, 227, 255, 0.86), transparent 29%),
    linear-gradient(135deg, #fff 20%, #f6f9ff 78%, #edf4ff);
  border-bottom: 1px solid #e8eef8;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: linear-gradient(rgba(7, 89, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 89, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 60%, #000);
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(222, 233, 255, 0.7);
  filter: blur(1px);
}

.orb-one {
  top: 24px;
  right: 17%;
  width: 190px;
  height: 190px;
}

.orb-two {
  right: 3%;
  bottom: 18px;
  width: 260px;
  height: 260px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  min-height: 520px;
}

.hero-copy {
  padding: 56px 0 60px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 15px;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid #dce8ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.pill span {
  font-size: 14px;
}

.hero h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(52px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 590px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  max-width: 640px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #202d49;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.point-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 41px;
  height: 41px;
  color: var(--blue);
  background: linear-gradient(145deg, #e9f1ff, #f8faff);
  border: 1px solid #deE8fa;
  border-radius: 11px;
}

.point-icon svg,
.card-icon svg,
.step-icon svg,
.trust-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 47px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #1268ff, #0752ec);
  box-shadow: 0 13px 26px rgba(7, 89, 255, 0.22);
}

.button-primary:hover {
  box-shadow: 0 17px 32px rgba(7, 89, 255, 0.3);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
}

.button-ghost:hover {
  color: var(--blue);
  border-color: #bfcff0;
  box-shadow: var(--shadow-soft);
}

.button-ghost svg {
  width: 20px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.phone-shadow {
  position: absolute;
  right: 62px;
  bottom: 35px;
  width: 290px;
  height: 55px;
  background: rgba(19, 59, 132, 0.21);
  border-radius: 50%;
  filter: blur(28px);
  transform: rotate(6deg);
}

.phone {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 74px;
  width: 268px;
  height: 478px;
  padding: 8px;
  background: linear-gradient(110deg, #0c1017, #727c88 50%, #151b22 54%, #020407);
  border-radius: 48px;
  box-shadow: 5px 12px 0 #69737e, 0 32px 52px rgba(12, 40, 92, 0.24), inset 0 0 0 2px #05070b;
  transform: rotate(8deg);
}

.phone::after {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 45px;
  pointer-events: none;
}

.phone-side {
  position: absolute;
  right: -10px;
  top: 112px;
  width: 6px;
  height: 68px;
  background: #313943;
  border-radius: 0 5px 5px 0;
  box-shadow: 0 79px 0 #313943;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 45px 18px 18px;
  background: linear-gradient(165deg, #fff 20%, #f7f9fd 88%);
  border-radius: 40px;
}

.phone-notch {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 114px;
  height: 27px;
  background: #030609;
  border-radius: 0 0 17px 17px;
  transform: translateX(-50%);
}

.phone-notch::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 24px;
  width: 7px;
  height: 7px;
  background: #0f1b28;
  border-radius: 50%;
  box-shadow: inset 0 0 2px #294d71;
}

.app-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 3px 17px;
}

.mini-logo {
  gap: 2px;
  width: 29px;
  height: 29px;
  padding: 7px 6px;
  border-radius: 9px;
}

.mini-logo i,
.tile-brand i {
  width: 3px;
}

.mini-logo i:nth-child(1) { height: 9px; }
.mini-logo i:nth-child(2) { height: 14px; }
.mini-logo i:nth-child(3) { height: 11px; }

.app-head strong {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.hamburger {
  margin-left: auto;
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
  transform: rotate(90deg);
}

.stat-card {
  min-height: 290px;
  padding: 20px 16px 14px;
  background: linear-gradient(145deg, #f1f5fc, #fbfcff);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(215, 224, 240, 0.38);
}

.stat-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.stat-card > strong {
  display: block;
  margin-top: 2px;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.stat-card em {
  display: block;
  margin-top: 1px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.chart {
  width: 100%;
  margin-top: 16px;
  overflow: visible;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-dots circle {
  fill: var(--white);
  stroke: var(--blue);
  stroke-width: 2.5;
}

.chart-days {
  display: flex;
  justify-content: space-between;
  margin-top: -3px;
  color: var(--muted-2);
  font-size: 8px;
}

.phone-bottom {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 8px;
  margin-top: 15px;
}

.phone-bottom span {
  display: block;
  height: 30px;
  background: #f2f5fa;
  border-radius: 10px;
}

.float-tile {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  width: 76px;
  height: 76px;
  padding: 21px;
  color: var(--white);
  background: linear-gradient(145deg, #55a1ff, #1769f6 66%, #0644d7);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 21px;
  box-shadow: 0 20px 36px rgba(7, 89, 255, 0.23), inset 0 1px 5px rgba(255, 255, 255, 0.34);
}

.float-tile svg {
  width: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile-download {
  top: 72px;
  left: 14px;
  transform: rotate(6deg);
}

.tile-chart {
  bottom: 75px;
  left: -31px;
  transform: rotate(7deg);
}

.tile-brand {
  right: -8px;
  top: 165px;
  align-items: flex-end;
  padding: 21px 22px;
  transform: rotate(8deg);
}

.tile-brand i:nth-child(1) { height: 25px; width: 7px; }
.tile-brand i:nth-child(2) { height: 37px; width: 7px; }
.tile-brand i:nth-child(3) { height: 31px; width: 7px; }

.trust-strip {
  position: relative;
  z-index: 6;
  margin-top: -4px;
  padding: 14px 0 16px;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid #e7edf7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 78px;
  padding: 11px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 13px 34px rgba(35, 76, 148, 0.07);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 20px;
  border-left: 1px solid #edf1f7;
}

.trust-item:first-child {
  border-left: 0;
}

.trust-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 47px;
  height: 47px;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 14px;
}

.trust-item p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.trust-item strong {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.1;
}

.trust-item p span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.section {
  padding: 94px 0;
}

.compact-section {
  padding-bottom: 80px;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.centered {
  max-width: 730px;
  margin-inline: auto;
  text-align: center;
}

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

.section-heading h2,
.workflow-copy h2,
.faq-intro h2,
.cta-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.workflow-copy > p,
.faq-intro > p {
  margin: 17px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.benefit-card {
  position: relative;
  min-height: 266px;
  padding: 27px 25px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #bfd2fb;
  box-shadow: var(--shadow);
}

.card-number {
  position: absolute;
  right: 19px;
  top: 13px;
  color: #edf2fa;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

.card-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 15px;
}

.benefit-card h3 {
  margin: 25px 0 10px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.workflow-section {
  background: linear-gradient(145deg, #f6f9ff, #eef4ff);
  border-block: 1px solid #e5ecf8;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: center;
}

.workflow-copy > p {
  max-width: 470px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  font-size: 19px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

.steps-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 118px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: 0 10px 25px rgba(35, 76, 148, 0.06);
}

.steps-list li:not(:last-child)::after {
  content: '';
  position: absolute;
  z-index: 2;
  bottom: -19px;
  left: 50px;
  width: 2px;
  height: 25px;
  background: #b9cdf8;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 15px;
}

.steps-list strong {
  display: block;
  font-size: 16px;
}

.steps-list p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.steps-list em {
  color: #e5ecf8;
  font-size: 38px;
  font-style: normal;
  font-weight: 800;
}

.pricing-section {
  overflow: hidden;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p:last-child {
  max-width: 450px;
  margin-bottom: 5px;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.price-card.featured {
  border: 2px solid var(--blue);
  box-shadow: 0 24px 55px rgba(7, 89, 255, 0.16);
  transform: translateY(-8px);
}

.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 6px 17px;
  color: var(--white);
  background: var(--blue);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  transform: translateX(-50%);
}

.price-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid #e9eef6;
}

.price-top p {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.price-top span {
  color: var(--muted-2);
  font-size: 10px;
  font-weight: 600;
}

.install-count {
  margin: 22px 0 8px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
}

.install-count span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.price {
  display: grid;
  margin: 0;
}

.price strong {
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--muted-2);
  font-size: 10px;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 27px;
  padding: 20px 0 0;
  border-top: 1px solid #e9eef6;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #3e4b66;
  font-size: 12px;
}

.price-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.button-soft {
  color: var(--blue);
  background: var(--blue-light);
}

.button-soft:hover {
  color: var(--white);
  background: var(--blue);
}

.pricing-note {
  margin: 26px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.pricing-note a {
  color: var(--blue);
  font-weight: 800;
}

.faq-section {
  background: #f7f9fd;
  border-top: 1px solid #e8edf6;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.faq-intro > p {
  max-width: 390px;
}

.button-ghost.dark {
  margin-top: 27px;
  background: transparent;
}

.accordion {
  display: grid;
  align-content: start;
  gap: 10px;
}

.accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 7px 20px rgba(35, 76, 148, 0.04);
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--blue);
  background: var(--blue-light);
  border-radius: 8px;
}

.accordion summary span::before,
.accordion summary span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.accordion details[open] summary {
  color: var(--blue);
}

.accordion details p {
  margin: -4px 22px 0;
  padding: 0 44px 21px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.cta-section {
  padding: 76px 0;
  background: linear-gradient(180deg, #f7f9fd, #fff);
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  gap: 50px;
  align-items: center;
  min-height: 290px;
  padding: 50px 55px 50px 170px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 110%, rgba(99, 158, 255, 0.65), transparent 35%),
    linear-gradient(130deg, #0759ff 20%, #0045d6 100%);
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(7, 89, 255, 0.25);
}

.cta-card::before,
.cta-card::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.cta-card::before {
  width: 430px;
  height: 430px;
  right: -120px;
  top: -270px;
}

.cta-card::after {
  width: 290px;
  height: 290px;
  right: -40px;
  top: -190px;
}

.paper-plane {
  position: absolute;
  left: 49px;
  top: 82px;
  width: 92px;
  color: rgba(255, 255, 255, 0.88);
  transform: rotate(-8deg);
}

.paper-plane svg {
  width: 100%;
  fill: rgba(255, 255, 255, 0.23);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-copy {
  position: relative;
  z-index: 2;
}

.cta-copy .eyebrow {
  color: #c9dcff;
}

.cta-copy h2 {
  font-size: clamp(30px, 3vw, 43px);
}

.cta-copy > p:last-child {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.lead-form {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  backdrop-filter: blur(10px);
}

.lead-form label,
.lead-form input {
  width: 100%;
}

.lead-form label:first-child,
.lead-form .button,
.form-status {
  grid-column: 1 / -1;
}

.lead-form input {
  height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 10px;
  outline: none;
  font-size: 12px;
}

.lead-form input:focus {
  border-color: #94b8ff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.24);
}

.lead-form input::placeholder {
  color: #8792a8;
}

.lead-form .button {
  background: var(--ink);
  box-shadow: 0 12px 25px rgba(0, 23, 73, 0.25);
}

.form-status {
  min-height: 0;
  margin: 0;
  color: #e4edff;
  font-size: 10px;
}

.form-status:not(:empty) {
  padding-top: 4px;
}

.site-footer {
  padding: 66px 0 23px;
  color: #b1bbd0;
  background: #06102b;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 70px;
  padding-bottom: 45px;
}

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

.footer-brand .brand-copy small {
  color: #8d9ab3;
}

.footer-main > div:first-child > p {
  margin: 20px 0 0;
  color: #8390a8;
  font-size: 12px;
  line-height: 1.7;
}

.footer-main nav,
.footer-contacts {
  display: grid;
  align-content: start;
  gap: 11px;
  font-size: 12px;
}

.footer-main nav strong,
.footer-contacts strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 13px;
}

.footer-main nav a:hover,
.footer-contacts a:hover {
  color: var(--white);
}

.footer-contacts a {
  color: #bdd2ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  color: #6f7d98;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 30px;
}

:focus-visible {
  outline: 3px solid rgba(7, 89, 255, 0.38);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .header-inner {
    gap: 24px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .phone {
    right: 42px;
  }

  .tile-brand {
    right: -10px;
  }

  .tile-download {
    left: 0;
  }

  .tile-chart {
    left: -10px;
  }

  .hero-points {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
  }

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

  .benefit-card {
    min-height: 235px;
  }

  .workflow-grid,
  .faq-grid {
    gap: 55px;
  }

  .cta-card {
    padding-left: 140px;
  }

  .paper-plane {
    left: 34px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 11px 9px;
    background: var(--blue-light);
    border: 0;
    border-radius: 11px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded='true'] > span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded='true'] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(25, 54, 106, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid #edf1f6;
  }

  .main-nav a::after {
    display: none;
  }

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

  .hero-copy {
    position: relative;
    z-index: 5;
    padding: 52px 0 5px;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .phone {
    right: 50%;
    transform: translateX(45%) rotate(8deg);
  }

  .phone-shadow {
    right: 50%;
    transform: translateX(48%) rotate(6deg);
  }

  .tile-download {
    left: calc(50% - 235px);
  }

  .tile-chart {
    left: calc(50% - 255px);
  }

  .tile-brand {
    right: calc(50% - 240px);
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    padding-top: 14px;
    border-top: 1px solid #edf1f7;
  }

  .workflow-grid,
  .faq-grid,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .price-card.featured {
    order: -1;
    transform: none;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 45px 45px 45px 140px;
  }

  .lead-form {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .pill {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-points {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 8px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 440px;
    transform: scale(0.87);
    transform-origin: top center;
    margin-bottom: -55px;
  }

  .phone {
    right: 50%;
  }

  .tile-download {
    left: calc(50% - 215px);
  }

  .tile-chart {
    left: calc(50% - 225px);
  }

  .tile-brand {
    right: calc(50% - 220px);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 6px 14px;
  }

  .trust-item,
  .trust-item:nth-child(3) {
    min-height: 74px;
    padding: 11px 4px;
    border-top: 1px solid #edf1f7;
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .trust-item p span {
    font-size: 11px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .workflow-copy h2,
  .faq-intro h2,
  .cta-copy h2 {
    font-size: 34px;
  }

  .section-heading h2 br,
  .workflow-copy h2 br,
  .faq-intro h2 br,
  .cta-copy h2 br {
    display: none;
  }

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

  .benefit-card {
    min-height: 220px;
  }

  .steps-list li {
    grid-template-columns: auto 1fr;
    gap: 15px;
    padding: 18px;
  }

  .steps-list em {
    display: none;
  }

  .steps-list li:not(:last-child)::after {
    left: 43px;
  }

  .price-card {
    padding: 24px 21px;
  }

  .accordion summary {
    padding: 18px;
    font-size: 13px;
  }

  .accordion details p {
    margin-inline: 18px;
    padding-right: 10px;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-card {
    width: min(100% - 28px, var(--container));
    padding: 140px 22px 28px;
    border-radius: 23px;
  }

  .paper-plane {
    left: 24px;
    top: 28px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .lead-form label,
  .lead-form label:first-child,
  .lead-form .button,
  .form-status {
    grid-column: 1;
  }

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

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

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