:root {
  --ink: #101114;
  --muted: #69707d;
  --paper: #fbfbf8;
  --white: #ffffff;
  --soft: #eef2f6;
  --line: rgba(16, 17, 20, 0.12);
  --red: #ff3b2f;
  --red-dark: #d82920;
  --cyan: #00b9dc;
  --green: #36c37d;
  --lime: #dbff55;
  --charcoal: #15171d;
  --shadow: 0 24px 70px rgba(16, 17, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

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

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

.nav {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: var(--white);
  background: rgba(18, 20, 26, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.25);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.brand img {
  width: 122px;
}

.brand span {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-red {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(255, 59, 47, 0.32);
}

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

.btn-dark {
  color: var(--white);
  background: var(--charcoal);
  box-shadow: 0 14px 32px rgba(16, 17, 20, 0.18);
}

.btn-light {
  color: var(--charcoal);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(16, 17, 20, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 850;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(54, 195, 125, 0.16);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 22px 0 18px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.label {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

section {
  padding: 96px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.48fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.home-hero {
  min-height: 100svh;
  padding: 150px 0 86px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 17, 20, 0.98), rgba(16, 17, 20, 0.72)),
    radial-gradient(circle at 72% 20%, rgba(255, 59, 47, 0.28), transparent 26%),
    radial-gradient(circle at 88% 78%, rgba(0, 185, 220, 0.18), transparent 28%),
    #101114;
}

.home-hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr);
  gap: 52px 70px;
  align-items: center;
}

.home-copy {
  max-width: 700px;
}

.home-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.45;
}

.home-copy h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.02;
}

.route-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 0;
}

.route-card {
  position: relative;
  display: flex;
  min-height: 214px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.route-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.route-card.app {
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 185, 220, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
}

.route-card.web {
  background:
    radial-gradient(circle at 75% 10%, rgba(255, 59, 47, 0.36), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
}

.route-card h2 {
  max-width: 520px;
  margin-top: 18px;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.04;
}

.route-card p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.45;
}

.home-proof-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
}

.home-proof-strip div {
  min-height: 96px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.055);
}

.home-proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.1;
}

.home-proof-strip span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.4;
}

.route-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.route-mini {
  display: none;
  gap: 8px;
  width: min(260px, 52%);
}

.route-mini span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.route-mini span:nth-child(2) {
  width: 72%;
}

.route-mini span:nth-child(3) {
  width: 88%;
}

.home-cost {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 17, 20, 0.98), rgba(21, 23, 29, 0.96)),
    radial-gradient(circle at 18% 16%, rgba(255, 59, 47, 0.2), transparent 28%),
    #101114;
}

.home-cost .lead {
  color: rgba(255, 255, 255, 0.72);
}

.home-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
}

.home-cost-grid article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.055);
}

.home-cost-grid span {
  display: block;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.home-cost-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.1;
}

.home-cost-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.home-choice {
  background: var(--paper);
}

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

.home-choice-grid a {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 17, 20, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-choice-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(16, 17, 20, 0.12);
}

.home-choice-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-choice-grid h3 {
  max-width: 620px;
  margin: 32px 0 14px;
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.03;
}

.home-choice-grid p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.home-choice-grid strong {
  margin-top: 34px;
  font-size: 15px;
}

.home-manifesto {
  padding: 88px 0;
  color: var(--white);
  background: #101114;
}

.home-manifesto .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.58fr);
  gap: 48px;
  align-items: center;
}

.home-manifesto-copy {
  max-width: 760px;
}

.home-manifesto h2 {
  margin: 12px 0 0;
  max-width: 760px;
  font-size: clamp(36px, 4.2vw, 66px);
  line-height: 1.04;
}

.home-manifesto-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 19px;
  line-height: 1.55;
}

.home-manifesto-grid {
  display: grid;
  gap: 12px;
}

.home-manifesto-grid p {
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 16px;
  line-height: 1.45;
}

.home-manifesto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.page-hero {
  min-height: 88svh;
  padding: 104px 0 46px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(16, 17, 20, 0.96), rgba(16, 17, 20, 0.57)),
    linear-gradient(135deg, #101114, #252a35);
}

.page-hero.web {
  background:
    linear-gradient(115deg, rgba(16, 17, 20, 0.95), rgba(16, 17, 20, 0.48)),
    radial-gradient(circle at 72% 18%, rgba(255, 59, 47, 0.55), transparent 31%),
    linear-gradient(135deg, #111318, #2a1d21 55%, #101114);
}

.page-hero.app {
  background:
    linear-gradient(115deg, rgba(16, 17, 20, 0.95), rgba(16, 17, 20, 0.52)),
    radial-gradient(circle at 74% 16%, rgba(0, 185, 220, 0.48), transparent 31%),
    linear-gradient(135deg, #101114, #172733 58%, #111318);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(310px, 0.66fr);
  gap: 38px;
  align-items: center;
}

.page-hero p {
  max-width: 660px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.45;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.proof {
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.proof strong {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(20px, 1.45vw, 24px);
  line-height: 1;
}

.proof span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

.mock-device,
.browser-mock {
  position: relative;
  min-height: 440px;
}

.phone {
  width: 264px;
  height: 528px;
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background: #08090d;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.48);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  color: var(--ink);
  background: #f5f7fa;
}

.app-top {
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #00b9dc, #15171d 72%);
}

.app-top small {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
}

.app-top h3 {
  margin: 8px 0 0;
  font-size: 22px;
}

.app-row {
  margin: 14px;
  padding: 14px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.08);
}

.bar {
  height: 9px;
  margin-top: 9px;
  border-radius: 99px;
  background: #e6eaf0;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--cyan);
}

.browser-frame {
  max-width: 560px;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.12);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.web-canvas {
  min-height: 318px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
}

.web-canvas h3 {
  max-width: 340px;
  margin: 0 0 14px;
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.05;
}

.web-canvas p {
  color: var(--muted);
  font-size: 16px;
}

.fake-cta {
  width: 150px;
  height: 42px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--red);
}

.fake-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.fake-cards div {
  min-height: 92px;
  border-radius: 14px;
  background: #f0f3f7;
}

.pain {
  color: var(--white);
  background: #121318;
}

.pain .label {
  color: var(--lime);
}

.pain .lead {
  color: rgba(255, 255, 255, 0.72);
}

.pain-grid,
.offer-grid,
.plans-grid,
.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.big-stat {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.big-stat strong {
  font-size: clamp(64px, 9vw, 110px);
  line-height: 0.9;
}

.pain-list,
.steps-grid,
.deliver-grid,
.faq-grid {
  display: grid;
  gap: 12px;
}

.pain-list article,
.step,
.deliver,
.faq-item,
.contact-panel,
.offer-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.pain-list article {
  padding: 24px;
  color: var(--ink);
}

.pain-list h3,
.step h3,
.deliver h3,
.faq-item h3,
.offer-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.pain-list p,
.step p,
.deliver p,
.faq-item p,
.offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.step,
.deliver,
.offer-card {
  padding: 24px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
}

.deliver-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deliver {
  min-height: 230px;
}

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

.case-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 17, 20, 0.08);
}

.case-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.15;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.case-card.emphasis {
  color: var(--white);
  background: linear-gradient(145deg, #15171d, #2a1d21);
}

.case-card.emphasis p {
  color: rgba(255, 255, 255, 0.72);
}

.offer {
  background: #edf1f5;
}

.offer-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--red), #961a17);
}

.offer-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.offer-list div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(16, 17, 20, 0.06);
  font-weight: 750;
}

.featured .offer-list div {
  background: rgba(255, 255, 255, 0.13);
}

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

.faq-item {
  padding: 22px;
}

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

.value-card {
  min-height: 178px;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.value-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.06;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.value-card.total {
  color: var(--white);
  background: linear-gradient(145deg, #15171d, #2a1d21);
}

.value-card.total span,
.value-card.total p {
  color: rgba(255, 255, 255, 0.78);
}

.difference {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 17, 20, 0.98), rgba(28, 23, 25, 0.96)),
    radial-gradient(circle at 82% 12%, rgba(255, 59, 47, 0.2), transparent 30%),
    #101114;
}

.difference .section-head {
  align-items: start;
}

.difference .label {
  color: var(--red);
}

.difference h2 {
  max-width: 820px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.05;
}

.difference .lead {
  color: rgba(255, 255, 255, 0.7);
}

.difference .faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}

.difference .faq-item {
  position: relative;
  min-height: 178px;
  padding: 26px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.055);
}

.difference .faq-item::before {
  display: block;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.difference .faq-item:nth-child(1)::before {
  content: "01";
}

.difference .faq-item:nth-child(2)::before {
  content: "02";
}

.difference .faq-item:nth-child(3)::before {
  content: "03";
}

.difference .faq-item:nth-child(4)::before {
  content: "04";
}

.difference .faq-item:nth-child(5)::before {
  content: "05";
}

.difference .faq-item:nth-child(6)::before {
  content: "06";
}

.app-difference .faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-difference .faq-item {
  min-height: 164px;
}

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

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

.ownership-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 17, 20, 0.06);
}

.ownership-grid span {
  display: block;
  margin-bottom: 40px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ownership-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.1;
}

.ownership-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.app-deliverables .terms-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-deliverables .terms-grid article {
  background: var(--white);
}

.difference .faq-item h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.15;
}

.difference .faq-item p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

.plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(16, 17, 20, 0.09);
}

.plan-card.featured {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, #15171d, #2a1d21);
  transform: translateY(-12px);
}

.plan-card h3 {
  margin: 12px 0;
  font-size: 24px;
}

.plan-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.plan-card.featured p {
  color: rgba(255, 255, 255, 0.72);
}

.plan-price {
  margin: 14px 0;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 0.96;
}

.plan-price span {
  display: inline-block;
  margin-left: 4px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.plan-card.featured .plan-price span {
  color: rgba(255, 255, 255, 0.64);
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.plan-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.terms-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.terms-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.terms-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact {
  padding-bottom: 0;
}

.contact-panel {
  align-items: start;
  padding: 28px;
  border-radius: 28px 28px 0 0;
  box-shadow: var(--shadow);
}

.contact-copy {
  padding: 20px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points div {
  padding: 16px;
  border-radius: 14px;
  background: #f2f5f8;
  font-weight: 750;
}

form {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 22px;
  background: #f3f5f8;
}

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

label {
  display: grid;
  gap: 7px;
  color: #373d46;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(16, 17, 20, 0.13);
  border-radius: 14px;
  padding: 0 14px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 116px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255, 59, 47, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #121318;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.footer-brand img {
  width: 112px;
}

.footer-brand span {
  align-self: flex-end;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-cta {
  position: fixed;
  z-index: 35;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
}

.mobile-cta .btn {
  width: 100%;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .home-hero .wrap,
  .route-grid,
  .hero-grid,
  .section-head,
  .home-manifesto .wrap,
  .pain-grid,
  .offer-grid,
  .plans-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .home-proof-strip {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .deliver-grid,
  .case-grid,
  .home-cost-grid,
  .home-choice-grid,
  .ownership-grid,
  .value-grid,
  .terms-grid,
  .difference .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    top: 10px;
    width: calc(100% - 20px);
  }

  .nav .btn {
    display: none;
  }

  .brand img {
    width: 112px;
  }

  .home-hero,
  .page-hero {
    min-height: auto;
    padding: 112px 0 42px;
  }

  .route-card {
    min-height: auto;
    padding: 24px;
  }

  .route-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .route-mini {
    width: 100%;
  }

  section {
    padding: 68px 0;
  }

  .proof-grid,
  .steps-grid,
  .deliver-grid,
  .case-grid,
  .faq-grid,
  .home-cost-grid,
  .home-choice-grid,
  .ownership-grid,
  .value-grid,
  .plans-grid,
  .terms-grid,
  .offer-list,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .difference .faq-item {
    min-height: auto;
    padding: 22px;
  }

  .difference .faq-grid {
    grid-template-columns: 1fr;
  }

  .app-deliverables .terms-grid {
    grid-template-columns: 1fr;
  }

  .difference .faq-item::before {
    margin-bottom: 22px;
  }

  .mock-device,
  .browser-mock {
    min-height: auto;
  }

  .phone {
    width: min(292px, 100%);
    height: 540px;
    margin: 0 auto;
  }

  .web-canvas {
    min-height: 360px;
  }

  .fake-cards {
    grid-template-columns: 1fr;
  }

  .big-stat,
  .contact-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: block;
  }
}
