/* ============================================================
   RAGAMUFFIN AI — Design System
   Palette: Deep Navy + Warm Amber/Orange + Off-white
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

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

:root {
  --navy:       #0f1f38;
  --navy-mid:   #162843;
  --navy-light: #1e3a5f;
  --amber:      #f5840c;
  --amber-dark: #d96e06;
  --amber-pale: #fef0df;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --gray-100:   #f4f4f4;
  --gray-300:   #d1d1d1;
  --gray-500:   #8a8a8a;
  --gray-700:   #444444;
  --text-dark:  #1a1a1a;
  --text-body:  #3a3a3a;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.12);
  --shadow-md:  0 6px 24px rgba(0,0,0,.18);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.24);

  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.1; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); line-height: 1.2; }
h4 { font-size: 1.15rem; }
p { font-size: 1.05rem; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; }
.small { font-size: 0.875rem; }
.label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-transform: uppercase;
}
.btn--primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,132,12,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
}
.btn--lg { padding: 18px 40px; font-size: 1.25rem; }
.btn--sm { padding: 10px 22px; font-size: 0.9rem; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 31, 56, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  flex-shrink: 0;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1;
}
.nav__logo-text span { color: var(--amber); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  color: rgba(255,255,255,.8);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav__links a.active { color: var(--amber); }
.nav__cta { margin-left: 12px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav__mobile-menu.open { display: flex; }
.nav__mobile-menu a {
  color: rgba(255,255,255,.85);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition);
}
.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu a:hover { color: var(--amber); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand-name span { color: var(--amber); }
.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255,255,255,.6);
}
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
}
.footer__contact-item .icon { flex-shrink: 0; margin-top: 2px; }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}
.footer__bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Utility Classes ──────────────────────────────────────── */
.text-amber { color: var(--amber); }
.text-white { color: var(--white); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }
.text-left   { text-align: left; }

.bg-navy     { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-cream    { background: var(--cream); }
.bg-amber-pale { background: var(--amber-pale); }
.bg-white    { background: var(--white); }

.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4       { gap: 1rem; }
.gap-6       { gap: 1.5rem; }
.gap-8       { gap: 2rem; }

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

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card--navy {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,.07);
  color: var(--white);
}
.card--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber-dark);
}
.card__icon {
  width: 52px;
  height: 52px;
  background: var(--amber-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card--navy .card__icon { background: rgba(245,132,12,.15); }

/* ── Section Header ───────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-label--dark {
  background: rgba(245,132,12,.15);
  color: var(--amber);
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stat-block { text-align: center; padding: 24px; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* ── Phone Animation ──────────────────────────────────────── */
.phone-mockup {
  position: relative;
  width: 220px;
  margin: 0 auto;
}
.phone-frame {
  width: 220px;
  height: 400px;
  background: var(--navy);
  border-radius: 32px;
  border: 3px solid rgba(255,255,255,.12);
  padding: 16px 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1);
}
.phone-notch {
  width: 80px;
  height: 20px;
  background: var(--navy-light);
  border-radius: 0 0 14px 14px;
  margin: 0 auto 16px;
}
.phone-screen-content { padding: 0 4px; }
.missed-call-banner {
  background: rgba(239,68,68,.9);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.5s ease 0.8s both;
}
.missed-call-banner .call-icon { font-size: 1.2rem; }
.missed-call-text { font-size: 0.7rem; color: white; line-height: 1.3; }
.missed-call-text strong { display: block; font-size: 0.75rem; }

.text-bubble {
  background: var(--amber);
  border-radius: 12px 12px 2px 12px;
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 0.68rem;
  color: white;
  line-height: 1.45;
  animation: slideUp 0.5s ease 1.6s both;
  max-width: 85%;
  margin-left: auto;
}
.text-bubble--reply {
  background: rgba(255,255,255,.12);
  border-radius: 12px 12px 12px 2px;
  color: rgba(255,255,255,.9);
  margin-right: auto;
  margin-left: 0;
  animation: slideUp 0.5s ease 2.4s both;
}
.clock-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(245,132,12,.2);
  border: 1px solid rgba(245,132,12,.4);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 0.65rem;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 6px;
  animation: fadeIn 0.4s ease 1.2s both;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%  { transform: rotate(-15deg); }
  20%  { transform: rotate(15deg); }
  30%  { transform: rotate(-10deg); }
  40%  { transform: rotate(10deg); }
  50%  { transform: rotate(0deg); }
}
.icon-ring { display: inline-block; animation: ring 2s ease-in-out infinite; }

/* ── Step Timeline ────────────────────────────────────────── */
.timeline { position: relative; }
.timeline__step {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  align-items: flex-start;
}
.timeline__step:last-child { margin-bottom: 0; }
.timeline__marker {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline__number {
  width: 52px;
  height: 52px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,132,12,.4);
  position: relative;
  z-index: 1;
}
.timeline__line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--amber), rgba(245,132,12,.1));
  margin-top: 4px;
}
.timeline__content { padding-top: 12px; }
.timeline__time {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-pale);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ── Testimonial Card ─────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow-sm);
}
.testimonial__quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
  position: relative;
  padding-top: 8px;
}
.testimonial__quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--amber);
  line-height: 1;
  position: absolute;
  top: -16px;
  left: -4px;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--amber);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}
.testimonial__role { font-size: 0.85rem; color: var(--gray-500); }
.stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 4px; }

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(245,132,12,.12);
}
.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239,68,68,.1);
}
.form-error {
  font-size: 0.82rem;
  color: #ef4444;
  margin-top: 4px;
  display: none;
}
.form-error.visible { display: block; }
.form-textarea { resize: vertical; min-height: 130px; }

/* ── Highlight Box ────────────────────────────────────────── */
.highlight-box {
  border-left: 4px solid var(--amber);
  padding: 20px 24px;
  background: var(--amber-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.highlight-box--dark {
  background: rgba(245,132,12,.1);
  border-left-color: var(--amber);
}

/* ── Checklist ────────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 2px;
}

/* ── Badge ────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid;
}
.badge--amber { color: var(--amber); border-color: var(--amber); background: rgba(245,132,12,.08); }
.badge--green { color: #16a34a; border-color: #16a34a; background: rgba(22,163,74,.08); }
.badge--white { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.3); }

/* ── Divider ──────────────────────────────────────────────── */
.divider-amber {
  width: 56px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin: 20px 0;
}
.divider-amber.center { margin: 20px auto; }

/* ── Page Hero Shared ─────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,132,12,.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* ── FAQ / Accordion ──────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.accordion-item:first-child { border-top: 1px solid rgba(0,0,0,.08); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  gap: 16px;
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--amber); }
.accordion-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--amber-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--amber);
  transition: transform var(--transition), background var(--transition);
  line-height: 1;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
  background: var(--amber);
  color: var(--white);
}
.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-content.open {
  max-height: 400px;
}
.accordion-body {
  padding-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .timeline__step { gap: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn--lg { padding: 16px 28px; font-size: 1.1rem; }
  .phone-frame { width: 190px; height: 340px; }
  .phone-mockup { width: 190px; }
}
