/* ===== Self-hosted Fonts ===== */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/cormorant-garamond-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/jost-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/jost-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/jost-600.woff2') format('woff2');
}

/* ===== Design Tokens ===== */
:root {
  --bg-cream: #f8f5ef;
  --bg-white: #fefdfb;
  --green-primary: #4a6342;
  --green-dark: #2f4128;
  --green-light: #8ba882;
  --green-pale: #e8efe5;
  --green-mute: #eef2eb;
  --warm-neutral: #f5f0ea;
  --text-dark: #1f1f1f;
  --text-body: #333333;
  --text-muted: #5a5a5a;
  --gold: #c4a35a;
  --blush: #e8ddd5;
  --border-soft: #e0ddd6;
  --border-light: #ebe8e2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-trust: 8px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --max-width-narrow: 760px;
  --privacy-max: 780px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 600;
}

h1 {
  font-weight: 700;
}

a {
  color: var(--green-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 2px;
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--green-dark);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  font-weight: 500;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
  color: #fff;
  text-decoration: none;
}

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

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 56px 0;
}

.section-cream {
  background: var(--bg-cream);
}

.section-heading {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
}

.section-lead {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.section-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 36px;
}

/* ===== Header ===== */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-brand img {
  height: 64px;
  width: auto;
  display: block;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9375rem;
}

.header-phone:hover {
  text-decoration: none;
  color: var(--green-primary);
}

.header-phone .icon {
  color: var(--green-primary);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--green-primary);
  border: 2px solid var(--green-primary);
}

.btn-outline:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9375rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(175deg, var(--bg-white) 0%, var(--bg-cream) 100%);
  padding: 36px 0 48px;
}

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

.hero-text h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  color: var(--text-dark);
  font-weight: 700;
}

.hero-lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 540px;
  font-weight: 400;
}

/* ===== Hero Trust Badges (rounded rectangles, not pills) ===== */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--green-mute);
  color: var(--green-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-trust);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.hero-contact-quick {
  margin-bottom: 20px;
}

/* ===== Secondary Contact Controls ===== */
.hero-alt-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: all var(--transition);
  min-height: 40px;
}

.contact-pill:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  text-decoration: none;
  background: var(--green-mute);
}

.contact-pill svg {
  flex-shrink: 0;
  color: var(--green-primary);
}

/* ===== Callback Form Card ===== */
.callback-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 22px 22px;
  box-shadow: var(--shadow-md);
}

.form-heading {
  font-size: 1.375rem;
  margin-bottom: 6px;
  text-align: center;
  font-weight: 600;
}

.form-intro {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 16px;
  font-weight: 400;
}

.form-field {
  margin-bottom: 12px;
}

.form-field label {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.req {
  color: #c0392b;
}

.opt {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--green-primary);
  background: var(--bg-white);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
  border-color: #c0392b;
}

.error-text {
  display: block;
  color: #c0392b;
  font-size: 0.8125rem;
  margin-top: 4px;
  min-height: 1em;
}

.field-hint {
  display: block;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 4px;
}

.form-privacy-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
}

.form-privacy-note a {
  font-weight: 500;
}

.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 12px;
  font-weight: 400;
}

/* Form success/error states */
.form-success {
  text-align: center;
  padding: 24px 16px;
}

.form-success .success-icon {
  color: var(--green-primary);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-body);
  margin-bottom: 8px;
}

.form-success .success-small {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.form-error {
  background: #fdf2f2;
  border: 1px solid #e8b4b4;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  color: #c0392b;
  font-size: 0.9375rem;
}

/* ===== Trust Strip ===== */
.trust-strip {
  background: var(--bg-white);
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
}

.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 90px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px;
  transition: border-color var(--transition);
}

.trust-item:hover {
  border-color: var(--green-light);
}

.trust-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity var(--transition);
}

.trust-item:hover img {
  opacity: 1;
}

/* ===== Cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.cards-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.card h3 {
  font-size: 1.1875rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body);
  font-weight: 400;
}

/* ===== Approach ===== */
.approach-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
}

.approach-text p {
  margin-bottom: 14px;
}

.approach-cta {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: center;
}

.approach-cta p {
  margin-bottom: 16px;
  font-weight: 500;
  color: var(--green-dark);
}

/* ===== Reviews ===== */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.reviews-google-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.reviews-google-g {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #4285F4;
}

.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.review-excerpt {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-body);
  flex-grow: 1;
  font-weight: 400;
  font-style: normal;
}

.review-excerpt::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-light);
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 2px;
}

.review-excerpt::after {
  content: '\201D';
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--green-light);
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 2px;
}

.review-source {
  font-size: 0.8125rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.review-source-name {
  font-weight: 500;
  color: var(--text-dark);
}

.review-source-attribution {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.reviews-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 20px;
}

.reviews-link {
  text-align: center;
  margin-top: 12px;
}

.reviews-link a {
  font-size: 0.875rem;
  font-weight: 500;
}

.reviews-cta {
  text-align: center;
  margin-top: 28px;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-portrait {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-md);
}

.about-text p {
  margin-bottom: 14px;
}

.about-credentials {
  list-style: none;
  margin-top: 18px;
}

.about-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
}

.check-icon {
  color: var(--green-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 36px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step h3 {
  font-size: 1.1875rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-body);
  font-weight: 400;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 44px;
  color: var(--text-dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green-primary);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
  color: var(--green-primary);
}

.faq-item p {
  padding: 0 20px 16px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 400;
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--green-pale);
  text-align: center;
}

.final-contact-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--green-dark);
  color: #d4d4d0;
  padding: 48px 0 88px;
}

.site-footer a {
  color: #c8d8c4;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 32px;
}

.footer-heading {
  color: #fff;
  font-size: 1.0625rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-section p {
  font-size: 0.9375rem;
  margin-bottom: 6px;
  font-weight: 400;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  margin-bottom: 16px;
}

.footer-disclaimer p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #b8c8b4;
}

.footer-crisis {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.footer-crisis p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #c8d8c4;
}

.footer-crisis strong {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: #a0b09c;
}

/* ===== Mobile Sticky CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-soft);
  padding: 12px 16px;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

/* ===== Privacy Policy Page ===== */
.privacy-page {
  background: var(--bg-cream);
  padding: 56px 0;
}

.privacy-content {
  max-width: var(--privacy-max);
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-content h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: left;
}

.privacy-content h2 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.privacy-content h2:first-of-type {
  margin-top: 0;
}

.privacy-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
  color: var(--text-body);
}

.privacy-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.privacy-content ul li {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
  color: var(--text-body);
}

.privacy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
}

.privacy-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.privacy-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.privacy-back .btn {
  font-weight: 500;
}

/* ===== Responsive: Tablet (768px) ===== */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-lead {
    font-size: 1.0625rem;
  }

  .approach-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .about-portrait {
    width: 220px;
    height: 275px;
    margin: 0 auto;
  }

  .about-credentials li {
    text-align: left;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 44px 0;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .header-phone span {
    display: none;
  }

  .header-contact {
    gap: 12px;
  }

  .header-brand img {
    height: 48px;
  }

  .trust-item {
    width: 110px;
    height: 80px;
  }
}

/* ===== Responsive: Mobile (375px - 480px) ===== */
@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 16px;
  }

  .header-inner {
    padding: 8px 16px;
  }

  .hero {
    padding: 24px 0 36px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 6px;
  }

  .trust-badge {
    font-size: 0.75rem;
    text-align: center;
    justify-content: center;
  }

  .hero-alt-contact {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .contact-pill {
    justify-content: center;
  }

  .callback-card {
    padding: 20px 16px;
  }

  .form-heading {
    font-size: 1.25rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9375rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cards-grid-3 {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner {
    gap: 12px;
  }

  .trust-item {
    width: 100px;
    height: 72px;
    padding: 8px;
  }

  .section {
    padding: 36px 0;
  }

  .section-heading {
    font-size: 1.375rem;
  }

  .section-lead {
    font-size: 1rem;
  }

  .final-contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .final-contact-buttons .btn {
    width: 100%;
  }

  .mobile-cta {
    display: block;
  }

  /* Ensure content not hidden behind sticky CTA */
  body {
    padding-bottom: 72px;
  }

  .faq-item summary {
    font-size: 0.9375rem;
    padding: 14px 16px;
    padding-right: 40px;
  }

  .faq-item p {
    font-size: 0.875rem;
    padding: 0 16px 14px;
  }

  .privacy-content {
    padding: 0 16px;
  }

  .privacy-content h1 {
    font-size: 1.625rem;
  }

  .privacy-content h2 {
    font-size: 1.1875rem;
  }
}

/* ===== Responsive: Desktop large (1440px+) ===== */
@media (min-width: 1200px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-lead {
    font-size: 1.25rem;
  }
}