/* ============================================================
   VibeDevZone — лендинг услуги создания сайтов
   Чистый CSS, без зависимостей. Цвета — под Avito-карточки.
   ============================================================ */

:root {
  --violet: #7c5cff;
  --violet-deep: #5b2bdd;
  --blue: #3b82f6;
  --indigo: #4f46e5;

  --ink: #0b0b1f;
  --text: #14161f;
  --muted: #5b6472;
  --bg: #f6f7fb;
  --surface: #ffffff;
  --border: rgba(16, 18, 40, 0.1);

  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 22px 55px rgba(24, 22, 70, 0.1);
  --shadow-soft: 0 10px 30px rgba(24, 22, 70, 0.08);

  --grad: linear-gradient(135deg, #4f46e5 0%, #7c3aed 52%, #a855f7 100%);
  --grad-dark: linear-gradient(155deg, #161539 0%, #2a1a6b 45%, #4423a8 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.grad-text {
  background: linear-gradient(100deg, #b9a6ff, #8f9bff 40%, #c4a3ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.18);
}

/* ---------- Buttons ---------- */
.btn {
  --b: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--b);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease,
    background-color 0.18s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--grad);
  box-shadow: 0 12px 30px rgba(95, 60, 230, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 16px 38px rgba(95, 60, 230, 0.45);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.btn-ghost:hover {
  background: rgba(124, 92, 255, 0.06);
  border-color: rgba(124, 92, 255, 0.4);
}

.btn-outline {
  color: var(--violet-deep);
  background: transparent;
  border-color: rgba(124, 92, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(124, 92, 255, 0.08);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 80;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled .header-inner {
  background: rgba(255, 255, 255, 0.86);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--grad);
  box-shadow: 0 6px 16px rgba(95, 60, 230, 0.4);
}

.brand-text {
  font-size: 1.05rem;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.brand-footer {
  background: #fff;
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.brand-footer .brand-logo {
  height: 54px;
}

@media (max-width: 560px) {
  .brand-logo {
    height: 42px;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: #2a2f3a;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover {
  background: rgba(124, 92, 255, 0.1);
}

.main-nav a.active:not(.nav-cta) {
  color: var(--violet-deep);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(124, 92, 255, 0.4),
    0 6px 18px rgba(95, 60, 230, 0.18);
  backdrop-filter: blur(8px) saturate(140%);
}

.main-nav .nav-cta {
  color: #fff;
  background: var(--grad);
  margin-left: 6px;
}

.main-nav .nav-cta:hover {
  background: var(--grad);
  opacity: 0.92;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  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);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 90px;
  background: var(--grad-dark);
  color: #f4f4ff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}

.blob-1 {
  width: 480px;
  height: 480px;
  background: #6d3bff;
  top: -120px;
  right: -80px;
  animation: float1 14s ease-in-out infinite;
}

.blob-2 {
  width: 420px;
  height: 420px;
  background: #2563eb;
  bottom: -140px;
  left: -90px;
  animation: float2 17s ease-in-out infinite;
}

.blob-3 {
  width: 320px;
  height: 320px;
  background: #a855f7;
  top: 40%;
  left: 45%;
  opacity: 0.4;
  animation: float1 20s ease-in-out infinite;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 78%);
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -24px); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-copy .eyebrow {
  color: rgba(235, 232, 255, 0.92);
}

.hero-copy .eyebrow .dot {
  background: #c9b8ff;
  box-shadow: 0 0 0 4px rgba(201, 184, 255, 0.22);
}

.hero h1 {
  margin-top: 18px;
}

.lead {
  margin-top: 20px;
  max-width: 52ch;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: rgba(232, 231, 255, 0.86);
}

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

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-trust {
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-trust li {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.hero-trust span {
  font-size: 0.82rem;
  color: rgba(232, 231, 255, 0.7);
  margin-top: 4px;
}

/* ---------- Hero browser mockup ---------- */
.hero-visual {
  position: relative;
}

.browser {
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 40px 90px rgba(8, 6, 40, 0.5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.float {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: #f0f1f6;
  border-bottom: 1px solid #e4e6ee;
}

.tl-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d2d5de;
}
.tl-dot:nth-child(1) { background: #ff5f57; }
.tl-dot:nth-child(2) { background: #febc2e; }
.tl-dot:nth-child(3) { background: #28c840; }

.browser-url {
  margin-left: 10px;
  font-size: 0.72rem;
  color: #8b909c;
  background: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  flex: 1;
}

.browser-body {
  padding: 16px;
  background: linear-gradient(180deg, #fbfbff, #f4f3fc);
}

.m-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.m-logo {
  width: 60px;
  height: 14px;
  border-radius: 6px;
  background: var(--grad);
}
.m-links {
  display: flex;
  gap: 8px;
}
.m-links i {
  width: 26px;
  height: 8px;
  border-radius: 4px;
  background: #d9dae6;
}

.m-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.m-hero-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ln {
  height: 9px;
  border-radius: 5px;
  background: #d6d8e6;
}
.ln.w70 { width: 70%; background: #b9bce0; }
.ln.w90 { width: 90%; }
.ln.w50 { width: 50%; }
.m-btn {
  margin-top: 6px;
  width: 70px;
  height: 22px;
  border-radius: 999px;
  background: var(--grad);
}
.m-hero-card {
  height: 96px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ece9ff, #d9d6ff);
}

.m-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.m-card {
  height: 48px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eceaf6;
  box-shadow: 0 6px 14px rgba(40, 30, 90, 0.05);
}

.badge {
  position: absolute;
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 16px;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(8, 6, 40, 0.28);
}

.badge-1 {
  top: 30px;
  left: -26px;
  animation: floatY 5s ease-in-out infinite;
}
.badge-1::before {
  content: "📈 ";
}
.badge-2 {
  bottom: 40px;
  right: -20px;
  animation: floatY 7s ease-in-out infinite reverse;
}
.badge-2::before {
  content: "⚡ ";
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-soft {
  background: linear-gradient(180deg, #ffffff, #eef0fa);
}

.section-head {
  max-width: 660px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.section-head h2 {
  margin-top: 12px;
}

.section-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* ---------- Value strip ---------- */
.value {
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

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

.value article {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
}

.v-icon {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 10px;
}

.value h3 {
  margin-bottom: 6px;
}

.value p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Cards (services) ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-featured {
  border-color: rgba(124, 92, 255, 0.45);
  box-shadow: 0 22px 50px rgba(95, 60, 230, 0.16);
}

.card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--grad);
  padding: 5px 12px;
  border-radius: 999px;
}

.card h3 {
  margin-bottom: 8px;
}

.card > p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* mini visuals inside service cards */
.card-visual {
  height: 110px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #f3f1ff, #e7e3ff);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
}

.card-visual span {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 14px rgba(60, 40, 120, 0.1);
}

.card-visual.lp span:nth-child(1) { width: 40%; height: 70%; }
.card-visual.lp span:nth-child(2) { width: 18%; height: 45%; align-self: flex-end; }
.card-visual.lp span:nth-child(3) { width: 18%; height: 30%; align-self: flex-end; }

.card-visual.vc span { width: 30%; height: 60%; }
.card-visual.vc span:nth-child(2) { height: 80%; }

.card-visual.mp span { width: 26%; height: 75%; }
.card-visual.mp span:nth-child(2) { height: 55%; align-self: flex-start; }
.card-visual.mp span:nth-child(3) { height: 90%; }

.ticks {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.ticks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 0.94rem;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: inset 0 0 0 0 #fff;
}

.ticks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- Features grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.f-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--violet);
  letter-spacing: 0.04em;
}

.feature h3 {
  margin: 10px 0 6px;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Process steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.steps li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  box-shadow: var(--shadow-soft);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(95, 60, 230, 0.3);
}

.steps h3 {
  margin-bottom: 6px;
}

.steps p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.price-featured {
  border-color: rgba(124, 92, 255, 0.5);
  box-shadow: 0 26px 56px rgba(95, 60, 230, 0.2);
}

.price {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 14px 0 4px;
}

.price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card .ticks {
  flex: 1;
  margin-bottom: 24px;
}

.price-note {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- Contact ---------- */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
  color: #f3f2ff;
}

.contact-bg {
  position: absolute;
  inset: 0;
}

.contact-bg .blob-1 {
  width: 420px;
  height: 420px;
  background: #6d3bff;
  top: -120px;
  right: 10%;
}

.contact-bg .blob-2 {
  width: 360px;
  height: 360px;
  background: #2563eb;
  bottom: -140px;
  left: 5%;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 14ch;
}

.contact-copy p {
  margin-top: 16px;
  max-width: 44ch;
  color: rgba(233, 231, 255, 0.85);
  font-size: 1.05rem;
}

.contact-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-tg {
  color: #fff;
  background: #2aabee;
}
.btn-avito {
  color: #fff;
  background: #00aaff;
}
.btn-avito:hover {
  background: #0098e5;
}
.btn-wa {
  color: #fff;
  background: #25d366;
}
.btn-email {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-email:hover {
  background: rgba(255, 255, 255, 0.26);
}
.btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-form {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.field {
  display: block;
  margin-bottom: 16px;
}

.field span {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 7px;
  color: rgba(233, 231, 255, 0.82);
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa0ad;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--violet);
  outline-offset: 1px;
}

.form-status {
  margin-top: 12px;
  min-height: 20px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}
.form-status.success {
  color: #7af0a8;
}
.form-status.error {
  color: #ff9a9a;
}

.form-note {
  margin-top: 8px;
  font-size: 0.82rem;
  color: rgba(233, 231, 255, 0.6);
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cfd0e0;
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.site-footer .brand {
  color: #fff;
}

.footer-tag {
  color: #9a9cb5;
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: #6f7191;
  margin-top: 4px;
}

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(95, 60, 230, 0.45);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 8px;
    left: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 14px;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .cards-3 {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

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

@media (max-width: 560px) {
  .hero {
    padding-top: 128px;
  }

  .hero-trust {
    gap: 22px;
  }

  .value-grid,
  .features-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .value {
    margin-top: -36px;
  }

  .badge-1 { left: 0; }
  .badge-2 { right: 0; }

  .floating-cta {
    left: 14px;
    right: 14px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .blob,
  .float,
  .badge {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
