/* ============================================================
   MIGERA | migeralb.com — Light Luxury Theme
   Brand: Cream #FAF8F4, Gold #C9A85C, Charcoal #1C1C1C
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

:root {
  --gold: #C9A85C;
  --gold-light: #dfc07c;
  --gold-pale: #f5edd8;
  --charcoal: #1C1C1C;
  --charcoal-2: #2e2e2e;
  --cream: #FAF8F4;
  --cream-2: #F2EDE4;
  --warm-white: #ffffff;
  --text: #4a453e;
  --text-light: #8c8278;
  --border: rgba(201,168,92,0.2);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 82px;
  --shadow: 0 4px 32px rgba(28,28,28,0.08);
  --shadow-lg: 0 12px 48px rgba(28,28,28,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--charcoal); line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 300; }
h3 { font-size: 1.25rem; font-weight: 400; }
p { line-height: 1.78; font-weight: 300; font-size: 0.975rem; color: var(--text); }
em { font-style: italic; color: var(--gold); }
a { color: inherit; text-decoration: none; }
strong { font-weight: 500; color: var(--charcoal); }
.gold-text { color: var(--gold); }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.bg-cream { background: var(--cream-2); }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-header p { color: var(--text-light); margin-top: 0.75rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: block;
}

/* ── Buttons ── */
.btn-gold {
  display: inline-block;
  padding: 13px 32px;
  background: var(--gold);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,92,0.3); }
.btn-gold.full { width: 100%; text-align: center; display: block; padding: 16px; font-size: 0.88rem; }

.btn-outline-dark {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  background: transparent;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--warm-white); }

.btn-outline-light {
  display: inline-block;
  padding: 13px 32px;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline-light:hover { border-color: var(--warm-white); background: rgba(255,255,255,0.1); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,92,0.15);
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 50px; width: auto; max-width: 220px; transition: opacity 0.3s; display: block; object-fit: contain; }
.nav-logo img:hover { opacity: 0.75; }

.nav-menu { display: flex; align-items: center; gap: 2.2rem; }
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: #ffffff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-nav {
  padding: 9px 22px;
  border: 1.5px solid var(--gold);
  color: var(--gold) !important;
  transition: all 0.3s;
}
.btn-nav::after { display: none; }
.btn-nav:hover { background: var(--gold); color: var(--warm-white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO (index) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.05);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(250,248,244,0) 0%, rgba(28,28,28,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 2rem 4rem;
}
.eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-content h1 {
  color: var(--warm-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
  margin-bottom: 1.4rem;
}
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.hero-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  max-width: 900px;
  margin-top: auto;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-card {
  padding: 2rem 2.5rem;
  background: rgba(250,248,244,0.92);
  backdrop-filter: blur(12px);
  border-right: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.3s;
  display: block;
}
.hero-card:last-child { border-right: none; }
.hero-card:hover { background: var(--warm-white); }
.hc-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 0.6rem; }
.hc-label { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--charcoal); margin-bottom: 0.2rem; }
.hc-sub { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.06em; }

/* ── PAGE HERO SM ── */
.page-hero-sm {
  background: var(--cream-2);
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero-sm h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 0.5rem 0 1rem; }
.page-hero-sm p { color: var(--text-light); max-width: 580px; margin: 0 auto 2rem; font-size: 1rem; }
.re-hero { background: var(--charcoal); }
.re-hero h1, .re-hero p { color: var(--warm-white); }
.re-hero p { color: rgba(255,255,255,0.7); }
.re-badge-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--warm-white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 1.2rem;
}

/* ── ABOUT STRIP ── */
.about-strip { background: var(--warm-white); padding: 7rem 0; }
.strip-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}
.strip-text h2 { margin: 0.5rem 0 1.5rem; }
.strip-text p + p { margin-top: 1rem; }
.strip-text .btn-gold { margin-top: 2rem; }

.strip-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.stat-box {
  background: var(--cream);
  padding: 2.5rem;
  text-align: center;
}
.stat-box.gold-bg { background: var(--gold); }
.stat-box.gold-bg .stat-n,
.stat-box.gold-bg .stat-l { color: var(--warm-white); }
.stat-n { font-family: var(--font-display); font-size: 3rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-box.gold-bg .stat-n { color: var(--warm-white); }
.stat-l { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 6px; }

/* ── PILLARS ── */
.services-preview { background: var(--cream); padding: 7rem 0; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.pillar {
  background: var(--warm-white);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  position: relative;
}
.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2.5rem; right: 2.5rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.pillar:hover { background: var(--cream-2); }
.pillar:hover::after { transform: scaleX(1); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.pillar h3 { margin-bottom: 0.8rem; }
.pillar p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }
.pillar-link { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; color: var(--gold); transition: letter-spacing 0.3s; }
.pillar-link:hover { letter-spacing: 0.12em; }

/* ── CLIENTS ── */
.clients-section { background: var(--cream-2); padding: 5rem 0; }
.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.client-tag {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-light);
  padding: 0.6rem 2rem;
  transition: color 0.3s;
  cursor: default;
}
.client-tag:hover { color: var(--gold); }
.client-dot { color: var(--gold); opacity: 0.4; font-size: 1.5rem; }

/* ── CONTACT / FORMS ── */
.contact-section { background: var(--warm-white); padding: 7rem 0; }
.form-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  border: 1.5px solid var(--border);
  display: inline-flex;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 3rem;
  display: flex;
}
.tab-btn {
  flex: 1;
  padding: 13px 0;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
}
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: var(--gold-pale); }
.tab-btn:hover:not(.active) { color: var(--charcoal); }

.lead-form {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.lead-form.centered { max-width: 680px; }
.lead-form.hidden { display: none; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.fg { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.2rem; }
.fg:last-child { margin-bottom: 0; }
.fg label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.fg input,
.fg select,
.fg textarea {
  background: var(--warm-white);
  border: 1px solid rgba(28,28,28,0.12);
  color: var(--charcoal);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,92,0.12);
}
.fg select { appearance: none; cursor: pointer; }
.fg textarea { resize: vertical; min-height: 100px; }

.form-success {
  margin-top: 1.2rem;
  padding: 14px 18px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.88rem;
  font-weight: 500;
  border-left: 3px solid #4caf50;
  display: none;
}

.contact-info-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.ci-item { display: flex; flex-direction: column; gap: 3px; padding: 0 1.5rem; }
.ci-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.ci-val { font-size: 0.9rem; color: var(--text); }
.ci-val a { color: var(--text); transition: color 0.3s; }
.ci-val a:hover { color: var(--gold); }
.ci-sep { color: var(--border); font-size: 1.5rem; }

/* ── SERVICES FULL PAGE ── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}
.svc-card {
  background: var(--warm-white);
  padding: 3rem;
  position: relative;
  transition: background 0.3s;
}
.svc-card:hover { background: var(--cream); }
.svc-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: 1;
  position: absolute;
  top: 2rem; right: 2.5rem;
}
.svc-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.8rem; }
.svc-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.svc-card > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }
.svc-list { list-style: none; }
.svc-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.5rem; top: 0.6rem; }

/* ── CTA BAND ── */
.cta-band { background: var(--charcoal); padding: 6rem 0; }
.cta-band-inner { text-align: center; }
.cta-band-inner h2 { color: var(--warm-white); margin-bottom: 0.8rem; }
.cta-band-inner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

/* ── REAL ESTATE FEATURES ── */
.re-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.re-feat {
  background: var(--warm-white);
  padding: 2.5rem;
  transition: background 0.3s;
}
.re-feat:hover { background: var(--cream); }
.re-feat-icon { font-size: 2rem; margin-bottom: 1rem; }
.re-feat h3 { font-size: 1.1rem; margin-bottom: 0.7rem; }
.re-feat p { font-size: 0.875rem; color: var(--text-light); }

/* ── PROCESS STEPS ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
}
.step-n {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.83rem; color: var(--text-light); }
.step-arrow { font-size: 1.5rem; color: var(--gold); opacity: 0.5; padding-top: 3rem; flex-shrink: 0; }

/* ── COMING SOON PAGE ── */
.coming-soon-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.cs-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  padding: 4rem 2rem;
}
.cs-content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin: 0.8rem 0 1.5rem; }
.cs-content p { color: var(--text-light); margin-bottom: 2.5rem; font-size: 1rem; }
.notify-form { display: flex; gap: 0; max-width: 440px; margin: 0 auto 2rem; }
.notify-form input {
  flex: 1;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-right: none;
  background: var(--warm-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}
.notify-form input:focus { border-color: var(--gold); }
.cs-links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

.cs-decoration { position: absolute; right: -10%; top: 50%; transform: translateY(-50%); }
.cs-ring {
  border-radius: 50%;
  border: 1px solid var(--border);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 4s ease-in-out infinite;
}
.r1 { width: 300px; height: 300px; }
.r2 { width: 500px; height: 500px; animation-delay: 1s; }
.r3 { width: 700px; height: 700px; animation-delay: 2s; }
@keyframes ringPulse { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.35; } }

/* ── FOOTER ── */
.footer { background: var(--charcoal); padding: 5rem 0 2rem; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 52px; width: auto; margin-bottom: 0.8rem; display: block; filter: brightness(0) invert(1); }
.footer-brand p, .footer-brand .footer-email { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-brand .footer-email { margin-top: 0.4rem; }
.footer-brand .footer-email a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-brand .footer-email a:hover { color: var(--gold); }

.footer-nav { display: flex; gap: 4rem; }
.fn-col { display: flex; flex-direction: column; gap: 0.7rem; }
.fn-head { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.fn-col a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.fn-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .strip-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pillars { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .re-features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cards { grid-template-columns: 1fr; max-width: 380px; }
  .hero-card { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-card:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .navbar { padding: 0 1.5rem; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(250,248,244,0.98);
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.open { transform: translateY(0); }
  .section { padding: 4.5rem 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .re-features-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding-top: 0; align-self: center; }
  .clients-row { flex-direction: column; gap: 0.3rem; }
  .client-dot { display: none; }
  .footer-nav { gap: 2.5rem; }
  .footer-top { flex-direction: column; }
  .contact-info-strip { flex-direction: column; }
  .ci-sep { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
  .form-tabs { flex-direction: column; }
  .notify-form { flex-direction: column; }
  .notify-form input { border-right: 1.5px solid var(--border); border-bottom: none; }
  .strip-stats { grid-template-columns: 1fr 1fr; }
  .cs-decoration { display: none; }
}
