:root {
  --bg-top: #f7f8fb;
  --bg-mid: #edf1f5;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #627084;
  --line: #e5eaf1;
  --line-strong: #d8dee7;
  --nav: rgba(246, 248, 251, 0.85);

  --dark-1: #131c2d;
  --dark-2: #0b1220;
  --dark-3: #060b14;

  --blue: #2f80ff;
  --blue-soft: #e9f2ff;

  --teal: #14c1b5;
  --teal-soft: #ddfaf5;

  --amber: #f4a326;
  --amber-soft: #fff0d8;

  --radius: 22px;
  --radius-sm: 16px;

  --shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.06);

  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.82), transparent 26%),
    linear-gradient(to bottom, var(--bg-top) 0%, var(--bg-mid) 43%, #1a2130 68%, #070d17 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* NAV */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: var(--nav);
  border-bottom: 1px solid rgba(216, 222, 231, 0.9);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(47, 128, 255, 0.42);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #455162;
  font-size: 15px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.8);
  color: var(--text);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: #071121;
  color: #fff;
  box-shadow: 0 12px 24px rgba(7, 17, 33, 0.18);
}

.btn-dark:hover {
  box-shadow: 0 16px 30px rgba(7, 17, 33, 0.24);
}

.btn-light {
  background: rgba(255,255,255,0.95);
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.btn-full {
  width: 100%;
}

/* HERO */

.hero {
  padding: 58px 0 24px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.78), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(255,255,255,0.9), transparent 28%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(229,234,241,0.95);
  color: #5f6c80;
  font-size: 13px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 0 14px rgba(47, 128, 255, 0.28);
}

h1 {
  margin: 0 auto 18px;
  max-width: 900px;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.accent {
  color: var(--blue);
}

.hero p {
  margin: 0 auto;
  max-width: 720px;
  color: #5d6b80;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

/* SLIDER REBOND */

.slider-shell {
  width: min(100%, 760px);
  margin: 34px auto 0;
}

.bounce-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 26px;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.bounce-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 18px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
}

.pill svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.pill.blue {
  background: linear-gradient(135deg, #3b82f6, #2f7df4);
}

.pill.teal {
  background: linear-gradient(135deg, #1fc7bd, #12b9b0);
}

.pill.amber {
  background: linear-gradient(135deg, #f6ae3b, #f29b1f);
}

/* FEATURES */

.features {
  padding: 24px 0 8px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card,
.offer-card,
.step-card,
.brief-card,
.form-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(229,234,241,0.98);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.feature-card:hover,
.offer-card:hover,
.step-card:hover,
.brief-card:hover,
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
}

.feature-card {
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon.blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.feature-icon.teal {
  background: var(--teal-soft);
  color: #0f9c8b;
}

.feature-icon.amber {
  background: var(--amber-soft);
  color: #dc8a15;
}

.feature-card h3 {
  margin: 2px 0 6px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: #5d6b80;
  line-height: 1.55;
  font-size: 15px;
}

/* OFFERS */

.offers {
  padding: 20px 0 34px;
  position: relative;
  z-index: 2;
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 18px;
}

.offer-card {
  padding: 26px;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 20px;
  align-items: center;
  min-height: 300px;
}

.offer-card.featured {
  background: linear-gradient(135deg, rgba(241,247,255,0.96) 0%, rgba(255,255,255,0.98) 52%, rgba(237,252,250,0.98) 100%);
  border-color: rgba(56, 120, 246, 0.42);
  box-shadow: 0 24px 44px rgba(39, 119, 255, 0.10);
  position: relative;
  overflow: hidden;
}

.offer-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(38,119,255,0.11), transparent 34%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1667f5, #2f8cff);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 10px 24px rgba(38, 119, 255, 0.18);
}

.offer-card h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 37px);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 18px;
  flex-wrap: wrap;
}

.price-main {
  font-size: clamp(48px, 6vw, 70px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: var(--blue);
}

.price-main.orange {
  color: #f28f10;
}

.price-suffix {
  font-size: 22px;
  font-weight: 700;
  color: #5371a9;
}

.pay-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}

.pay-note {
  display: inline-flex;
  align-items: center;
  color: #5f6d82;
  font-size: 13px;
  font-weight: 600;
}

.offer-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.offer-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #435066;
  line-height: 1.45;
  font-size: 15px;
}

.check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 1px;
}

.check.orange {
  color: #f39a20;
}

.illustration {
  width: 100%;
  aspect-ratio: 0.82;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,247,252,0.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.illustration.orange {
  background: linear-gradient(180deg, #fff8ef, #fff3e4);
}

.browser-illus {
  position: absolute;
  inset: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(26,36,56,0.06);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.illus-dots {
  display: flex;
  gap: 6px;
}

.illus-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c3cee0;
}

.illus-image {
  height: 88px;
  border-radius: 14px;
  background: linear-gradient(180deg, #dfe8fb 0%, #c7d7f9 100%);
  position: relative;
  overflow: hidden;
}

.illus-image::before,
.illus-image::after {
  content: "";
  position: absolute;
}

.illus-image::before {
  inset: 20px 20px 16px 20px;
  background: rgba(255,255,255,0.7);
  clip-path: polygon(0 100%, 45% 40%, 70% 68%, 100% 20%, 100% 100%);
}

.illus-image::after {
  width: 18px;
  height: 18px;
  top: 12px;
  right: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.82);
}

.illus-line,
.illus-line-short,
.illus-card-line {
  border-radius: 999px;
  background: #cfdaf0;
}

.illus-line {
  height: 10px;
  width: 100%;
}

.illus-line-short {
  height: 10px;
  width: 60%;
}

.illus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.illus-card-line {
  height: 10px;
}

.illustration-center {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

/* DARK ZONE */

.dark-zone {
  position: relative;
  margin-top: -34px;
  padding: 26px 0 40px;
  color: #fff;
  overflow: hidden;
}

.dark-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(160,173,196,0.14), rgba(7,13,23,0) 14%),
    linear-gradient(to bottom, rgba(8,14,24,0) 0%, rgba(8,14,24,0.56) 12%, rgba(7,13,23,0.96) 28%, #07101d 100%);
  pointer-events: none;
}

.dark-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'%3E%3Cg fill='none' stroke='%232e95ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.42'%3E%3Cpath d='M15 620h210l60 60h95l80 80h170'/%3E%3Cpath d='M50 520h200l90 90v130'/%3E%3Cpath d='M255 820l120-120V520l84-84V320l125-125h185'/%3E%3Cpath d='M0 760h180l54 54v76'/%3E%3Cpath d='M1435 450h-180l-85 85v170l-70 70'/%3E%3Cpath d='M1545 560h-110l-64 64v170h-120l-70 70'/%3E%3Cpath d='M1445 760v-200l-130-130h-120'/%3E%3Cpath d='M1080 210h220l100 100v150'/%3E%3Cpath d='M150 120h240l85 85h130'/%3E%3Cpath d='M1170 110h180l70 70'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ffb54d' stroke-width='2' stroke-linecap='round' opacity='0.42'%3E%3Cpath d='M1365 170h120'/%3E%3Cpath d='M1210 650h120l70 70v120'/%3E%3Cpath d='M1045 768l50-50h126l75-75'/%3E%3Cpath d='M108 835l90-90v-130'/%3E%3Cpath d='M1285 360v90l50 50h110'/%3E%3C/g%3E%3Cg fill='%232e95ff' opacity='0.55'%3E%3Ccircle cx='0' cy='760' r='6'/%3E%3Ccircle cx='548' cy='516' r='6'/%3E%3Ccircle cx='1438' cy='792' r='6'/%3E%3Ccircle cx='86' cy='519' r='7'/%3E%3Ccircle cx='1420' cy='449' r='7'/%3E%3C/g%3E%3Cg fill='%23ffb54d' opacity='0.65'%3E%3Ccircle cx='1448' cy='170' r='7'/%3E%3Ccircle cx='1440' cy='792' r='7'/%3E%3Ccircle cx='198' cy='835' r='7'/%3E%3Ccircle cx='1296' cy='360' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.48;
  mix-blend-mode: screen;
  pointer-events: none;
}

.dark-zone > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 24px;
}

.section-title h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 48px);
  margin: 0 0 10px;
  letter-spacing: -0.05em;
}

.section-title p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.step-card {
  background: rgba(12, 20, 34, 0.54);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
  padding: 18px;
  color: #fff;
  backdrop-filter: blur(4px);
}

.step-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
  border: 1px solid currentColor;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 6px rgba(255,255,255,0.03);
}

.step-number.blue {
  color: #2f8dff;
}

.step-number.teal {
  color: #1cc4b8;
}

.step-number.amber {
  color: #f6aa37;
}

.step-card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  font-size: 15px;
}

/* BRIEF */

.brief-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.brief-card,
.form-card {
  background: rgba(10, 18, 32, 0.72);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.brief-card {
  padding: 24px;
  color: #fff;
}

.brief-card h3 {
  margin: 0 0 10px;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.brief-card p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  line-height: 1.6;
}

.brief-items {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.brief-item {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.brief-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
}

.brief-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.brief-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brief-item-icon.blue {
  background: rgba(38,119,255,0.14);
  color: #68a5ff;
}

.brief-item-icon.teal {
  background: rgba(18,185,176,0.14);
  color: #5fe0d6;
}

.brief-item-icon.amber {
  background: rgba(245,166,35,0.14);
  color: #ffbd61;
}

.brief-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #fff;
}

.brief-item span {
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  font-size: 14px;
}

.form-card {
  padding: 22px;
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(5, 11, 20, 0.64);
  color: #fff;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.34);
}

.field select {
  color: rgba(255,255,255,0.78);
}

.field input:hover,
.field select:hover,
.field textarea:hover,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(69, 141, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(38,119,255,0.10);
  background: rgba(7, 14, 25, 0.78);
  transform: translateY(-1px);
}

.field textarea {
  min-height: 88px;
  resize: vertical;
}

.submit-row {
  margin-top: 16px;
}

.privacy-note {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(255,255,255,0.56);
  font-size: 13px;
  line-height: 1.45;
}

.privacy-note svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}

/* FOOTER */

.site-footer {
  padding: 34px 0 20px;
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.86);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 700'%3E%3Cg fill='none' stroke='%232e95ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' opacity='0.32'%3E%3Cpath d='M20 420h190l60 60h120l88 88h180'/%3E%3Cpath d='M40 250h220l110 110v180'/%3E%3Cpath d='M1360 160h160v80l-70 70h-120'/%3E%3Cpath d='M1540 430h-110l-70 70v120h-150'/%3E%3Cpath d='M1200 620l90-90h120l90-90'/%3E%3C/g%3E%3Cg fill='none' stroke='%23ffb54d' stroke-width='2' stroke-linecap='round' opacity='0.28'%3E%3Cpath d='M100 640l80-80v-100'/%3E%3Cpath d='M1240 320h90l80 80v100'/%3E%3Cpath d='M1460 540v120h-120l-70 70'/%3E%3C/g%3E%3Cg fill='%232e95ff' opacity='0.42'%3E%3Ccircle cx='40' cy='420' r='6'/%3E%3Ccircle cx='370' cy='360' r='6'/%3E%3Ccircle cx='1360' cy='160' r='6'/%3E%3Ccircle cx='1210' cy='620' r='6'/%3E%3C/g%3E%3Cg fill='%23ffb54d' opacity='0.5'%3E%3Ccircle cx='180' cy='560' r='7'/%3E%3Ccircle cx='1410' cy='400' r='7'/%3E%3Ccircle cx='1340' cy='690' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
  mix-blend-mode: screen;
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr;
  gap: 26px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-block h3,
.footer-col h4 {
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

.footer-brand-block h3 {
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(135deg, #66a8ff, #36d3c6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-brand-block p {
  margin: 0;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  max-width: 320px;
}

.footer-domain {
  margin-top: 10px !important;
  font-size: 14px;
  color: rgba(255,255,255,0.48) !important;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.64);
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.legal-area {
  padding: 22px 0 10px;
  display: grid;
  gap: 12px;
}

.legal-card {
  scroll-margin-top: 96px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.legal-card summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-card summary::-webkit-details-marker {
  display: none;
}

.legal-card summary::after {
  content: "+";
  font-size: 22px;
  line-height: 1;
  color: rgba(255,255,255,0.68);
}

.legal-card[open] summary::after {
  content: "–";
}

.legal-content {
  padding: 0 20px 22px;
  color: rgba(255,255,255,0.74);
  line-height: 1.7;
  font-size: 15px;
}

.legal-content h3,
.legal-content h4 {
  color: #fff;
  letter-spacing: -0.02em;
  margin: 18px 0 8px;
}

.legal-content h3 {
  font-size: 20px;
}

.legal-content h4 {
  font-size: 16px;
}

.legal-content p,
.legal-content li {
  margin: 0 0 10px;
}

.legal-content ul,
.legal-content ol {
  margin: 10px 0 0 18px;
  padding: 0;
}

.legal-content strong {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.footer-sub {
  color: rgba(255,255,255,0.56);
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-copy {
  color: rgba(255,255,255,0.56);
  font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 1120px) {
  .offers-grid,
  .brief-grid,
  .features-grid,
  .steps,
  .form-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .illustration {
    max-width: 260px;
  }

  .offer-card .illustration {
    order: -1;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    min-height: 72px;
  }

  .hero {
    padding-top: 42px;
  }

  .slider-shell {
    width: min(100%, 92vw);
  }

  .pill {
    padding: 14px 20px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  body {
    background: linear-gradient(to bottom, #f7f8fb 0%, #eef2f6 46%, #182132 68%, #070d17 100%);
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .nav .btn {
    width: 100%;
  }

  .offer-card,
  .feature-card,
  .brief-card,
  .form-card,
  .step-card {
    padding: 20px;
  }

  .price-main {
    font-size: 52px;
  }

  .brief-card h3 {
    font-size: 34px;
  }

  .footer-top {
    gap: 20px;
  }

  .legal-card summary,
  .legal-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bounce-track {
    transform: none !important;
  }

  .btn,
  .feature-card,
  .offer-card,
  .step-card,
  .brief-card,
  .form-card,
  .brief-item,
  .pill {
    transition: none;
  }
}
