/* ===========================================================
   DOHRÁNO — landing page
   Světlý minimalistický styl · černá / bílá / červená · Montserrat
   =========================================================== */

:root {
  --red: #e4002b;
  --red-dark: #c00024;
  --ink: #0a0a0b;
  --ink-soft: #3a3a3f;
  --muted: #767680;
  --line: #e7e7ea;
  --bg: #ffffff;
  --bg-alt: #f6f6f7;
  --bg-dark: #0a0a0b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 8px rgba(10, 10, 11, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 10, 11, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 10, 11, 0.18);
  --maxw: 1160px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.02em; margin: 0; font-weight: 800; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  padding: 13px 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(228, 0, 43, 0.28); }
.btn-primary:hover { background: var(--red-dark); box-shadow: 0 10px 26px rgba(228, 0, 43, 0.36); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-name { font-weight: 900; letter-spacing: 0.02em; font-size: 20px; }
.brand-mark {
  width: 18px; height: 18px;
  background: var(--red);
  border-radius: 4px;
  transform: skewX(-10deg);
  box-shadow: inset -6px 0 0 var(--ink);
}
.main-nav { display: flex; gap: 28px; margin-left: auto; }
.main-nav a { font-weight: 600; font-size: 15px; color: var(--ink-soft); transition: color 0.15s; }
.main-nav a:hover { color: var(--red); }
.header-cta { margin-left: 4px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.mobile-nav a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav a.btn { border: 2px solid transparent; margin-top: 10px; justify-content: center; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(228, 0, 43, 0.10), transparent 70%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
}
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 0 rgba(228, 0, 43, 0.5); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(228, 0, 43, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(228, 0, 43, 0); }
  100% { box-shadow: 0 0 0 0 rgba(228, 0, 43, 0); }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  margin: 20px 0 18px;
  letter-spacing: -0.03em;
}
.hero h1 .accent { color: var(--red); }
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); max-width: 520px; margin: 0 0 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-points li { position: relative; padding-left: 24px; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.hero-points li::before {
  content: "";
  position: absolute; left: 0; top: 6px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}

/* Hero visual — phone mock */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 300px;
  background: #fff;
  border-radius: 34px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.phone-notch { width: 120px; height: 22px; background: var(--ink); border-radius: 0 0 14px 14px; margin: 0 auto 8px; }
.phone-screen { border-radius: 24px; overflow: hidden; border: 1px solid var(--line); }
.ig-bar { display: flex; align-items: center; gap: 8px; padding: 9px 12px; font-size: 13px; font-weight: 700; }
.ig-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #ff7a3c); flex: none; }
.ig-name { flex: 1; }
.ig-dots { color: var(--muted); letter-spacing: 1px; }
.phone-screen img { width: 100%; }
.ig-actions { display: flex; gap: 16px; padding: 10px 12px 4px; }
.ig-ico { width: 22px; height: 22px; display: inline-block; }
.ig-ico.heart { background: var(--red); -webkit-mask: no-repeat center / contain; mask: no-repeat center / contain; -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-8-5.3-8-11a4.5 4.5 0 0 1 8-2.8A4.5 4.5 0 0 1 20 10c0 5.7-8 11-8 11z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 21s-8-5.3-8-11a4.5 4.5 0 0 1 8-2.8A4.5 4.5 0 0 1 20 10c0 5.7-8 11-8 11z'/%3E%3C/svg%3E"); }
.ig-ico.comment, .ig-ico.share { background: var(--ink); -webkit-mask: no-repeat center / contain; mask: no-repeat center / contain; }
.ig-ico.comment { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 11.5a8.5 8.5 0 0 1-12.3 7.6L3 21l1.9-5.7A8.5 8.5 0 1 1 21 11.5z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M21 11.5a8.5 8.5 0 0 1-12.3 7.6L3 21l1.9-5.7A8.5 8.5 0 1 1 21 11.5z'/%3E%3C/svg%3E"); }
.ig-ico.share { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M22 2 11 13M22 2l-7 20-4-9-9-4 20-7z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M22 2 11 13M22 2l-7 20-4-9-9-4 20-7z'/%3E%3C/svg%3E"); }
.ig-caption { padding: 4px 12px 14px; font-size: 12.5px; color: var(--ink); line-height: 1.45; }
.ig-caption .muted { color: var(--red); font-weight: 600; }

.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  line-height: 1.35;
}
.floating-card small { font-weight: 500; color: var(--muted); }
.card-a { top: 40px; left: -8px; animation: floaty 5s ease-in-out infinite; }
.card-b { bottom: 60px; right: -6px; color: var(--red); animation: floaty 5s ease-in-out infinite 1.4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Stat strip */
.stat-strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.stat { text-align: center; }
.stat b { display: block; font-size: 30px; font-weight: 900; color: var(--ink); letter-spacing: -0.02em; }
.stat span { font-size: 13px; color: var(--muted); font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.kicker {
  display: inline-block;
  font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.kicker.light { color: #ff6a80; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; }
.section-sub { color: var(--ink-soft); font-size: 17px; margin: 16px 0 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  position: relative;
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.step-num { font-size: 15px; font-weight: 900; color: var(--red); letter-spacing: 0.05em; }
.step h3 { font-size: 21px; margin: 14px 0 10px; }
.step p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- Samples ---------- */
.samples { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.sample {
  display: flex;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.sample:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sample-img { flex: none; width: 150px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--bg-alt); }
.sample-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.tag {
  display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--red); background: rgba(228, 0, 43, 0.08);
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.sample-body h3 { font-size: 20px; margin: 0 0 8px; }
.sample-body p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }
.samples-note { margin-top: 30px; text-align: center; }
.samples-note p {
  display: inline-block;
  background: #fff; border: 1px dashed var(--line);
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; color: var(--ink-soft); font-size: 15px; margin: 0;
}

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-ico { font-size: 30px; display: block; margin-bottom: 14px; }
.benefit h3 { font-size: 19px; margin: 0 0 8px; }
.benefit p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- Onboarding (dark) ---------- */
.section-dark { background: var(--bg-dark); color: #fff; }
.onboarding { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.onboarding h2 { font-size: clamp(26px, 3.6vw, 38px); color: #fff; }
.onboarding p { color: #c7c7cf; font-size: 17px; }
.onboarding-steps { margin: 22px 0 30px; padding: 0; list-style: none; counter-reset: ob; }
.onboarding-steps li {
  position: relative;
  padding: 14px 0 14px 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7d7df; font-size: 15.5px;
}
.onboarding-steps li b { color: #fff; }
.onboarding-steps li::before {
  counter-increment: ob;
  content: counter(ob);
  position: absolute; left: 0; top: 12px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  font-weight: 900; font-size: 15px;
  border-radius: 10px;
}
.onboarding-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 300px;
  margin: 0 auto;
}

/* ---------- Pricing ---------- */
.billing-toggle {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: -20px 0 40px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.billing-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.billing-btn.is-active { background: var(--ink); color: #fff; }
.billing-save {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 3px 9px;
  border-radius: 999px;
}
.billing-btn.is-active .billing-save { background: var(--red); }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan-featured {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.plan-featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(228, 0, 43, 0.3);
  white-space: nowrap;
}
.plan-name { font-size: 15px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.plan-desc { color: var(--muted); font-size: 14px; margin: 8px 0 20px; min-height: 40px; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.plan-price .amount { font-size: 48px; font-weight: 900; letter-spacing: -0.03em; }
.plan-price .per { font-size: 14px; color: var(--muted); font-weight: 600; }
.plan-features { list-style: none; padding: 0; margin: 0 0 26px; flex: 1; }
.plan-features li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 14.5px; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.plan-features li b { color: var(--ink); }
.plan-features li::before {
  content: "";
  position: absolute; left: 0; top: 14px;
  width: 13px; height: 7px;
  border-left: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(-45deg);
}
.plan-hint { text-align: center; font-size: 13px; color: var(--red); font-weight: 700; margin: 14px 0 0; }
.plan-custom { background: var(--bg-alt); border-style: dashed; }
.plan-price .amount-text { font-size: 26px; line-height: 1.85; }
.plan-price .amount.swap { animation: priceSwap 0.3s var(--ease); }
@keyframes priceSwap {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: none; }
}
/* Comparison table */
.compare-wrap { margin-top: 56px; }
.compare-title { text-align: center; font-size: 22px; font-weight: 900; margin-bottom: 26px; }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 14.5px; }
.compare th, .compare td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--line); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare thead th {
  font-size: 13px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
  padding-top: 20px; padding-bottom: 16px;
}
.compare tbody th[scope="row"] {
  text-align: left; font-weight: 600; color: var(--ink);
  max-width: 300px;
}
.compare tbody th[scope="row"] small { display: block; font-weight: 500; font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.compare .compare-feature-col { width: 34%; }
.compare .col-featured { background: rgba(228, 0, 43, 0.045); }
.compare thead .col-featured { color: var(--red); }
.compare .yes, .compare .no { display: inline-block; }
.compare .yes {
  width: 15px; height: 9px;
  border-left: 2.5px solid var(--red); border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg) translateY(-2px);
}
.compare .no { width: 14px; height: 2px; background: var(--line); border-radius: 2px; vertical-align: middle; }
.compare-cta-row td { padding: 18px; }

.pricing-foot { text-align: center; margin-top: 34px; color: var(--muted); font-size: 15px; }
.pricing-foot a { color: var(--red); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--ink); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16.5px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px; font-weight: 400; color: var(--red);
  transition: transform 0.2s;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-copy h2 { font-size: clamp(28px, 4vw, 40px); }
.contact-copy p { color: var(--ink-soft); font-size: 17px; margin: 14px 0 26px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; flex-direction: column; padding: 14px 0; border-top: 1px solid var(--line); }
.contact-list li span { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-list li a { font-weight: 700; color: var(--red); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(228, 0, 43, 0.12);
}
.field textarea { resize: vertical; }
.form-note { font-size: 12.5px; color: var(--muted); text-align: center; margin: 12px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #fff; padding: 56px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: start; }
.footer-brand .brand-mark { display: inline-block; vertical-align: middle; }
.footer-brand .brand-name { color: #fff; font-size: 22px; margin-left: 8px; vertical-align: middle; }
.footer-brand p { color: #9a9aa4; font-size: 15px; margin: 14px 0 0; max-width: 340px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 28px; align-content: start; justify-content: flex-end; }
.footer-nav a { color: #c7c7cf; font-weight: 600; font-size: 15px; transition: color 0.15s; }
.footer-nav a:hover { color: var(--red); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: #7c7c86; font-size: 13.5px;
}
.footer-bottom a { color: #c7c7cf; font-weight: 600; }
.footer-bottom a:hover { color: var(--red); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .steps, .benefits, .pricing { grid-template-columns: 1fr; }
  .samples { grid-template-columns: 1fr; }
  .onboarding, .contact-grid, .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-4px); }
  .footer-nav { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .hero { padding: 44px 0 20px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .sample { flex-direction: column; text-align: center; }
  .sample-img { width: 60%; }
  .field-row { grid-template-columns: 1fr; }
  .floating-card { display: none; }
  .footer-bottom { justify-content: flex-start; }
}
