@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  /* Brand — from logo */
  --orange:       #F7931E;
  --orange-dark:  #D97706;
  --orange-light: #FEF3E2;
  --orange-xlt:   #FFFBF5;
  --gray-dark:    #2D2D2D;
  --gray:         #4A4A4A;
  --gray-mid:     #6B7280;
  --gray-lt:      #9CA3AF;
  --gray-bg:      #F5F5F5;
  --border:       #E5E7EB;
  --white:        #FFFFFF;
  --shadow:       0 2px 16px rgba(0,0,0,.08);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.14);
  --radius:       10px;
  --nav-h:        76px;
}

/* Backward-compat aliases (landing pages + inner pages) */
:root {
  --primary:       var(--orange);
  --primary-light: var(--orange-light);
  --accent:        var(--orange-dark);
  --bg-soft:       var(--gray-bg);
  --text-mid:      var(--gray-mid);
  --text-light:    var(--gray-lt);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; color: var(--gray-dark); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.2rem; }

.eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--orange); }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.section-gray { background: var(--gray-bg); }
.section-dark { background: var(--gray-dark); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 6px;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer;
  border: none; transition: all .2s;
}
.btn-orange, .btn-primary { background: var(--orange); color: #fff; }
.btn-orange:hover, .btn-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(247,147,30,.4); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--gray-dark); border: 1.5px solid var(--gray-dark); }
.btn-outline-dark:hover { background: var(--gray-dark); color: #fff; }
.btn-white { background: #fff; color: var(--orange); }
.btn-white:hover { background: var(--orange-light); }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

/* ── TOP BAR ── */
.topbar {
  background: var(--gray-dark); padding: 8px 0;
  font-size: 12.5px; font-family: 'Inter', sans-serif;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 6px; transition: color .15s; }
.topbar a:hover { color: var(--orange); }
.topbar i { color: var(--orange); font-size: 11px; }
.topbar-grp { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ── NAVBAR ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  height: var(--nav-h);
}
.nav-inner { display: flex; align-items: center; gap: 8px; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text { font-family: 'Playfair Display', serif; color: var(--gray-dark); font-size: 0.95rem; line-height: 1.2; }
.nav-logo-text small { font-family: 'Inter', sans-serif; font-size: 0.62rem; color: var(--gray-mid); display: block; font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 2px; margin: 0 auto; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: 5px;
  font-size: 0.875rem; font-weight: 600; color: var(--gray);
  transition: color .15s, background .15s; text-transform: uppercase; letter-spacing: .5px;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: var(--orange-xlt); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone { font-weight: 700; color: var(--gray-dark); font-size: 0.9rem; white-space: nowrap; }
.nav-phone:hover { color: var(--orange); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-dark); margin: 5px 0; border-radius: 2px; transition: .2s; }
.nav-mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--gray-dark); font-weight: 600; font-size: 0.95rem; }
.nav-mobile-menu a:last-child { border-bottom: none; }

/* ── HERO (full-bleed, dental-dimensions style) ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/images/hero-main.jpg');
  background-size: cover;
  background-position: center 20%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,   rgba(30,20,10,.88) 0%, rgba(30,20,10,.60) 30%, rgba(30,20,10,.25) 65%, rgba(30,20,10,.08) 100%),
    linear-gradient(to right, rgba(30,20,10,.35) 0%, rgba(30,20,10,.08) 55%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 0 72px;
  max-width: 660px;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--orange); }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700; color: #fff; line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.85); line-height: 1.7;
  margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-divider { width: 100%; height: 1px; background: rgba(255,255,255,.15); margin-bottom: 32px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--orange); line-height: 1; }
.hero-stat span { font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; display: block; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--orange); padding: 0; }
.trust-strip-inner {
  display: flex; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-right: 1px solid rgba(255,255,255,.2);
  flex: 1; min-width: 180px;
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 1.1rem; color: rgba(255,255,255,.85); flex-shrink: 0; }
.trust-item-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: #fff; }
.trust-item-text span { font-size: 0.75rem; color: rgba(255,255,255,.75); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--gray-dark); padding: 56px 0 52px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(247,147,30,.07);
}
.page-hero .breadcrumb { display: flex; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 560px; }

/* ── Section headings ── */
.section-title { text-align: center; margin-bottom: 52px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--gray-mid); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-title .eyebrow { justify-content: center; }
.section-title .eyebrow::before { display: none; }

/* ── Services grid ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px;
  text-align: center; transition: all .2s;
  text-decoration: none; color: var(--gray-dark); display: block;
}
.service-card:hover { border-color: var(--orange); box-shadow: 0 4px 20px rgba(247,147,30,.15); transform: translateY(-2px); color: var(--gray-dark); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin: 0 auto 16px;
}
.service-card h3 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.55; }
.service-card .link-arrow { color: var(--orange); font-size: 0.8rem; font-weight: 700; margin-top: 12px; display: block; text-transform: uppercase; letter-spacing: .5px; }

/* ── Footer logo text ── */
.footer-logo-text { font-family: 'Playfair Display', serif; color: #fff; font-size: 1rem; line-height: 1.2; margin-bottom: 14px; }
.footer-logo-text small { font-family: 'Inter', sans-serif; font-size: 0.7rem; color: rgba(255,255,255,.45); display: block; font-weight: 400; }

/* ── Doctor section ── */
.doctor-section { background: var(--gray-bg); }
.doctor-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.doctor-img { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.doctor-img img { width: 100%; height: 520px; object-fit: cover; object-position: top; }
.doctor-bio .eyebrow { margin-bottom: 10px; }
.doctor-bio h2 { margin-bottom: 6px; }
.doctor-title { color: var(--orange); font-weight: 600; font-size: 0.95rem; margin-bottom: 20px; }
.doctor-bio p { color: var(--gray-mid); margin-bottom: 14px; line-height: 1.75; }
.title { color: var(--orange); font-weight: 600; font-size: 0.9rem; margin-bottom: 16px; }
.credentials { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.credential-item { display: flex; align-items: flex-start; gap: 10px; }
.credential-item .icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.credential-item p { margin: 0; font-size: 0.875rem; color: var(--gray-mid); }

/* ── Why us ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.why-item { text-align: center; padding: 36px 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); }
.why-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--orange-light); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 18px; }
.why-item h3 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 0.875rem; color: var(--gray-mid); }

/* ── Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.review-stars { color: var(--orange); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { color: var(--gray-mid); font-size: 0.95rem; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange-light); color: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.875rem; }
.review-source { font-size: 0.75rem; color: var(--gray-lt); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.review-source .fab { font-size: 0.85rem; }
.review-source .fa-google { color: #4285F4; }
.review-source .fa-yelp { color: #D32323; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-img { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.gallery-img:hover img { transform: scale(1.05); }

/* ── Info cards ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.info-card { background: var(--orange-xlt); border: 1px solid rgba(247,147,30,.15); border-radius: var(--radius); padding: 22px; display: flex; gap: 14px; }
.info-card .icon { font-size: 1.3rem; flex-shrink: 0; color: var(--orange); }
.info-card h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-mid); margin-bottom: 5px; font-family: 'Inter', sans-serif; font-weight: 700; }
.info-card p { font-size: 0.875rem; color: var(--gray-dark); line-height: 1.6; }
.info-card a { color: var(--orange); font-weight: 700; }

/* ── Contact form ── */
.contact-form-wrap { background: var(--white); border-radius: 14px; padding: 40px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 5px; color: var(--gray-dark); letter-spacing: .2px; }
input, textarea, select {
  width: 100%; padding: 11px 14px; border-radius: 7px;
  border: 1.5px solid var(--border); font-family: inherit; font-size: 0.95rem;
  color: var(--gray-dark); background: var(--white); transition: border-color .15s;
}
input:focus, textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,147,30,.12); }
textarea { resize: vertical; min-height: 96px; }
.form-submit { width: 100%; }
.form-success { display: none; text-align: center; padding: 20px; color: var(--orange-dark); background: var(--orange-light); border-radius: 8px; margin-top: 12px; font-weight: 600; }

/* ── CTA band ── */
.cta-band { background: var(--gray-dark); color: #fff; padding: 72px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 36px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: #1A1A1A; color: rgba(255,255,255,.65); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin: 14px 0 20px; color: rgba(255,255,255,.5); }
.footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); opacity: .85; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; border-radius: 7px; background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; transition: background .15s; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 0.875rem; transition: color .15s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col p { font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--orange); }

/* ── Chip ── */
.chip { display: inline-block; background: var(--orange-light); color: var(--orange); padding: 4px 12px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-q { font-weight: 700; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 0.95rem; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--orange); flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; color: var(--gray-mid); margin-top: 12px; font-size: 0.9rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── Map ── */
.map-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.map-embed { width: 100%; height: 400px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ── Specials cards ── */
.specials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ── Offer hero (landing pages) ── */
.offer-hero { background: var(--gray-dark); padding: 80px 0; position: relative; overflow: hidden; }
.offer-hero::before { content: ''; position: absolute; inset: 0; background-image: url('/images/banner.jpg'); background-size: cover; background-position: center; opacity: .12; }
.offer-hero-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.offer-badge { display: inline-block; background: var(--orange); color: #fff; padding: 5px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.offer-hero h1 { color: #fff; margin-bottom: 14px; }
.offer-hero .price { font-size: 2.4rem; font-weight: 700; color: var(--orange); margin: 8px 0; font-family: 'Playfair Display', serif; }
.offer-hero .price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.6); font-family: 'Inter', sans-serif; }
.offer-hero ul { list-style: none; margin: 18px 0 28px; }
.offer-hero ul li { padding: 6px 0; color: rgba(255,255,255,.85); font-size: 0.95rem; }
.offer-hero ul li::before { content: '✓ '; color: var(--orange); font-weight: 700; }
.offer-form-card { background: #fff; border-radius: 14px; padding: 36px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.offer-form-card h3 { color: var(--gray-dark); margin-bottom: 4px; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.2rem; }
.offer-form-card .subtext { color: var(--gray-mid); font-size: 0.85rem; margin-bottom: 22px; }

/* ── Service detail ── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .doctor-inner, .offer-hero-inner, .map-layout, .service-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .doctor-img img { height: 340px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-hamburger { display: block; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip-inner { flex-wrap: wrap; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); flex: 1 0 50%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .hero-bg { background-position: top center; }
  .hero-stats { gap: 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding-bottom: 48px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
  .contact-form-wrap, .offer-form-card { padding: 24px 18px; }
  .trust-item { flex: 1 0 100%; }
}
