/* =====================================================
   Tuned Into Healing — Redesign Mockup
   Colors matched to logo: lavender, teal, indigo
   Fonts: Pompiere (display) · Poppins (body)
   ===================================================== */

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

:root {
  --bg:        #eee8f4;
  --bg-alt:    #f8f4fa;
  --purple:    #8b7db8;
  --plum:      #4a3f6b;
  --plum-dark: #352d52;
  --teal:      #7ec4c4;
  --text:      #2d2640;
  --muted:     #6b6085;
  --border:    #d8d0e4;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 2px 16px rgba(87,47,87,0.10);
  --shadow-md: 0 6px 32px rgba(87,47,87,0.14);
  --max-w:     1160px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.3;
  color: var(--plum);
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { color: var(--muted); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--plum); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple); }

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
  display: none;
}

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

section { padding: 80px 0; }
section:nth-child(even):not(.cta-band):not(.testimonials-section) {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(139,125,184,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(126,196,196,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(139,125,184,0.04) 0%, transparent 50%),
    var(--bg-alt);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
}
.btn-primary:hover {
  background: var(--plum-dark);
  border-color: var(--plum-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(87,47,87,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}
.btn-lg { padding: 16px 40px; font-size: .95rem; }

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(238,232,244,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 2px 20px rgba(87,47,87,0.10); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: 'Pompiere', cursive;
  font-size: 1.5rem;
  color: var(--plum);
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 64px; width: auto; }
.footer-logo-img { height: 48px; width: auto; margin-bottom: 12px; border-radius: 8px; }
.nav-logo span { color: var(--purple); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--plum); }
.nav-links .nav-cta { margin-left: 8px; }
.nav-links .nav-cta a { color: #fff; }


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

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45,31,45,0.55);
  z-index: 199;
}
.mobile-overlay.open { display: block; }

.mobile-menu {
  overflow-y: auto;
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--bg);
  border-left: 1px solid var(--border);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  padding: 80px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--plum);
  cursor: pointer;
  line-height: 1;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: .95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
.mobile-menu .btn-primary { color: #fff; }
.mobile-menu-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--purple);
  padding: 16px 0 4px;
}

/* ---- HERO ---- */
.hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #eee8f4 0%, #e4ddf0 40%, #d8d0e8 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(139,125,184,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text { position: relative; z-index: 1; }
.hero-text h1 { margin-bottom: 20px; }
.hero-text h1 em {
  font-style: normal;
  color: var(--purple);
}
.hero-text p { font-size: 1.05rem; margin-bottom: 32px; max-width: 440px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin-top: 20px;
  font-size: .78rem;
  color: var(--purple);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center top;
  max-height: 520px;
}
.hero-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.hero-card .tune-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.hero-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.hero-card p { font-size: .88rem; }

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--plum);
  box-shadow: var(--shadow);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  padding: 32px 0;
  background: var(--plum);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
  color: rgba(255,255,255,0.9);
}
.trust-item strong {
  display: block;
  font-family: 'Pompiere', cursive;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
}
.trust-item span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }

/* ---- HOW IT HELPS ---- */
.helps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.helps-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: box-shadow var(--transition), transform var(--transition), border-left-color var(--transition);
}
.helps-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-left-color: var(--plum);
}
.helps-grid-2 { grid-template-columns: repeat(2, 1fr); }
.helps-card h4 { color: var(--plum); margin-bottom: 8px; }
.helps-card p { font-size: .88rem; margin: 0; }

.section-header { text-align: center; max-width: 600px; margin: 0 auto 16px; }
.section-header p { font-size: 1rem; }

/* ---- ABOUT SPLIT ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-inner {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.about-img-placeholder {
  background: linear-gradient(135deg, #ddd4ec, #c8bee0);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: .88rem;
  font-weight: 500;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: 75% 15%;
  aspect-ratio: 3/4;
  transform: scale(1.08);
}
.about-img-placeholder .big-icon { font-size: 3rem; margin-bottom: 12px; }

.about-badge {
  position: absolute;
  bottom: -32px;
  right: -16px;
  background: var(--plum);
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  max-width: 200px;
  text-align: center;
  line-height: 1.4;
}
.about-content .eyebrow { margin-bottom: 8px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-creds {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
}
.cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text);
  font-weight: 500;
}
.cred::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: var(--purple);
  border-width: 2px;
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plum);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.5rem; }
.service-card p { font-size: .88rem; flex: 1; margin-bottom: 20px; }
.service-price {
  font-family: 'Pompiere', cursive;
  font-size: 2.2rem;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 4px;
}
.service-price span { font-family: 'Poppins', sans-serif; font-size: .85rem; color: var(--muted); font-weight: 400; }
.service-duration {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.service-card .btn { display: block; text-align: center; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: linear-gradient(160deg, #e8e0f2, #ddd4ec); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonials-grid-3 { grid-template-columns: repeat(3, 1fr); }
.testimonial-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Pompiere', cursive;
  font-size: 5rem;
  color: var(--purple);
  opacity: .25;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-style: italic;
  color: var(--text);
  font-size: .92rem;
  margin-bottom: 20px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--plum));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Pompiere', cursive;
  color: #fff;
  font-size: 1.1rem;
}
.author-name { font-weight: 600; font-size: .88rem; color: var(--plum); }
.author-title { font-size: .75rem; color: var(--muted); }
.stars { color: #c4a0c4; font-size: .8rem; margin-bottom: 14px; }

/* ---- FAQ ---- */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--plum); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--plum);
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--plum); color: #fff; transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 22px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--plum-dark), var(--plum), #5a4f8a);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0 auto 36px; }
.cta-band .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  font-family: 'Pompiere', cursive;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.5); display: flex; align-items: center; transition: color .2s; }
.footer-social a:hover { color: #fff; }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 120px 0 72px;
  background: linear-gradient(145deg, #e8e0f2 0%, #dcd2ec 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ---- WHO IS IT FOR ---- */
.for-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.for-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: var(--text);
  line-height: 1.5;
}
.for-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ---- CONTACT FORM ---- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
}
.contact-detail .ico {
  min-width: 44px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--purple), var(--plum));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  padding: 0 8px;
  flex-shrink: 0;
}

.form-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  font-family: 'Poppins', sans-serif;
  font-size: .88rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--purple);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-card .btn { width: 100%; margin-top: 8px; }

/* ---- QUOTE BLOCK ---- */
.quote-block {
  background: transparent;
  color: var(--plum);
  border-radius: 0;
  padding: 60px 40px;
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-family: 'Pompiere', cursive;
  font-size: 6rem;
  color: var(--purple);
  opacity: .25;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
.quote-block p {
  font-family: 'Pompiere', cursive;
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--plum);
  line-height: 1.45;
  margin: 0;
  font-style: italic;
  letter-spacing: .03em;
}
.quote-block cite {
  display: block;
  margin-top: 16px;
  font-size: .78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1080px) {
  .nav-links { gap: 20px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { margin-top: 24px; }
  .hero-photo { max-height: none; width: 100%; object-position: center center; }
  .hero { min-height: auto; padding: 100px 0 64px; }

  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 280px; margin: 0 auto 24px; }

  .contact-split { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .trust-bar-inner { gap: 24px; }

  .page-hero { padding: 100px 0 56px; }

  .quote-block { padding: 40px 20px; }
}

@media (max-width: 600px) {
  section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid-3 { grid-template-columns: 1fr; }
  .helps-grid { grid-template-columns: 1fr; }
  .helps-grid-2 { grid-template-columns: 1fr; }
  .for-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-band .cta-buttons { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 88px 0 48px; }
  .page-hero h1 { font-size: clamp(1.9rem, 8vw, 3rem); }
  .quote-block { padding: 32px 16px; }
  .trust-bar-inner { gap: 20px; }
  .trust-item { min-width: 120px; }
  .hero-ctas .btn-lg { width: 100%; text-align: center; }
  .cta-band .btn-lg { width: 100%; max-width: 320px; }
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
