/* ============================================================
   MIRIM DESIGN SYSTEM
   Brand: Strategy-led. Tech-enabled. Results-obsessed.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── CSS Variables ── */
:root {
  --dark:       #123524;
  --dark-deep:  #0d2019;
  --lime:       #d0ff14;
  --gold:       #ffd300;
  --brown:      #8b5434;
  --dark-brown: #382208;
  --burgundy:   #66023c;
  --white:      #ffffff;
  --off-white:  #f7f7f2;
  --text-dark:  #111810;
  --text-muted: #6b7280;
  --border:     rgba(255,255,255,0.1);
  --border-dark:rgba(18,53,36,0.12);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-card: 0 4px 24px rgba(18,53,36,0.08);
  --shadow-hover: 0 12px 40px rgba(18,53,36,0.16);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1180px;
  --section-pad: 96px 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: 1.05rem; line-height: 1.7; }

.display-xl {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
}

em { font-style: italic; color: var(--gold); }
strong { font-weight: 700; }

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

section { padding: var(--section-pad); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.section-label.dark { color: var(--dark); opacity: 0.5; }

.section-title { margin-bottom: 16px; }
.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
}

.section-intro.light { color: rgba(255,255,255,0.7); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--dark);
  border-color: var(--lime);
}
.btn-primary:hover {
  background: transparent;
  color: var(--lime);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

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

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

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
  background: rgba(13, 32, 25, 0.0);
  backdrop-filter: blur(0px);
}

.nav.scrolled {
  background: rgba(13, 32, 25, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  mix-blend-mode: screen; /* Makes black bg transparent on dark nav */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--lime); }

.nav-cta { margin-left: 16px; }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(208,255,20,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,211,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(208,255,20,0.1);
  border: 1px solid rgba(208,255,20,0.25);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 32px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
}

.hero-title em { color: var(--gold); }

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Social Proof Bar ── */
.proof-bar {
  background: var(--lime);
  padding: 20px 24px;
  overflow: hidden;
}

.proof-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
}

.proof-item::before {
  content: '◆';
  font-size: 0.5rem;
  color: var(--dark);
  opacity: 0.4;
}

.proof-item:first-child::before { display: none; }

/* ── Services Grid ── */
.services-section {
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(18,53,36,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(18,53,36,0.06);
  color: var(--dark);
}

.service-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.service-link:hover { color: var(--brown); gap: 10px; }

/* ── AI Edge Section ── */
.ai-section {
  background: var(--dark);
  color: var(--white);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ai-left h2 { color: var(--white); margin-bottom: 20px; }
.ai-left p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1.05rem; }

.ai-solutions {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ai-solution {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition);
}

.ai-solution:hover, .ai-solution.active {
  background: rgba(208,255,20,0.06);
  border-color: rgba(208,255,20,0.3);
}

.ai-solution-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ai-solution-problem {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.ai-solution.active .ai-solution-name { color: var(--lime); }
.ai-solution.active .ai-solution-problem { color: rgba(255,255,255,0.65); }

/* ── Process Section ── */
.process-section {
  background: var(--white);
}

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

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--border-dark);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.process-step h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Why MIRIM ── */
.why-section {
  background: var(--dark-brown);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: rgba(255,255,255,0.02);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

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

.why-left h2 { color: var(--white); margin-bottom: 20px; }
.why-left h2 em { color: var(--gold); }
.why-left p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.why-point::before {
  content: '→';
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--off-white);
  padding: var(--section-pad);
}

.cta-box {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(208,255,20,0.1) 0%, transparent 70%);
}

.cta-box h2 { color: var(--white); margin-bottom: 16px; }
.cta-box h2 em { color: var(--lime); }
.cta-box p { color: rgba(255,255,255,0.6); font-size: 1rem; }

.cta-form { position: relative; z-index: 1; }

.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--lime);
  background: rgba(255,255,255,0.08);
}

.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select { color: rgba(255,255,255,0.6); }
.form-group select option { background: var(--dark); color: var(--white); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Footer ── */
footer {
  background: var(--dark-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-brand img {
  height: 36px;
  mix-blend-mode: screen;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-bottom a:hover { color: var(--lime); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 160px 24px 96px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero h1 em { color: var(--gold); }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ── Service Page ── */
.service-detail {
  padding: var(--section-pad);
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.service-what h3 { color: var(--dark); margin-bottom: 16px; }
.service-what p { color: var(--text-muted); font-size: 1rem; margin-bottom: 24px; }

.deliverables {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliverable {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.deliverable::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--lime);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.outcome-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  border-left: 3px solid var(--lime);
}

.outcome-card .metric {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}

.outcome-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Engagement Models ── */
.models-section { background: var(--off-white); }

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

.model-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}

.model-card.featured {
  background: var(--dark);
  border-color: var(--lime);
}

.model-card:not(.featured):hover {
  border-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.model-card.featured:hover { transform: translateY(-4px); }

.model-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.model-card h3 { margin-bottom: 8px; }
.model-card.featured h3 { color: var(--white); }

.model-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.model-card.featured .model-duration { color: rgba(255,255,255,0.5); }

.model-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.model-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.model-card.featured .model-feature { color: rgba(255,255,255,0.75); }

.model-feature::before {
  content: '→';
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--dark);
  padding: 64px 24px;
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--dark-deep);
  padding: 12px 24px;
}

.breadcrumb-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.breadcrumb-inner a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.breadcrumb-inner a:hover { color: var(--lime); }
.breadcrumb-inner span { color: rgba(255,255,255,0.2); }

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--lime);
  margin: 20px 0 32px;
}

/* ── Mobile ── */
@media (max-width: 900px) {
  :root { --section-pad: 72px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark-deep);
    padding: 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open + .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-box { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .models-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .proof-bar-inner { gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}

@media (max-width: 560px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .proof-bar-inner { flex-direction: column; gap: 12px; }
}
