
:root {
  --ink: #0b1524;
  --muted: #617083;
  --line: #dce4ec;
  --surface: #f5f8fb;
  --white: #ffffff;
  --navy: #0b2e59;
  --blue: #1267b3;
  --aqua: #27b9d4;
  --red: #de433f;
  --shadow: 0 24px 70px rgba(17, 45, 79, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

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

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

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

a:focus-visible {
  outline: 3px solid rgba(39, 185, 212, 0.6);
  outline-offset: 4px;
  border-radius: 8px;
}

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

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

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  box-shadow: 0 8px 18px rgba(11, 46, 89, 0.18);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #39475a;
  font-size: 14px;
  font-weight: 650;
}

.site-header nav a,
.footer-inner > a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.footer-inner > a:hover {
  color: var(--blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 17px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: var(--navy);
  color: white;
}

.hero {
  padding: 28px 0 68px;
}

.hero-shell {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border: 1px solid #e1e8ef;
  border-radius: 30px;
  background: #f3f6f8;
  box-shadow: var(--shadow);
}

.hero-shell::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 35%, rgba(255, 255, 255, 0.1) 66%);
  content: "";
  pointer-events: none;
}

.hero-picture,
.hero-picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture img {
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 58%;
  padding: 82px 0 58px 62px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  border: 1px solid rgba(18, 103, 179, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.hero h1 {
  max-width: 650px;
  margin: 28px 0 20px;
  color: var(--ink);
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  margin-top: 12px;
  color: var(--blue);
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: #4b596b;
  font-size: 18px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 780;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 14px 30px rgba(11, 46, 89, 0.22);
}

.button-primary:hover {
  background: #0e3a70;
  box-shadow: 0 18px 34px rgba(11, 46, 89, 0.28);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.button-ghost:hover {
  background: white;
}

.hero-facts {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(97, 112, 131, 0.22);
}

.hero-facts div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-facts strong {
  color: var(--navy);
  font-size: 18px;
}

.hero-facts span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.product-chip {
  position: absolute;
  z-index: 3;
  top: 28px;
  right: 28px;
  display: flex;
  width: 68px;
  height: 68px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--red);
  color: white;
  box-shadow: 0 12px 24px rgba(101, 26, 26, 0.18);
}

.product-chip span {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.product-chip small {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 112px 0;
}

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

.section-heading h2,
.benefits-intro h2,
.closing h2 {
  margin: 14px 0 0;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 46px;
}

.split-heading p,
.centered-heading p,
.benefits-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.compare-card {
  position: relative;
  overflow: hidden;
  border: 10px solid white;
  border-radius: 28px;
  background: white;
  box-shadow: 0 22px 60px rgba(25, 46, 70, 0.13);
}

.compare-card img {
  width: 100%;
  aspect-ratio: 1.912 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.compare-label {
  position: absolute;
  z-index: 2;
  top: 26px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 14px;
  color: white;
  backdrop-filter: blur(12px);
}

.compare-before {
  left: 26px;
  background: rgba(40, 33, 27, 0.72);
}

.compare-after {
  right: 26px;
  background: rgba(11, 46, 89, 0.74);
  text-align: right;
}

.compare-label span {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  opacity: 0.76;
  text-transform: uppercase;
}

.compare-label strong {
  font-size: 15px;
}

.compare-divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-1px);
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: white;
  color: var(--blue);
  box-shadow: 0 8px 24px rgba(11, 46, 89, 0.24);
  transform: translate(-50%, -50%);
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.impact-row div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
}

.impact-row div + div {
  border-left: 1px solid var(--line);
}

.impact-row span {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 900;
}

.impact-row p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  font-weight: 740;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.centered-heading p {
  margin-top: 16px;
}

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

.step-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 12px 35px rgba(32, 61, 91, 0.07);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(32, 61, 91, 0.13);
}

.step-image {
  position: relative;
  overflow: hidden;
  background: #edf7fb;
}

.step-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 450ms ease;
}

.step-card:hover .step-image img {
  transform: scale(1.025);
}

.step-number {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(11, 46, 89, 0.9);
  color: white;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(11, 46, 89, 0.18);
  backdrop-filter: blur(8px);
}

.step-copy {
  padding: 26px 26px 30px;
}

.step-copy h3,
.benefit-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -0.02em;
}

.step-copy p,
.benefit-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.instruction-note {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin: 28px auto 0;
  padding: 11px 16px;
  border-radius: 999px;
  background: #edf8fa;
  color: #336070;
  font-size: 13px;
  font-weight: 650;
}

.instruction-note svg {
  color: var(--aqua);
}

.benefits {
  background: var(--navy);
  color: white;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: center;
}

.benefits-intro {
  position: sticky;
  top: 126px;
}

.benefits-intro .section-kicker {
  color: #72daec;
}

.benefits-intro h2 {
  color: white;
}

.benefits-intro > p {
  margin-top: 22px;
  color: #bac9d9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: white;
  font-size: 15px;
  font-weight: 780;
}

.text-link svg {
  color: #72daec;
  transition: transform 180ms ease;
}

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

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

.benefit-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(114, 218, 236, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(114, 218, 236, 0.32);
  border-radius: 15px;
  background: rgba(39, 185, 212, 0.1);
  color: #72daec;
}

.benefit-card h3 {
  color: white;
}

.benefit-card p {
  color: #afc0d2;
}

.closing {
  padding: 36px 0 96px;
  background: var(--navy);
}

.closing-card {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: space-between;
  gap: 52px;
  padding: 54px 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 20%, rgba(76, 205, 230, 0.24), transparent 30%),
    linear-gradient(120deg, #091b30, #102f55);
  color: white;
}

.closing-card > div {
  max-width: 740px;
}

.light-kicker {
  color: #72daec;
}

.closing h2 {
  color: white;
  font-size: clamp(34px, 4vw, 52px);
}

.button-light {
  min-width: max-content;
  background: white;
  color: var(--navy);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.button-light:hover {
  background: #eafcff;
}

footer {
  border-top: 1px solid var(--line);
  background: white;
}

.footer-inner {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p,
.footer-inner > a {
  color: var(--muted);
  font-size: 13px;
}

.footer-inner > a {
  font-weight: 750;
}

@media (max-width: 1080px) {
  .site-header nav {
    gap: 18px;
  }

  .hero-copy {
    width: 61%;
    padding-left: 46px;
  }

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

  .split-heading {
    gap: 50px;
  }

  .benefits-layout {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 46px;
  }
}

@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }

  .hero-shell {
    min-height: 650px;
  }

  .hero-shell::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.91) 43%, rgba(255, 255, 255, 0.1) 74%);
  }

  .hero-copy {
    width: 66%;
    padding: 68px 0 52px 38px;
  }

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

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

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

  .hero-facts div:last-child {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .split-heading,
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .steps-grid {
    gap: 14px;
  }

  .step-copy {
    padding: 22px 18px 24px;
  }

  .step-copy h3 {
    font-size: 18px;
  }

  .benefits-intro {
    position: static;
    max-width: 680px;
  }

  .closing-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .header-inner {
    min-height: 68px;
  }

  .header-cta {
    padding: 10px 13px;
    font-size: 12px;
  }

  .header-cta svg {
    display: none;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .hero {
    padding: 14px 0 50px;
  }

  .hero-shell {
    display: flex;
    min-height: auto;
    flex-direction: column;
    border-radius: 24px;
  }

  .hero-shell::after {
    display: none;
  }

  .hero-picture {
    position: relative;
    order: 2;
    aspect-ratio: 1 / 1;
  }

  .hero-picture img {
    object-fit: cover;
  }

  .hero-copy {
    order: 1;
    width: 100%;
    padding: 34px 24px 28px;
    background: white;
  }

  .eyebrow {
    padding: 8px 10px;
    font-size: 10px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(39px, 12vw, 54px);
  }

  .hero h1 span {
    margin-top: 8px;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 30px;
  }

  .product-chip {
    display: none;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading h2,
  .benefits-intro h2 {
    font-size: 38px;
  }

  .split-heading {
    margin-bottom: 32px;
  }

  .compare-card {
    border-width: 6px;
    border-radius: 20px;
  }

  .compare-card img {
    min-height: 470px;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .compare-label {
    top: 16px;
    max-width: 42%;
    padding: 9px 10px;
  }

  .compare-before {
    left: 12px;
  }

  .compare-after {
    right: 12px;
  }

  .compare-label strong {
    font-size: 11px;
    line-height: 1.25;
  }

  .impact-row,
  .steps-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .impact-row div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .centered-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .steps-grid {
    gap: 18px;
  }

  .instruction-note {
    align-items: flex-start;
    border-radius: 16px;
    line-height: 1.45;
  }

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

  .closing {
    padding: 20px 0 66px;
  }

  .closing-card {
    min-height: auto;
    gap: 34px;
    padding: 38px 26px;
    border-radius: 22px;
  }

  .closing h2 {
    font-size: 36px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 34px 0;
  }

  .footer-inner p {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ============ ЗАМОВЛЕННЯ / ФОРМА ============ */
.order-section{
  padding:36px 0 96px;
  background:var(--navy);
}
.order-card{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:0;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 86% 20%, rgba(76,205,230,.22), transparent 32%),
    linear-gradient(120deg,#091b30,#102f55);
  color:white;
  box-shadow:0 24px 70px rgba(0,0,0,.28);
}
.order-copy{padding:54px 52px}
.order-copy .section-kicker{color:#72daec}
.order-copy h2{
  margin:14px 0 18px;
  font-size:clamp(30px,3.4vw,44px);
  font-weight:820;letter-spacing:-.04em;line-height:1.06;color:white;
}
.order-copy p{color:#bac9d9;font-size:16px;line-height:1.7;margin:0 0 26px}
.order-list{list-style:none;margin:0;padding:0}
.order-list li{
  position:relative;padding:9px 0 9px 32px;color:#dbe6f2;font-size:15px;
}
.order-list li::before{
  content:"";position:absolute;left:0;top:11px;
  width:20px;height:20px;border-radius:50%;
  background:rgba(39,185,212,.16);border:1px solid rgba(114,218,236,.4);
}
.order-list li::after{
  content:"✓";position:absolute;left:5px;top:9px;color:#72daec;font-size:12px;font-weight:900;
}
.order-price-row{
  display:flex;align-items:baseline;gap:14px;margin:28px 0 6px;
}
.order-price-row .new{font-size:40px;font-weight:900;color:white}
.order-price-row .old{font-size:20px;color:#8ba0b6;text-decoration:line-through}
.order-price-row .save{
  padding:4px 12px;border-radius:999px;background:var(--red);color:white;
  font-size:13px;font-weight:800;
}

.order-form-wrap{
  background:white;color:var(--ink);
  padding:48px 46px;display:flex;flex-direction:column;justify-content:center;
}
.order-form-wrap h3{
  margin:0 0 6px;font-size:23px;letter-spacing:-.02em;color:var(--navy);
}
.order-form-wrap .fnote{color:var(--muted);font-size:14px;margin:0 0 22px}
.order-form label{
  display:block;font-size:13px;font-weight:700;color:#3a4a5a;margin:0 0 7px;
}
.order-form input{
  width:100%;height:52px;padding:0 16px;margin-bottom:18px;
  border:1px solid var(--line);border-radius:12px;font-size:16px;
  transition:border-color .18s ease,box-shadow .18s ease;
}
.order-form input:focus{
  outline:none;border-color:var(--blue);box-shadow:0 0 0 4px rgba(18,103,179,.1);
}
.order-form .button{width:100%;min-height:54px;font-size:16px}
.order-form .submit-note{
  margin:14px 0 0;text-align:center;color:var(--muted);font-size:12px;line-height:1.5;
}
.order-form .submit-note a{color:var(--blue);text-decoration:underline}

/* ============ ТАЙМЕР ============ */
.timer-strip{
  display:flex;flex-wrap:wrap;align-items:center;gap:16px;
  margin:24px 0 0;padding:18px 20px;
  border-radius:16px;background:rgba(222,67,63,.12);
  border:1px solid rgba(222,67,63,.32);
}
.timer-strip .tt{font-size:14px;font-weight:750;color:#ffd9d7}
.timer{display:flex;gap:10px}
.timer .cell{
  min-width:58px;text-align:center;padding:8px 10px;border-radius:10px;
  background:rgba(0,0,0,.24);
}
.timer .cell .num{display:block;font-size:24px;font-weight:900;line-height:1;color:white}
.timer .cell .lbl{font-size:10px;text-transform:uppercase;letter-spacing:.06em;color:#c9b3b2;margin-top:4px}

/* фіксована кнопка-CTA у шапці, що веде до форми */
.header-cta.to-order{background:var(--navy);color:white}
.header-cta.to-order:hover{background:#0e3a70}

/* ============ МОДАЛКА ДЯКУЄМО ============ */
.modal-overlay{
  position:fixed;inset:0;z-index:200;display:none;
  align-items:center;justify-content:center;padding:20px;
  background:rgba(9,20,36,.6);backdrop-filter:blur(6px);
}
.modal-overlay.open{display:flex}
.modal{
  max-width:440px;width:100%;background:white;border-radius:24px;
  padding:44px 38px;text-align:center;box-shadow:var(--shadow);
}
.modal .ok{
  width:76px;height:76px;margin:0 auto 22px;border-radius:50%;
  display:grid;place-items:center;background:#e7f8ef;color:#1a9d5f;font-size:40px;
}
.modal h3{margin:0 0 12px;color:var(--navy);font-size:24px}
.modal p{margin:0 0 24px;color:var(--muted);font-size:15px;line-height:1.6}

/* legal / info pages */
.doc-page{padding:56px 0 80px}
.doc-page h1{font-size:clamp(30px,4vw,44px);font-weight:820;letter-spacing:-.03em;color:var(--navy);margin:0 0 22px}
.doc-page h2{font-size:21px;color:var(--navy);margin:30px 0 12px}
.doc-page p,.doc-page li{color:#3a4a5a;font-size:16px;line-height:1.75;margin:0 0 12px}
.doc-page ul{padding-left:22px;margin:0 0 16px}
.doc-back{display:inline-flex;align-items:center;gap:8px;color:var(--blue);font-weight:750;margin-bottom:26px}

@media (max-width:900px){
  .order-card{grid-template-columns:1fr}
  .order-copy{padding:44px 32px}
  .order-form-wrap{padding:40px 32px}
}
@media (max-width:700px){
  .order-section{padding:20px 0 60px}
  .order-copy{padding:36px 24px}
  .order-form-wrap{padding:34px 24px}
  .timer .cell{min-width:52px}
}
