*, *::before, *::after { box-sizing: border-box; }

:root {
  --blue: #3D5AFE;
  --blue-dark: #2B4CF0;
  --ink: #1E1F24;
  --bg: #FAFAFA;
  --muted: rgba(30,31,36,0.6);
  --muted-light: rgba(30,31,36,0.5);
  --border: rgba(30,31,36,0.08);
  --border-strong: rgba(30,31,36,0.15);
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); }
a:hover { color: var(--blue-dark); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,250,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 5px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-loop {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo-agency {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--blue);
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(30,31,36,0.6);
  text-decoration: none;
  transition: color .15s;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--blue); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--blue); }
.btn-pill {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(61,90,254,0.28);
  transition: background .15s;
  cursor: pointer;
  border: none;
}
.btn-pill:hover { background: var(--blue-dark); color: #fff; }
.btn-pill:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.btn-pill-lg {
  font-size: 16px;
  padding: 16px 30px;
  box-shadow: 0 12px 24px rgba(61,90,254,0.28);
}

/* mobile nav */
.hamburger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.hamburger:hover { background: rgba(30,31,36,0.06); }
.hamburger:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 20px 32px 28px;
  flex-direction: column;
  gap: 18px;
  animation: fadeDown .18s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 16px; }
.mobile-menu .header-phone { font-size: 16px; }
.mobile-menu .btn-pill { font-size: 15px; padding: 14px 22px; text-align: center; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: #fff;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo-loop { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }
.footer-logo-agency { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--blue); }
.footer-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); max-width: 280px; margin: 12px 0 0; }
.footer-col-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-link { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-link:hover { color: #fff; }
.footer-muted { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── SECTIONS / LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 32px; }
.container-md { max-width: 900px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

/* ── HERO ── */
.hero-section { padding: 64px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
.hero-pill {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}
.hero-pill-dark {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(30,31,36,0.65);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-social-proof {
  font-size: 14px;
  color: var(--muted-light);
}

/* hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  justify-self: end;
}
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(30,31,36,0.14);
  background: #e8eaf0;
}
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8eaf0 0%, #c5cae9 100%);
}
.hero-photo-placeholder svg { opacity: 0.3; }

@keyframes loopFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(30,31,36,0.12);
  animation: loopFloat 5s ease-in-out infinite;
}
.float-card-dark { background: var(--ink); }

.float-verified {
  top: -18px; left: -24px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-duration: 5s;
}
.float-verified-icon {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-verified-text { font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; }

.float-income {
  top: 24px; right: -28px;
  padding: 16px 20px;
  animation-duration: 5.5s;
  animation-delay: 0.4s;
}
.float-income-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.float-income-value { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: #fff; }

.float-chart {
  bottom: 64px; left: -32px;
  padding: 16px;
  width: 158px;
  animation-duration: 6s;
  animation-delay: 0.2s;
}
.float-chart-label { font-size: 11px; color: var(--muted-light); margin-bottom: 8px; }

.float-dialog {
  bottom: -20px; right: -16px;
  padding: 14px 18px;
  max-width: 220px;
  animation-duration: 5.2s;
  animation-delay: 0.6s;
}
.float-dialog-label { font-size: 11px; color: rgba(30,31,36,0.4); margin-bottom: 4px; }
.float-dialog-text { font-size: 13px; color: var(--ink); line-height: 1.4; }

/* ── 3-CARD BLOCK ── */
.cards3-section { padding: 24px 0 80px; }
.cards3-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.card-blue { background: var(--blue); border-radius: 28px; padding: 32px; color: #fff; display: flex; flex-direction: column; gap: 18px; }
.card-dark { background: var(--ink); border-radius: 28px; padding: 32px; color: #fff; display: flex; flex-direction: column; gap: 18px; }
.card-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.card-body-blue { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.85); }
.card-body-dark { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.7); }

/* ── CATEGORIES ── */
.cat-section { padding: 0 0 88px; }
.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.cat-card:hover { box-shadow: 0 8px 24px rgba(30,31,36,0.1); transform: translateY(-2px); }
.cat-name { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink); min-height: 2.4em; }
.cat-pay { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--blue); }
.cat-format { font-size: 14px; color: var(--muted-light); }
.cat-link {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}
.cat-link:hover { color: var(--blue); }

/* ── STEPS ── */
.steps-section { padding: 0 0 88px; }
.steps-list { display: flex; flex-direction: column; gap: 20px; }
.step-row {
  border-radius: 28px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.step-row-dark { background: var(--ink); }
.step-row-blue { background: var(--blue); }
.step-content { flex: 1; min-width: 0; }
.step-num-dark { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--blue); margin-bottom: 14px; }
.step-num-blue { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.step-title-light { font-family: var(--font-display); font-weight: 700; font-size: 24px; color: #fff; margin-bottom: 10px; }
.step-desc-dark { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.6); max-width: 420px; }
.step-desc-blue { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 420px; }
.step-visual-dark {
  flex: 0 0 260px;
  height: 150px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 12px;
}
.step-visual-blue {
  flex: 0 0 260px;
  height: 150px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 12px;
}

/* ── STATS ── */
.stats-section { padding: 0 0 88px; }
.stats-block {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--ink);
  border-radius: 32px;
  padding: 56px 40px;
}
.stat-item { text-align: center; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.12); }
.stat-value { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: #fff; letter-spacing: -0.02em; }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 8px; }

/* ── FORM ── */
.form-section { padding: 0 0 100px; }
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(30,31,36,0.06);
}
.form-title { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--ink); margin: 0 0 10px; letter-spacing: -0.02em; }
.form-sub { font-size: 15px; color: var(--muted); margin: 0 0 28px; }
.form-body { display: flex; flex-direction: column; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field-label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  font-size: 15px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .15s;
  appearance: none;
  -webkit-appearance: none;
}
.field-input:focus { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(61,90,254,0.15); }
.field-input.field-error { border-color: #E53535; box-shadow: 0 0 0 2px rgba(229,53,53,0.12); }
.field-error-msg {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #E53535;
  font-family: var(--font-body);
}
.btn-submit {
  margin-top: 8px;
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .15s;
}
.btn-submit:hover { background: var(--blue-dark); }
.btn-submit:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Contact method radio group */
.contact-method-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.contact-method-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contact-method-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-method-option span {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid #D6D8E4;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .15s, background .15s, color .15s;
  line-height: 1;
}
.contact-method-option input[type="radio"]:checked + span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.contact-method-option:hover span {
  border-color: var(--blue);
}
.form-success { text-align: center; padding: 24px 0; display: none; }
.form-success-icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success-title { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--ink); margin: 0 0 10px; }
.form-success-text { font-size: 15px; color: var(--muted); margin: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 64px 0 8px; text-align: center; }
.page-hero-label { font-size: 13px; font-weight: 600; color: var(--blue); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
.page-hero-sub { font-size: 17px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ── TABS ── */
.tabs-wrap { padding: 32px 0 0; }
.tabs {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
}
.tab-btn {
  flex: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  background: transparent;
  color: var(--ink);
  transition: all .15s;
}
.tab-btn.active { background: var(--blue); color: #fff; }
.tab-btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.review-card-light {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card-dark {
  background: var(--ink);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-text-light { font-size: 15px; line-height: 1.6; color: var(--ink); }
.review-text-dark { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.9); }
.review-footer-light { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.review-footer-dark { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.12); }
.review-name-light { font-weight: 700; font-size: 14px; color: var(--ink); }
.review-name-dark { font-weight: 700; font-size: 14px; color: #fff; }
.review-role-light { font-size: 13px; color: var(--muted-light); margin-top: 2px; }
.review-role-dark { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── CASES ── */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.case-card { border-radius: 28px; padding: 32px; display: flex; flex-direction: column; gap: 20px; min-height: 280px; }
.case-card-light { background: #fff; border: 1px solid var(--border); }
.case-card-dark { background: var(--ink); }
.case-card-blue { background: var(--blue); }
.case-niche-light { font-size: 13px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.04em; }
.case-niche-dark { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.04em; }
.case-headline-light { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.3; color: var(--ink); }
.case-headline-dark { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.3; color: #fff; }
.case-bottom { margin-top: auto; }
.case-divider-light { border: none; border-top: 1px solid var(--border); margin: 0 0 16px; }
.case-divider-dark { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin: 0 0 16px; }
.case-divider-blue { border: none; border-top: 1px solid rgba(255,255,255,0.25); margin: 0 0 16px; }
.case-result-light { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--blue); letter-spacing: -0.02em; }
.case-result-dark { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: #fff; letter-spacing: -0.02em; }
.case-result-label-light { font-size: 13px; color: var(--muted-light); margin-top: 4px; }
.case-result-label-dark { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.case-result-label-blue { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}
.faq-trigger:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.faq-q { font-size: 16px; font-weight: 600; color: var(--ink); }
.faq-icon { flex-shrink: 0; font-size: 20px; color: var(--blue); transition: transform .15s; }
.faq-icon.open { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 24px 22px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.faq-answer.open { display: block; }

/* ── ECON CARDS ── */
.econ-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.econ-card { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 28px; }
.econ-value { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--blue); margin-bottom: 10px; }
.econ-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-visual { margin-top: 40px; width: 100%; max-width: 420px; justify-self: start; }
  .cards3-grid { grid-template-columns: 1fr !important; }
  .cat-grid { grid-template-columns: 1fr 1fr !important; }
  .stats-block { grid-template-columns: 1fr !important; gap: 32px; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 32px; }
  .step-row { flex-direction: column !important; align-items: flex-start !important; }
  .step-visual-dark, .step-visual-blue { width: 100% !important; flex: none !important; margin-top: 20px; }
  .reviews-grid { grid-template-columns: 1fr 1fr !important; }
  .cases-grid { grid-template-columns: 1fr 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
  .econ-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 680px) {
  .nav-desktop, .header-actions { display: none !important; }
  .hamburger { display: flex !important; }
  .form-grid { grid-template-columns: 1fr !important; }
  .tabs { flex-direction: column; border-radius: 20px; }
}
@media (max-width: 620px) {
  .cat-grid { grid-template-columns: 1fr !important; }
  .hero-title { font-size: 40px !important; }
  .page-hero-title { font-size: 34px !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .cases-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  .header-inner { padding: 16px 20px; }
  .container, .container-sm, .container-md { padding: 0 20px; }
  .form-card { padding: 32px 24px; }
  .stats-block { padding: 40px 24px; }
}

/* ── ANIMATIONS ── */

/* Hero entrance */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-title {
  animation: heroFadeUp .6s ease both;
}
.hero-sub {
  animation: heroFadeUp .6s .12s ease both;
}
.hero-actions {
  animation: heroFadeUp .6s .22s ease both;
}
.hero-visual {
  animation: heroFadeUp .7s .1s ease both;
}

/* Float cards staggered */
.float-verified { animation: heroFadeUp .5s .4s ease both; }
.float-income   { animation: heroFadeUp .5s .55s ease both; }
.float-chart    { animation: heroFadeUp .5s .7s ease both; }
.float-dialog   { animation: heroFadeUp .5s .85s ease both; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .float-card, .hero-title, .hero-sub, .hero-actions, .hero-visual,
  .float-verified, .float-income, .float-chart, .float-dialog {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
