/* ═══════════════════════════════════════════════════
   HomeBase AI — series.so-inspired Landing Page
   ═══════════════════════════════════════════════════ */

/* ── Tokens ───────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f8faf8;
  --border: #e7ece8;
  --border-hover: #d9e2dc;

  --text: #111111;
  --text-dim: #5f6b66;

  --green: #34C759;
  --green-dark: #2eaa4a;
  --green-soft: rgba(52, 199, 89, 0.12);
  --accent: #34C759;
  --accent-soft: rgba(52, 199, 89, 0.12);
  --imsg-green: #34C759;
  --imsg-green-dark: #2eaa4a;
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.10);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", system-ui, "Segoe UI", sans-serif;
  --max-w: 1140px;
  --radius: 14px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.how,
.features,
.cta-section,
footer {
  background: #ffffff;
}

.step-card,
.feature-card,
.cta-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.04);
}

.step-card:hover,
.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.06);
}

footer {
  border-top: 1px solid var(--border);
}


/* ── Reset ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(52, 211, 153, 0.25);
}

img,
svg {
  display: block;
}

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

/* ── Utility ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.hero .container {
  padding-left: 8px;
  padding-right: 8px;
}

/* ─────────────────────────────────────────────────────
   HERO — Cinematic, full-viewport editorial layout
   ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-copy h1,
.hero-sub,
.hero-phone {
  color: #ffffff;
}

/* Video background — covers entire hero */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark gradient overlay — ensures text readability (stronger behind text) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(8, 9, 12, 0.66) 0%,
      rgba(8, 9, 12, 0.58) 40%,
      rgba(8, 9, 12, 0.76) 100%),
    linear-gradient(90deg,
      rgba(8, 9, 12, 0.58) 0%,
      transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 80px;
  }
}

/* ── Hero Copy (Left) ─────────────────────────────── */
.hero-copy {
  max-width: 740px;
}

.hero-copy h1 {
  font-size: clamp(3.1rem, 7.2vw, 5rem);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.0;
  margin-bottom: 24px;
}

.hero-copy h1 .agent-pair {
  white-space: nowrap;
}

/* Second line smaller so it fits on one line; Agent² stays big */
.hero-copy h1 .hero-tagline {
  display: block;
  font-size: 0.54em;
  letter-spacing: -0.02em;
  margin-top: 0.35em;
}

.accent {
  color: var(--green);
}

/* Extra space between "Agent" and superscript ² */
.hero-copy h1>.accent {
  margin-left: 0.14em;
}

.hero-sub {
  font-family: var(--font);
  font-size: clamp(0.85rem, 3.8vw, 1.4rem);
  white-space: nowrap;
  color: var(--text);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-sub-emphasis {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-phone {
  font-family: var(--font);
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ── Hero text should stay white over the dark video ── */
.hero-sub,
.hero-phone {
  color: #ffffff;
}

/* Hero phone: copy button, looks like plain text */
button.hero-phone {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.hero button.hero-phone {
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
}

.hero .btn-primary {
  font-family: var(--font);
  font-size: 1.35rem;
  padding: 22px 44px;
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero .btn-primary svg {
  stroke: #ffffff;
}

/* ── Hero Visual (Right — phone mockup) ───────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Soft green overlay behind hero phone only — blends into dark hero background */
.hero .hero-visual::before {
  content: "";
  position: absolute;
  inset: -19%;
  background: radial-gradient(ellipse at center,
      rgba(52, 199, 89, 0.16) 0%,
      rgba(52, 199, 89, 0.07) 32%,
      rgba(52, 199, 89, 0.03) 58%,
      transparent 75%);
  z-index: -1;
  pointer-events: none;
}

/* ── Buttons — Liquid Glass ────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  color: #fff;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 24px rgba(0, 0, 0, 0.20);
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn-primary svg {
  stroke: #fff;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.30);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.20),
    0 8px 32px rgba(0, 0, 0, 0.30),
    0 0 20px rgba(255, 255, 255, 0.06);
}

.btn-primary:active {
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────
   PHONE FRAME (Conversation Preview)
   ───────────────────────────────────────────────────── */
.phone-frame {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 17;
  max-height: 585px;
  overflow: hidden;
  background: #f7f7f8;
  border-radius: 32px;
  border: 5px solid #1a1a1a;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.1);
}


/* Hide scrollbar but allow scroll */
.phone-frame::-webkit-scrollbar {
  display: none;
}

.phone-frame {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── iOS Status Bar ─────────────────────────────────── */
.ios-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #111111;
  flex-shrink: 0;
}

.ios-icons {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: #111111;
}


.ios-time {
  flex: 1;
}

.phone-notch {
  width: 105px;
  height: 20px;
  background: #1a1a1a;
  border-radius: 0 0 12px 12px;
  flex-shrink: 0;
}

/* Call phone only: notch floats below top, rounded rectangle (Dynamic Island style) */
.phone-frame.phone-call .phone-notch {
  margin-top: 8px;
  border-radius: 12px;
  height: 24px;
}

.ios-icons svg {
  display: inline-block;
}

/* ── iMessage Header ────────────────────────────────── */
.phone-header {
  display: flex;
  align-items: center;
  padding: 8px 14px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  position: relative;
  background: #f7f7f8;
}

.phone-name {
  font-weight: 500;
  font-size: 0.72rem;
  color: #444444;
}

.imsg-back {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.imsg-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 3px;
}

.phone-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--imsg-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* ── Phone call screen (second phone) ───────────────── */
.phone-frame.phone-call {
  background: linear-gradient(180deg, #2a2d28 0%, #1e2230 45%, #16182a 100%);
}

.phone-frame.phone-call .ios-status-bar,
.phone-frame.phone-call .ios-icons {
  color: #ffffff;
}

.call-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 16px;
  background: transparent;
  min-height: 0;
}

.call-info {
  text-align: center;
  margin-bottom: auto;
  padding-top: 20px;
}

.call-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.call-duration {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.call-name .agent-two,
.phone-name .agent-two {
  margin-left: 0.14em;
}

.call-controls {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin: 24px 0 20px;
}

.call-control-row {
  display: flex;
  justify-content: center;
  gap: 44px;
}

.call-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: default;
  color: #ffffff;
}

.call-btn-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-btn svg {
  flex-shrink: 0;
}

.call-btn-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: capitalize;
  line-height: 1.1;
}

/* End button (in grid): red circle, phone icon facing down */
.call-btn.call-end-btn .call-btn-circle {
  background: #e53935;
}

.call-btn.call-end-btn .call-phone-down {
  transform: rotate(135deg);
}

.call-home-indicator {
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  margin-top: 12px;
  flex-shrink: 0;
}

/* ── iMessage Thread ────────────────────────────────── */
.sms-thread {
  padding: 10px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #ffffff;
}

.sms-thread::-webkit-scrollbar {
  display: none;
}

.imsg-date {
  text-align: center;
  font-size: 0.62rem;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
  margin-bottom: 4px;
}

.sms-in {
  background: #e9e9eb;
  border: 1px solid rgba(0, 0, 0, 0.04);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: #111111;
  box-shadow: none;
}

.sms {
  max-width: 80%;
  padding: 7px 11px;
  border-radius: 16px;
  font-size: 0.74rem;
  line-height: 1.4;
}

/* Outgoing — iMessage green */
.sms-out {
  background: var(--imsg-green);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.sms strong {
  font-weight: 700;
  display: block;
}

.listing-note {
  font-size: 0.65rem;
  opacity: 0.55;
  display: block;
  margin-top: 2px;
}

/* ── iMessage Input Bar ─────────────────────────────── */
.imsg-input-bar {
  padding: 6px 10px 10px;
  flex-shrink: 0;
  background: #f7f7f8;
}

.imsg-input-pill {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  padding: 7px 14px;
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.35);
  background: #ffffff;
}


/* ─────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────── */
.how {
  padding: 80px 0 64px;
}

.how .container {
  max-width: 1200px;
}

.how .how-header {
  margin-bottom: 56px;
}

.how-header,
.features-header {
  margin-bottom: 64px;
  text-align: center;
}

@media (min-width: 768px) {
  .how-header,
  .features-header {
    text-align: left;
  }
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.how-header h2,
.features-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
}

.how-header .eyebrow {
  font-size: 0.85rem;
}

.how-header h2 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
}

.underline-green {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.mobile-break {
  display: block;
}

@media (min-width: 768px) {
  .mobile-break {
    display: none;
  }
}

/* How it works: three phones (same as hero) */
.how-phones-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  justify-items: center;
}

/* Phones in how section — room to be bigger with one-line header */
.how-phones-grid .phone-frame {
  max-width: 300px;
  max-height: 560px;
}

@media (min-width: 768px) {
  .how-phones-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: start;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .how-phones-grid .phone-frame {
    max-width: 300px;
    max-height: 565px;
  }
}

.how-phone-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .how-phone-wrap {
    max-width: 100%;
  }
}

.steps-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: var(--border-hover);
}

.step-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────
   FEATURES
   ───────────────────────────────────────────────────── */
.features {
  padding: 0 0 160px;
}

.features-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s;
}

.feature-card:hover {
  border-color: var(--border-hover);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.feature-icon svg {
  stroke: var(--accent);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────
   CTA BANNER
   ───────────────────────────────────────────────────── */
.cta-section {
  padding: 0 0 160px;
}

.cta-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 72px 40px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(17, 17, 17, 0.04);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cta-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.06);
}

.cta-card h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
  color: var(--text);
}

.cta-card p {
  color: var(--text-dim);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

/* CTA button — green, matching nav-cta style */
.cta-card .btn-primary {
  background: var(--green);
  border: 1px solid var(--green);
  color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.cta-card .btn-primary svg {
  stroke: #ffffff;
}

.cta-card .btn-primary:hover {
  background: var(--imsg-green-dark);
  border-color: var(--imsg-green-dark);
  box-shadow: 0 8px 24px rgba(52, 211, 153, 0.2);
}


/* ─────────────────────────────────────────────────────
   BOTTOM CTA
   ───────────────────────────────────────────────────── */
.bottom-cta {
  padding: 64px 0;
  text-align: center;
}

.bottom-cta .container {
  display: flex;
  justify-content: center;
}

.bottom-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 1.35rem;
  padding: 22px 44px;
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.bottom-cta .btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bottom-cta .btn-primary svg {
  stroke: #ffffff;
}

/* ─────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────── */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-inner strong {
  color: var(--text);
  font-weight: 600;
}

.footer-inner a {
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-inner a:hover {
  color: var(--text);
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ─────────────────────────────────────────────────────
   SCROLL REVEAL
   ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for cards in grids */
.steps-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.steps-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.features-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.features-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.how-phones-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.how-phones-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

/* ─────────────────────────────────────────────────────
   MOBILE (< 860px)
   ───────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: 100px 0 60px;
  }

  .hero-grid {
    text-align: center;
    min-height: calc(100vh - 160px);
    min-height: calc(100svh - 160px);
    min-height: calc(100dvh - 160px);
    align-content: center;
  }

  .hero-copy {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 10vw, 3.85rem);
    letter-spacing: -1.8px;
  }

  .hero-sub {
    font-size: 1.2rem;
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .how {
    padding: 80px 0 60px;
  }

  .features {
    padding: 0 0 80px;
  }

  .cta-section {
    padding: 0 0 80px;
  }

  .how-header,
  .features-header {
    margin-bottom: 52px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 88px 0 48px;
  }

  .hero-copy h1 {
    font-size: 2.65rem;
    letter-spacing: -1.2px;
  }

  .hero-sub {
    font-size: 1.1rem;
    margin-bottom: 28px;
  }

  .hero .btn-primary {
    font-size: 1.15rem;
    padding: 20px 34px;
  }

  .bottom-cta .btn-primary {
    font-size: 1.15rem;
    padding: 20px 34px;
  }

  .hero-phone,
  .hero button.hero-phone {
    font-size: 1.05rem;
    font-weight: 500;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 0.82rem;
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .step-card,
  .feature-card {
    padding: 28px 22px 24px;
  }

  .cta-card {
    padding: 48px 24px;
  }
}