/* ============================================================
   1HourSites — "Stone" Design System
   Bright, warm, conversion-focused. Sora headings + Inter body.
   Shared by every page in site-stone/.
   ============================================================ */

/* ---------- 1. Variables ---------- */
:root {
  /* Color */
  --white: #FFFFFF;
  --bg-warm: #F8F7F4;
  --bg-cream: #FFF9F0;
  --navy: #1F2236;
  --navy-soft: #2A2E47;
  --ink: #3D4154;
  --ink-light: #6B7084;
  --line: #E8E6E0;
  --amber: #E8A743;
  --amber-dark: #D69632;
  --amber-soft: #FBEED5;
  --amber-glow: rgba(232, 167, 67, 0.35);
  --green: #2E9E5B;
  --red: #D9534F;
  --star: #F5B301;

  /* Type */
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shape & shadow */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(31, 34, 54, 0.08);
  --shadow: 0 6px 24px rgba(31, 34, 54, 0.09);
  --shadow-lg: 0 18px 48px rgba(31, 34, 54, 0.14);

  /* Layout */
  --container: 1180px;
  --section-pad: 120px;
  --header-h: 76px;
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(40px, 6.5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; }
h3 { font-size: clamp(21px, 2.4vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

p { color: var(--ink); }
strong { color: var(--navy); }

::selection { background: var(--amber-soft); color: var(--navy); }

/* ---------- 3. Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section { padding: var(--section-pad) 0; }
.section-sm { padding: 72px 0; }
.section-warm { background: var(--bg-warm); }
.section-cream { background: var(--bg-cream); }
.section-navy { background: var(--navy); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255, 255, 255, 0.78); }

.section-head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-head .sub {
  margin-top: 16px;
  font-size: 19px;
  color: var(--ink-light);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }

/* ---------- 4. Marker highlight & eyebrow ---------- */
.hl {
  position: relative;
  white-space: nowrap;
  background-image: linear-gradient(100deg, var(--amber-glow) 0%, rgba(232, 167, 67, 0.55) 50%, var(--amber-glow) 100%);
  background-repeat: no-repeat;
  background-size: 100% 42%;
  background-position: 0 78%;
  border-radius: 4px;
  padding: 0 0.08em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 18px;
}
.eyebrow-chip {
  background: var(--amber-soft);
  border: 1px solid rgba(232, 167, 67, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  letter-spacing: 0.08em;
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(232, 167, 67, 0.4);
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(232, 167, 67, 0.5);
}

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-lg { padding: 20px 38px; font-size: 18px; border-radius: var(--radius); }
.btn-sm { padding: 12px 20px; font-size: 14px; }

.btn-note {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-light);
}

/* ---------- 6. Badges & chips ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge-amber { background: var(--amber-soft); border-color: rgba(232, 167, 67, 0.45); }
.badge-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }

.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--amber);
}

/* ---------- 7. Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(31, 34, 54, 0.08);
}

.nav-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.logo .bar { color: var(--amber); padding: 0 2px; }
.logo .tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-left: 8px;
}

.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-item { position: relative; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link:hover { color: var(--amber-dark); background: var(--bg-warm); }
.nav-link .caret { font-size: 10px; transition: transform 0.2s ease; }
.nav-item.open > .nav-link .caret { transform: rotate(180deg); }

/* Dropdown panel */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-item.open > .dropdown,
.nav-item:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-wide { min-width: 560px; }
.dropdown-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }

.dropdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-dark);
  padding: 8px 12px 4px;
}
.dropdown a.dd-item {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
}
.dropdown a.dd-item:hover { background: var(--bg-cream); }
.dd-item .dd-title { display: block; font-weight: 600; font-size: 15px; color: var(--navy); }
.dd-item .dd-desc { display: block; font-size: 13px; color: var(--ink-light); margin-top: 1px; }
.dropdown-footer {
  margin-top: 10px;
  padding: 12px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.dropdown-footer a { font-weight: 700; font-size: 14.5px; color: var(--amber-dark); }
.dropdown-footer a:hover { color: var(--navy); }

.nav-phone {
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}
.nav-phone:hover { color: var(--amber-dark); }
.nav-cta { margin-left: 4px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  position: relative;
  z-index: 1101;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  background:
    radial-gradient(900px 480px at 85% -10%, var(--bg-cream) 0%, transparent 65%),
    radial-gradient(700px 420px at -10% 30%, var(--bg-warm) 0%, transparent 60%),
    var(--white);
  overflow: hidden;
}
.hero-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.hero h1 { margin-bottom: 24px; }
.hero .hero-sub {
  font-size: clamp(18px, 2vw, 21px);
  color: var(--ink-light);
  max-width: 640px;
  margin: 0 auto 28px;
}

.hero-checks {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0 auto 36px;
  text-align: left;
}
.hero-checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 17.5px;
  font-weight: 500;
  color: var(--ink);
}
.hero-checks .check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-dark);
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hero-social {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* Avatar / initials stack */
.avatar-stack { display: flex; align-items: center; }
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid var(--white);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  box-shadow: var(--shadow-sm);
}
.avatar:first-child { margin-left: 0; }
.avatar.a2 { background: var(--amber); color: var(--navy); }
.avatar.a3 { background: #4A7BA6; }
.avatar.a4 { background: #2E9E5B; }
.avatar.a5 { background: #B3623A; }
.avatar-note { font-size: 14.5px; font-weight: 600; color: var(--ink-light); }
.avatar-note strong { color: var(--navy); }

/* ---------- 9. Trust row ---------- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .platform {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy);
}
.stars { color: var(--star); font-size: 15px; letter-spacing: 2px; }
.trust-item .score { font-size: 13.5px; font-weight: 600; color: var(--ink-light); }

/* ---------- 10. Page hero (interior pages) ---------- */
.page-hero {
  padding: 80px 0 72px;
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% -20%, var(--bg-cream) 0%, transparent 70%),
    var(--bg-warm);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 18px; }
.page-hero .sub {
  font-size: 19px;
  color: var(--ink-light);
  max-width: 640px;
  margin: 0 auto;
}
.page-hero .btn { margin-top: 28px; }

/* ---------- 11. Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232, 167, 67, 0.5);
}
.card h3 { margin: 18px 0 10px; }
.card p { font-size: 16px; color: var(--ink-light); }

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius);
  background: var(--amber-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
}
.card-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-soft);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}

/* Feature card (icon grid variant) */
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card .fc-icon { font-size: 34px; margin-bottom: 16px; line-height: 1; }
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { font-size: 15.5px; color: var(--ink-light); }

/* ---------- 12. Alternating feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.feature-row + .feature-row { margin-top: 110px; }
.feature-row.flip .fr-visual { order: -1; }
.fr-text .eyebrow { margin-bottom: 12px; }
.fr-text h2 { font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 18px; }
.fr-text p { font-size: 17.5px; color: var(--ink-light); margin-bottom: 16px; }
.fr-list { margin-top: 8px; display: grid; gap: 12px; }
.fr-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; font-weight: 500; }
.fr-list .check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-dark);
  font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 3px;
}

/* Illustration-feel visual panels (no images needed) */
.fr-visual { position: relative; }
.visual-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  position: relative;
}
.visual-panel.tilt { transform: rotate(-1.5deg); }
.visual-panel .vp-bar {
  display: flex; gap: 7px; margin-bottom: 22px;
}
.visual-panel .vp-bar i {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--line); display: block;
}
.visual-panel .vp-bar i:first-child { background: var(--amber); }
.vp-line { height: 13px; border-radius: 7px; background: var(--bg-warm); margin-bottom: 13px; }
.vp-line.w60 { width: 60%; } .vp-line.w80 { width: 80%; } .vp-line.w40 { width: 40%; background: var(--amber-soft); }
.vp-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vp-float .sub { display: block; font-size: 12px; font-weight: 500; color: var(--ink-light); }
.vp-float.tl { top: -20px; left: -24px; }
.vp-float.br { bottom: -20px; right: -24px; }
.vp-float.tr { top: -20px; right: -24px; }

/* Chat bubble mock */
.chat-mock { display: grid; gap: 14px; }
.chat-bubble {
  max-width: 82%;
  padding: 13px 17px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}
.chat-bubble.in { background: var(--bg-warm); color: var(--ink); border-bottom-left-radius: 4px; justify-self: start; }
.chat-bubble.out { background: var(--navy); color: var(--white); border-bottom-right-radius: 4px; justify-self: end; }
.chat-bubble.amber { background: var(--amber-soft); color: var(--navy); border-bottom-right-radius: 4px; justify-self: end; }
.chat-time { font-size: 12px; color: var(--ink-light); text-align: center; font-weight: 600; }

/* ---------- 13. Stat band (navy) ---------- */
.stat-band { background: var(--navy); color: var(--white); }
.stat-band .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 58px);
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .stat-suffix { font-size: 0.6em; }
.stat .stat-label {
  margin-top: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- 14. Steps timeline ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
  counter-reset: step;
}
.steps::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 16%;
  right: 16%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 14px, transparent 14px 26px);
  opacity: 0.6;
}
.step { text-align: center; position: relative; padding: 0 12px; }
.step .step-num {
  width: 66px;
  height: 66px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(232, 167, 67, 0.45);
  position: relative;
  z-index: 1;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 16px; color: var(--ink-light); }
.section-navy .step p { color: rgba(255,255,255,0.75); }

/* ---------- 15. Testimonials ---------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  break-inside: avoid;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-card .stars { font-size: 14px; }
.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.t-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.t-author .avatar { width: 42px; height: 42px; margin-left: 0; border: none; font-size: 13px; }
.t-author .t-name { font-weight: 700; font-size: 15px; color: var(--navy); }
.t-author .t-meta { font-size: 13px; color: var(--ink-light); }

.testimonial-wall {
  columns: 3;
  column-gap: 26px;
}
.testimonial-wall .testimonial-card { margin-bottom: 26px; display: inline-flex; width: 100%; }

/* Quote card (pain-point quotes) */
.quote-card {
  background: var(--white);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}
.quote-card blockquote { font-size: 17px; font-style: italic; color: var(--ink); margin-bottom: 14px; }
.quote-card cite { font-style: normal; font-weight: 700; font-size: 14.5px; color: var(--navy); }
.section-navy .quote-card { background: var(--navy-soft); border-left-color: var(--amber); }
.section-navy .quote-card blockquote { color: rgba(255,255,255,0.88); }
.section-navy .quote-card cite { color: var(--amber); }

/* ---------- 16. Accordion / FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.open { border-color: var(--amber); box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17.5px;
  color: var(--navy);
}
.faq-q .faq-icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-dark);
  font-size: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--amber); color: var(--navy); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 26px 24px; font-size: 16.5px; color: var(--ink-light); }

/* ---------- 17. CTA banner ---------- */
.cta-banner {
  background: linear-gradient(115deg, var(--amber) 0%, #F0B65E 60%, var(--amber) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(232, 167, 67, 0.4);
}
.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.cta-banner::before { width: 280px; height: 280px; top: -120px; left: -90px; }
.cta-banner::after { width: 360px; height: 360px; bottom: -180px; right: -110px; }
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--navy); margin-bottom: 14px; }
.cta-banner p { color: rgba(31, 34, 54, 0.82); font-size: 19px; max-width: 560px; margin: 0 auto 32px; font-weight: 500; }
.cta-banner .btn-note { color: rgba(31, 34, 54, 0.7); font-weight: 600; }

/* Full-bleed CTA section variant */
.cta-section { padding: 0 24px var(--section-pad); }

/* ---------- 18. Pricing ---------- */
.price-card {
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 44px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.price-card .price-flag {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 8px 22px;
  white-space: nowrap;
}
.price-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(54px, 7vw, 76px);
  color: var(--navy);
  line-height: 1;
}
.price-amount .per { font-size: 0.32em; font-weight: 700; color: var(--ink-light); }
.price-sub { font-size: 16px; color: var(--ink-light); margin: 14px 0 28px; }

.price-list { text-align: left; display: grid; gap: 12px; margin: 28px 0; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; font-weight: 500; }
.price-list .check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-dark);
  font-size: 12px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 3px;
}

/* Pricing comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 15.5px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.compare-table td.num { font-weight: 700; color: var(--ink-light); white-space: nowrap; }
.compare-table td.yes { color: var(--green); font-weight: 800; text-align: center; }
.compare-table tbody tr:hover td { background: var(--bg-cream); }
.compare-table tfoot td {
  background: var(--amber-soft);
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--navy);
  font-size: 17px;
}
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ---------- 19. Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 88px 0 0;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 18px; display: inline-flex; }
.footer-brand p { color: rgba(255, 255, 255, 0.65); font-size: 15px; margin-bottom: 20px; max-width: 300px; }
.footer-badges { display: flex; flex-direction: column; gap: 10px; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  width: fit-content;
}
.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: rgba(255, 255, 255, 0.65); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .ico { flex: none; }
.footer-contact a.phone-big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  color: var(--amber);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a:hover { color: var(--amber); }

/* ---------- 20. Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 21. Responsive ---------- */
@media (max-width: 1080px) {
  :root { --section-pad: 96px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-wall { columns: 2; }
  .feature-row { gap: 48px; }
  .nav-phone { display: none; }
}

@media (max-width: 880px) {
  :root { --section-pad: 80px; --header-h: 68px; }
  body { font-size: 17px; }

  /* Mobile nav */
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 100%);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 20px) 24px 40px;
    box-shadow: -12px 0 40px rgba(31, 34, 54, 0.18);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 1100;
  }
  .nav-menu.open { transform: translateX(0); }
  body.nav-open { overflow: hidden; }

  .nav-item { width: 100%; }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 16px 8px;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav-link:hover { background: none; }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: block;
  }
  .nav-item:hover > .dropdown { transform: none; }
  .nav-item.open > .dropdown { visibility: visible; max-height: 700px; }
  .dropdown-wide { min-width: 0; }
  .dropdown-cols { grid-template-columns: 1fr; gap: 0; }

  .nav-phone { display: flex; justify-content: center; margin-top: 20px; font-size: 17px; }
  .nav-cta { margin: 12px 0 0; width: 100%; }

  /* Layout collapses */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.flip .fr-visual { order: 0; }
  .feature-row + .feature-row { margin-top: 80px; }
  .steps { grid-template-columns: 1fr; gap: 48px; max-width: 460px; margin: 0 auto; }
  .steps::before {
    top: 33px;
    bottom: 33px;
    left: 32px;
    right: auto;
    width: 3px;
    height: auto;
    background: repeating-linear-gradient(180deg, var(--amber) 0 14px, transparent 14px 26px);
  }
  .step { text-align: left; padding-left: 92px; }
  .step .step-num { position: absolute; left: 0; top: 0; margin: 0; }
  .stat-band .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-banner { padding: 56px 28px; }
  .vp-float.tl { left: -8px; }
  .vp-float.br, .vp-float.tr { right: -8px; }
}

@media (max-width: 560px) {
  :root { --section-pad: 68px; }
  .container, .container-narrow { padding: 0 20px; }
  .hero { padding: 60px 0 72px; }
  .grid-4 { grid-template-columns: 1fr; }
  .testimonial-wall { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .btn-lg { width: 100%; padding: 18px 24px; }
  .hero .btn-lg { width: auto; }
  .section-head { margin-bottom: 44px; }
  .price-card { padding: 40px 24px; }
  .hl { white-space: normal; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
}
