
:root {
  --primary: #6d28d9;
  --primary-dark: #4c1d95;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --nav-bg: #1e1b4b;
  --footer-bg: #111827;
  --text: #111827;
  --text-light: #4b5563;
  --bg: #f8fafc;
  --bg-soft: #eef2ff;
  --white: #ffffff;
  --border: #e5e7eb;
  --border-strong: #cbd5e1;
  --code-bg: #f1f5f9;
  --success-bg: #ecfdf5;
  --success-text: #065f46;
  --success-border: #a7f3d0;
  --error-bg: #fef2f2;
  --error-text: #991b1b;
  --error-border: #fecaca;
  --shadow: 0 2px 4px rgba(15,23,42,0.04), 0 10px 30px rgba(15,23,42,0.06);
  --shadow-lg: 0 4px 8px rgba(15,23,42,0.06), 0 18px 50px rgba(15,23,42,0.12);
  --shadow-btn: 0 2px 8px rgba(109,40,217,0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --font: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  margin: 0 0 0.9rem;
  line-height: 1.2;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 1rem; color: var(--text-light); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }

/* ── Hero entrance animations ── */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-copy       { animation: hero-in 0.85s var(--ease) both; }
.hero-card       { animation: hero-in 0.85s var(--ease) 0.12s both; }
.hero-copy .trust-pills { animation: hero-fade 0.7s var(--ease) 0.4s both; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(30, 27, 75, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.18);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
}
.nav-brand span { color: #5eead4; }
.nav-brand:hover { text-decoration: none; color: var(--white); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.86);
  padding: 0.8rem 0.95rem;
  display: block;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: #5eead4;
  border-radius: 1px;
  transition: width 0.3s var(--ease), left 0.3s var(--ease);
}
.nav-links a:hover::after {
  width: calc(100% - 1.9rem);
  left: 0.95rem;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
}

.container, .container-wide {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.container { max-width: 820px; }
.section {
  padding: 4rem 0;
}
.section-muted {
  background: linear-gradient(180deg, rgba(99,102,241,0.06), rgba(15,118,110,0.04));
  position: relative;
}
.section-muted::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.02;
  pointer-events: none;
}
.section-muted > * { position: relative; z-index: 1; }
.page-hero {
  padding: 4.75rem 0 3rem;
  background: linear-gradient(135deg, rgba(109,40,217,0.96), rgba(15,118,110,0.96));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1, .page-hero p, .hero h1, .hero p { color: var(--white); }
.page-hero p { max-width: 760px; color: rgba(255,255,255,0.88); }
.hero-business {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 35%),
    linear-gradient(135deg, rgba(109,40,217,1), rgba(15,118,110,1));
}
.hero-business::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-business::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.035;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 { margin-bottom: 1rem; color: var(--white); }
.hero-sub { font-size: 1.15rem; max-width: 680px; color: rgba(255,255,255,0.9); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c4b5fd;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.4rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
}
.page-hero .eyebrow { color: #ccfbf1; }
.hero-actions, .button-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 1.6rem 0 0;
}
.button-row-left { justify-content: flex-start; }
.hero-card,
.callout-card,
.more-card,
.price-card,
.info-card,
.faq-item,
.card,
.article,
.cta-panel {
  background: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card {
  padding: 1.4rem;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
}
.hero-card h2, .hero-card h3, .hero-card p { color: var(--white); }
.hero-card p { color: rgba(255,255,255,0.86); }
.service-mini-list > div + div { margin-top: 1rem; }

.trust-pills {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.trust-pills li,
.tag {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.14);
}
.tag-row { margin-bottom: 0.8rem; }
.card-link .tag {
  background: #ede9fe;
  color: var(--primary-dark);
  border: 1px solid #ddd6fe;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease;
}
.btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 16px rgba(109,40,217,0.28);
}
.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-btn);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: var(--shadow);
}
.btn-secondary:hover {
  background: #ede9fe;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(15,23,42,0.1);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: #f5f3ff;
  color: var(--primary-dark);
}

.section-head {
  margin-bottom: 1.75rem;
}
.section-head p { max-width: 760px; }

.icon-grid,
.card-grid,
.pricing-grid {
  display: grid;
  gap: 1.2rem;
}
.icon-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card,
.price-card,
.callout-card,
.more-card,
.faq-item,
.card,
.cta-panel {
  padding: 1.4rem;
  border: 1px solid var(--border);
}
.info-card {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.info-card:hover {
  transform: translateY(-3px) rotate(var(--hover-rotate, 0deg));
  box-shadow: var(--shadow-lg);
}
.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ede9fe;
  color: var(--primary-dark);
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: transform 0.25s var(--ease), background 0.25s ease;
}
.info-card:hover .icon-badge {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}
.card-link {
  display: block;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--text);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}
.card-link:hover {
  transform: translateY(-4px);
  text-decoration: none;
  color: var(--text);
  border-color: #c4b5fd;
  box-shadow: 0 8px 30px rgba(109,40,217,0.1), 0 20px 50px rgba(15,23,42,0.08);
}
.card-link-static { cursor: default; }
.card-link-static:hover { transform: none; }
.card-link h3 { color: var(--text); }
.card-link p { margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.split-tight { grid-template-columns: 1.1fr 0.9fr; }
.split-form { grid-template-columns: 1.2fr 0.7fr; }
.sticky-card {
  position: sticky;
  top: 92px;
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.step:hover {
  transform: translateY(-2px) rotate(var(--hover-rotate, 0deg));
  box-shadow: var(--shadow-lg);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 1.1rem;
  transition: background 0.25s ease;
}
.step:hover .step-num {
  background: linear-gradient(135deg, var(--primary), #7c3aed);
  color: var(--white);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: var(--text-light);
}
.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}
.cta-panel,
.cta-band-inner {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: space-between;
}
.cta-band {
  padding: 4rem 0 4.5rem;
  background: linear-gradient(135deg, rgba(109,40,217,1), rgba(15,118,110,1));
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-band-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-band-inner h2,
.cta-band-inner p,
.cta-band-inner .eyebrow { color: var(--white); }
.cta-band-inner .eyebrow { color: #ccfbf1; }

.article {
  background: var(--white);
  border: 1px solid var(--border);
}
.article-header {
  background: linear-gradient(135deg, rgba(109,40,217,1), rgba(15,118,110,1));
  color: var(--white);
  padding: 2.2rem 1.5rem 1.7rem;
  border-radius: var(--radius) var(--radius) 0 0;
}
.article-header h1, .article-header .meta { color: var(--white); }
.article-body {
  padding: 1.5rem;
}
.article-body ul, .article-body ol {
  margin: 0 0 1rem 1.2rem;
}
.article-body li { margin-bottom: 0.45rem; color: var(--text-light); }
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1rem 0;
}
.article-body th, .article-body td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.75rem;
  text-align: left;
}
.article-body th { background: #f8fafc; }
.article-body tr:nth-child(even) { background: #fafafa; }
.article-body pre {
  background: #0f172a;
  color: #e2e8f0;
  padding: 1rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.92rem;
}
.article-body code {
  background: var(--code-bg);
  color: var(--primary-dark);
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.9em;
}
.article-body pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}
.warning,
.guide-note,
.callout-inline {
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  margin: 1rem 0;
  border: 1px solid #fde68a;
  background: #fffbeb;
  color: #92400e;
}
.guide-note {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e3a8a;
}
.repair-cta-inline {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.breadcrumb {
  font-size: 0.92rem;
  color: var(--text-light);
  padding-top: 1rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 0.25rem; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.15);
}
:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}
.form-status {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  font-weight: 600;
}
.form-status--success {
  background: var(--success-bg);
  color: var(--success-text);
  border: 1px solid var(--success-border);
}
.form-status--error {
  background: var(--error-bg);
  color: var(--error-text);
  border: 1px solid var(--error-border);
}

.price-card { text-align: left; }
.price-card.featured {
  border-color: #c4b5fd;
  box-shadow: var(--shadow-lg);
}
.price-label {
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.price-value {
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.9rem;
}
.price-copy { margin-bottom: 0; }

.contact-info p { margin-bottom: 0.35rem; }
.text-link { font-weight: 700; }
.faq-list {
  display: grid;
  gap: 1rem;
}
.faq-item h2 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.site-footer {
  margin-top: 0;
  background: var(--footer-bg);
  color: rgba(255,255,255,0.76);
  padding: 3rem 0 2rem;
}
.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 1.4rem;
}
.footer-col h4 {
  color: var(--white);
  margin: 0 0 0.7rem;
}
.footer-col p { margin: 0 0 0.5rem; color: rgba(255,255,255,0.72); }
.footer-col a { color: rgba(255,255,255,0.84); }
.footer-col a:hover { color: #99f6e4; text-decoration: none; }
.footer-bottom {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.62);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .split-tight,
  .split-form,
  .cta-panel,
  .cta-band-inner,
  .pricing-grid,
  .icon-grid,
  .footer-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
  .sticky-card { position: static; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-inner { flex-wrap: wrap; position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--nav-bg);
    padding: 0.65rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 14px; }
  .nav-links a::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .section { padding: 3rem 0; }
  .page-hero,
  .hero-business { padding: 4rem 0 3rem; }
  .container, .container-wide, .footer-inner, .footer-bottom, .cta-band-inner {
    width: min(var(--max), calc(100% - 1.25rem));
  }
  .article-body, .card, .callout-card, .more-card, .info-card, .price-card, .faq-item, .cta-panel {
    padding: 1.15rem;
  }
}


.section-tight { padding: 1.6rem 0 0.4rem; }

.review-highlight-grid,
.testimonial-grid,
.theme-grid {
  display: grid;
  gap: 1rem;
}
.review-highlight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.review-highlight-card,
.testimonial-card,
.mini-testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.review-highlight-card {
  padding: 1.15rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.review-highlight-card:hover {
  transform: translateY(-2px) rotate(var(--hover-rotate, 0deg));
  box-shadow: var(--shadow-lg);
}
.review-highlight-value {
  margin: 0 0 0.35rem;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 800;
  color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.review-highlight-label {
  margin: 0;
  color: var(--text-light);
}
.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.testimonial-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.testimonial-card {
  padding: 1.5rem 1.5rem 1.25rem;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-3px) rotate(var(--hover-rotate, 0deg));
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--quote-top, 0.6rem);
  right: var(--quote-right, 1.1rem);
  font-family: var(--font-display);
  font-size: var(--quote-size, 3.5rem);
  line-height: 1;
  color: #ede9fe;
  pointer-events: none;
}
.testimonial-quote {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
}
.testimonial-meta {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.theme-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.mini-testimonial-stack {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0;
}
.mini-testimonial {
  padding: 0.95rem;
  background: rgba(109,40,217,0.05);
}
.mini-testimonial p {
  margin: 0 0 0.45rem;
  color: var(--text);
  font-weight: 600;
}
.mini-testimonial span {
  color: var(--text-light);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .review-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .review-highlight-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Scroll-reveal animation system ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-copy, .hero-card, .hero-copy .trust-pills { animation: none; }
}

/* ── Callout card left accent bar ── */
.callout-card {
  border-left: 3px solid var(--primary);
}

/* ── Footer link hover underline ── */
.footer-col a {
  transition: color 0.2s ease;
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #99f6e4;
  transition: width 0.25s var(--ease);
}
.footer-col a:hover::after {
  width: 100%;
}
