/* BreTech — Bear AI marketing site
   Design read: B2B/agency landing for Tijuana-San Diego business owners evaluating AI
   automation vendors. Premium dark-tech language, single locked theme (brand asks for
   dark navy explicitly, so no light-mode variant). Native CSS, no build step, matches
   the rest of the bear repo's stack.
   Dials: DESIGN_VARIANCE 7, MOTION_INTENSITY 6, VISUAL_DENSITY 3.
   Corner-radius lock: buttons = pill (999px), cards = 20px, inputs/small chips = 10px.
   Accent lock: one electric cyan-blue, sampled from the real BreTech logo. */

:root {
  /* colors — navy family sampled from the real logo (#051222), not invented */
  --navy-950: #050b14;
  --navy-900: #0a1526;
  --navy-800: #101f38;
  --navy-700: #17294a;
  --navy-600: #21365c;
  --line: rgba(148, 180, 214, 0.14);
  --line-strong: rgba(148, 180, 214, 0.26);

  --accent: #4fb8e8;
  --accent-bright: #7ad4fa;
  --accent-dim: #2e6f9e;
  --accent-wash: rgba(79, 184, 232, 0.12);

  --text-primary: #eaf2fa;
  --text-secondary: #a9bdd2;
  --text-tertiary: #71879e;

  --success: #4ade80;
  --danger: #f2777a;

  --radius-card: 20px;
  --radius-pill: 999px;
  --radius-input: 10px;

  --shadow-card: 0 20px 50px -20px rgba(2, 8, 20, 0.65);
  --shadow-glow: 0 0 0 1px rgba(79, 184, 232, 0.18), 0 20px 60px -20px rgba(79, 184, 232, 0.35);

  --container: 1240px;
  --nav-height: 72px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--navy-950);
  color: var(--text-primary);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

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

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: var(--text-primary);
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon { width: 1em; height: 1em; fill: currentColor; flex-shrink: 0; }

/* ---------- background neural-network canvas (fixed, decorative) ---------- */

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  display: flex;
  align-items: center;
  background: rgba(5, 11, 20, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-brand img { height: 80px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.nav-links a { transition: color 0.2s var(--ease); white-space: nowrap; }
.nav-links a:hover { color: var(--text-primary); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.guarantee-btn .icon { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.nav-toggle .icon { width: 18px; height: 18px; }

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 49;
  background: var(--navy-900);
  border-bottom: 1px solid var(--line);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 18px;
}
.nav-mobile-menu.is-open { display: flex; }
.nav-mobile-menu a { font-size: 1rem; color: var(--text-secondary); }
.nav-mobile-menu a:hover { color: var(--text-primary); }

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.nav-mobile-actions .whatsapp-link { color: var(--text-primary); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #04121e;
}
.btn-primary:hover { background: var(--accent-bright); box-shadow: var(--shadow-glow); transform: translateY(-1px); }

.btn-secondary {
  background: rgba(234, 242, 250, 0.04);
  color: var(--text-primary);
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-wash); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--line-strong);
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-bright); }

.btn-sm { padding: 10px 18px; font-size: 0.86rem; }

.btn-block { width: 100%; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  z-index: 1;
  padding: 64px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  max-width: 12ch;
}

.hero-copy .hero-sub {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 46ch;
  line-height: 1.55;
}

.hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-video-card {
  position: relative;
  border-radius: var(--radius-card);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(79, 184, 232, 0.08), transparent 40%), var(--navy-800);
  padding: 10px;
  box-shadow: var(--shadow-card);
}

.hero-video-card video {
  width: 100%;
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  background: var(--navy-900);
}

.hero-video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 8px 4px;
  font-size: 0.82rem;
  color: var(--text-tertiary);
}

/* ---------- stat strip ---------- */

.stat-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-left: 1px solid var(--line);
}
.stat-item:first-child { border-left: none; }

.stat-item .icon { color: var(--accent); width: 20px; height: 20px; }
.stat-item strong { color: var(--text-primary); font-weight: 600; }

/* ---------- section shell ---------- */

.section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}

.section-tint {
  background: linear-gradient(180deg, transparent, var(--navy-900) 12%, var(--navy-900) 88%, transparent);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.section-head p {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------- problem (editorial, centered) ---------- */

.problem {
  text-align: center;
}

.problem .container { max-width: 760px; }

.problem h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.25;
}

.problem p {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- bento (differentiator) ---------- */

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

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--navy-800);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.bento-card:hover { transform: translateY(-3px); border-color: var(--line-strong); }

.bento-card.is-lead {
  grid-column: span 2;
  grid-row: span 2;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(79, 184, 232, 0.22), transparent 60%),
    var(--navy-800);
  justify-content: flex-end;
}
.bento-card.is-lead h3 { font-size: 1.5rem; }
.bento-card.is-lead p { font-size: 1rem; }

.bento-card:not(.is-lead) {
  grid-column: span 2;
}

.bento-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(79, 184, 232, 0.10), transparent 55%),
    var(--navy-800);
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-wash);
  color: var(--accent-bright);
}
.bento-icon .icon { width: 22px; height: 22px; }

.bento-card h3 { font-size: 1.15rem; }
.bento-card p { color: var(--text-secondary); font-size: 0.96rem; line-height: 1.55; }

/* ---------- how it works ---------- */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.process-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--accent-bright);
  z-index: 1;
}

.process-step h3 { font-size: 1.15rem; }
.process-step p { color: var(--text-secondary); font-size: 0.96rem; line-height: 1.55; }

/* ---------- pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  background: var(--navy-800);
  padding: 32px;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.price-card:hover { transform: translateY(-3px); }

.price-card.is-featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(79, 184, 232, 0.10), var(--navy-800) 40%);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.price-card.is-featured:hover { transform: scale(1.03) translateY(-3px); }

.price-badge {
  align-self: flex-start;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #04121e;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.price-name { font-size: 1.2rem; font-weight: 600; color: var(--text-primary); }

.price-amount {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price-amount .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price-amount .period { color: var(--text-tertiary); font-size: 0.95rem; }

.price-setup { margin-top: 6px; color: var(--text-tertiary); font-size: 0.86rem; }

.price-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--text-secondary);
}
.price-features .icon { color: var(--accent); width: 18px; height: 18px; margin-top: 2px; }

.price-card .btn { margin-top: 28px; }

/* ---------- final CTA band ---------- */

.cta-band {
  text-align: center;
  border-radius: 28px;
  margin: 0 24px;
  padding: 72px 32px;
  background:
    radial-gradient(80% 140% at 50% 0%, rgba(79, 184, 232, 0.16), transparent 60%),
    var(--navy-800);
  border: 1px solid var(--line-strong);
}

.cta-band h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.cta-band p { margin-top: 16px; color: var(--text-secondary); font-size: 1.05rem; }
.cta-band .hero-ctas { justify-content: center; margin-top: 32px; }

/* ---------- footer ---------- */

.footer {
  position: relative;
  z-index: 1;
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; max-width: 320px; }
.footer-brand .nav-brand { font-size: 1.1rem; gap: 10px; }
.footer-brand .nav-brand img { height: 32px; }
.footer-brand p { color: var(--text-tertiary); font-size: 0.9rem; line-height: 1.6; }

.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: var(--text-secondary); font-size: 0.92rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--accent-bright); }

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-tertiary);
  font-size: 0.84rem;
  flex-wrap: wrap;
}

/* ---------- scroll reveal ---------- */

/* [data-reveal] is visible by default — this is a progressive enhancement,
   never a hiding mechanism. Only html.js-reveal (set by main.js once its
   reveal logic is actually running) opts into the hidden starting state.
   No JS, blocked JS, or a script error elsewhere on the page must never
   leave this content permanently invisible. */
html.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
/* Must outrank the rule above (3 selector components: html, .js-reveal,
   [data-reveal]) — matched here with an equally specific selector plus
   .is-visible, so this reliably wins regardless of source order. A bare
   "[data-reveal].is-visible { opacity:1 }" rule is LOWER specificity than
   the hidden rule above and silently loses — that was a real shipped bug. */
html.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js-reveal [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- call widget (Retell voice) ---------- */

.call-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 11, 20, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.call-overlay.is-open { display: flex; }

.call-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-card);
  padding: 40px 32px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)),
    rgba(10, 21, 38, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 24px 70px -20px rgba(0, 0, 0, 0.6);
  animation: call-in 0.35s var(--ease);
}

@media (prefers-reduced-transparency: reduce) {
  .call-card { background: var(--navy-800); backdrop-filter: none; }
}

@keyframes call-in {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .call-card { animation: none; }
}

.call-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-close:hover { color: var(--text-primary); border-color: var(--accent); }
.call-close .icon { width: 16px; height: 16px; }

.call-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-wash);
  color: var(--accent-bright);
  position: relative;
}
.call-avatar .icon { width: 34px; height: 34px; }

.call-avatar::before,
.call-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
}

.call-card[data-state="connected"] .call-avatar::before,
.call-card[data-state="connected"] .call-avatar::after {
  animation: pulse-ring 1.8s var(--ease) infinite;
}
.call-card[data-state="connected"] .call-avatar::after { animation-delay: 0.5s; }

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .call-card[data-state="connected"] .call-avatar::before,
  .call-card[data-state="connected"] .call-avatar::after { animation: none; }
}

.call-status-title { font-size: 1.15rem; font-weight: 600; }
.call-status-sub { margin-top: 8px; color: var(--text-secondary); font-size: 0.92rem; min-height: 1.4em; }

.call-controls {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.call-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(234, 242, 250, 0.04);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.call-icon-btn .icon { width: 20px; height: 20px; }
.call-icon-btn:hover { border-color: var(--accent); }
.call-icon-btn.is-muted { background: var(--accent-wash); border-color: var(--accent); color: var(--accent-bright); }

.call-icon-btn.is-hangup { background: var(--danger); border-color: var(--danger); color: #2a0505; }
.call-icon-btn.is-hangup:hover { filter: brightness(1.08); }

.call-card[data-state="idle"] .call-controls,
.call-card[data-state="connecting"] .call-controls,
.call-card[data-state="error"] .call-controls { display: none; }

.call-card[data-state="connected"] .call-idle-cta,
.call-card[data-state="connecting"] .call-idle-cta { display: none; }

.call-idle-cta { margin-top: 24px; }

/* ---------- 30-day guarantee modal ---------- */

.guarantee-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 11, 20, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.guarantee-overlay.is-open { display: flex; }

.guarantee-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-card);
  padding: 40px 32px 36px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)),
    rgba(10, 21, 38, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 24px 70px -20px rgba(0, 0, 0, 0.6);
  animation: call-in 0.35s var(--ease);
}
@media (prefers-reduced-transparency: reduce) {
  .guarantee-card { background: var(--navy-800); backdrop-filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .guarantee-card { animation: none; }
}

.guarantee-body {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy h1 { max-width: none; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card.is-lead { grid-column: span 2; grid-row: span 1; }
  .bento-card:not(.is-lead) { grid-column: span 1; }
  .process { grid-template-columns: 1fr; gap: 40px; }
  .process::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.is-featured { transform: none; }
  .price-card.is-featured:hover { transform: translateY(-3px); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 1024px) {
  .guarantee-btn .btn-label { display: none; }
  .guarantee-btn { padding: 10px; }
}

@media (max-width: 768px) {
  .nav-brand img { height: 48px; }
  .nav-brand { gap: 12px; }
  .nav-actions { gap: 8px; }
  .stat-strip .container { grid-template-columns: 1fr; }
  .stat-item { border-left: none; border-top: 1px solid var(--line); padding: 16px 4px; }
  .stat-item:first-child { border-top: none; }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 64px; }
  .cta-band { margin: 0 16px; padding: 48px 24px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-ctas .btn, .cta-band .btn { width: 100%; }
  .hero-ctas, .cta-band .hero-ctas { flex-direction: column; }
}
