/* =================================================================
   Dr. Azizbek — Urology landing page
   Editorial design · Plain HTML/CSS/JS, mobile responsive
   ================================================================= */

:root {
  --ink: #14222b;
  --teal: #1c5d78;
  --teal-dark: #16485d;
  --teal-darkest: #11323f;
  --text-1: #2b3f49;
  --text-2: #44606d;
  --text-3: #4f6873;
  --text-4: #5d7682;
  --text-5: #6a828d;
  --muted: #88a0ad;
  --muted-2: #7c95a2;
  --border: #e2e9ee;
  --border-2: #e8edf0;
  --border-3: #dbe5ea;
  --border-input: #d4dfe5;
  --bg: #f4f7f9;
  --bg-2: #eef3f6;
  --chip: #eaf1f4;
  --gold: #d8a13c;
  --mint: #8fd0c0;
  --input-bg: #fafcfd;

  --serif: 'Spectral', Georgia, 'Times New Roman', serif;
  --sans-a: 'Public Sans', system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

::selection { background: var(--teal); color: #fff; }

img { max-width: 100%; display: block; }

a { color: inherit; }

input, textarea, select, button { font-family: inherit; }

/* Visible keyboard focus (mouse clicks stay clean via :focus-visible) */
:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}

.is-hidden { display: none !important; }

/* ---------- Shared placeholders (image stand-ins) ---------- */
.placeholder {
  background: repeating-linear-gradient(135deg, #e6edf1, #e6edf1 11px, #dde7ec 11px, #dde7ec 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-3);
}
.placeholder__label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  background: rgba(244, 247, 249, 0.85);
  padding: 6px 12px;
  border-radius: 6px;
  text-align: center;
}

/* ---------- Shared dots ---------- */
.dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot--mint { background: var(--mint); }
.dot--teal { width: 6px; height: 6px; background: var(--teal); }

/* ---------- Shared icon ---------- */
.icon { width: 17px; height: 17px; flex: none; }

/* ---------- Shared buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.btn--primary {
  background: var(--teal);
  color: #fff;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 999px;
}
.btn--square { border-radius: 10px; font-weight: 700; padding: 15px 28px; }
.btn--shadow { box-shadow: 0 8px 24px rgba(28, 93, 120, 0.22); }
.btn--white {
  background: #fff;
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 999px;
}
.btn--outline {
  background: #fff;
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 26px;
  border-radius: 10px;
  border: 1.5px solid #cddbe2;
}

.link-underline {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  border-bottom: 1.5px solid #9bb7c4;
  padding-bottom: 3px;
}

/* ---------- Shared eyebrow / headings ---------- */
.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow--rule {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}
.eyebrow__rule { width: 24px; height: 1px; background: #9bb7c4; }

/* ---------- nav toggle (hamburger) — hidden on desktop ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================================================================
   DIRECTION A — EDITORIAL
   ================================================================= */
.site-a { font-family: var(--sans-a); color: var(--ink); background: var(--bg); }

/* Header A */
.header-a {
  position: sticky; top: 0; z-index: 20;
  background: rgba(244, 247, 249, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-a__inner {
  max-width: 1180px; margin: 0 auto;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand-a { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand-a__name {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--teal-dark); letter-spacing: -0.01em;
}
.brand-a__name--light { color: #fff; font-size: 19px; }
.brand-a__tag {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2);
}
.brand-a__tag--light { font-size: 11px; color: #7e9aa6; }
.nav-a { display: flex; align-items: center; gap: 30px; }
.nav-a > a {
  font-size: 14.5px; color: var(--text-2); text-decoration: none;
}
.nav-a__call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: #fff !important;
  font-size: 14.5px; font-weight: 600;
  padding: 10px 18px; border-radius: 999px;
}

/* Hero A */
.hero-a {
  max-width: 1180px; margin: 0 auto;
  padding: 76px 40px 64px;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 64px; align-items: center;
}
.hero-a__title {
  font-family: var(--serif); font-weight: 500;
  font-size: 60px; line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 0 22px; color: var(--ink);
}
.hero-a__lede {
  font-size: 18px; line-height: 1.6; color: var(--text-3);
  max-width: 480px; margin: 0 0 34px;
}
.hero-a__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-a__media { position: relative; }
.placeholder--portrait { aspect-ratio: 4/5; border-radius: 14px; overflow: hidden; }
.hero-a__badge {
  position: absolute; left: -22px; bottom: 28px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px;
  box-shadow: 0 14px 34px rgba(20, 34, 43, 0.10);
}
.hero-a__badge-num { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--teal); line-height: 1; }
.hero-a__badge-sub { font-size: 12.5px; color: var(--text-5); margin-top: 4px; }

/* Trust strip A */
.trust-a { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trust-a__inner {
  max-width: 1180px; margin: 0 auto; padding: 26px 40px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.trust-a__item { display: flex; align-items: center; gap: 12px; }
.trust-a__num { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--teal-dark); }
.trust-a__txt { font-size: 13.5px; color: var(--text-4); line-height: 1.3; }
.trust-a__div { width: 1px; background: var(--border-3); }

/* Section A scaffold */
.section-a { max-width: 1180px; margin: 0 auto; padding: 80px 40px; }
.heading-a {
  font-family: var(--serif); font-weight: 500;
  font-size: 40px; line-height: 1.1; letter-spacing: -0.015em; margin: 0;
}
.heading-a--md { font-size: 34px; line-height: 1.12; }

/* Conditions A */
.conditions-a { padding-bottom: 30px; }
.conditions-a__head { max-width: 560px; margin-bottom: 44px; }
.conditions-a__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cond-a {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 26px 26px 24px; display: flex; gap: 18px; align-items: flex-start;
}
.cond-a__num {
  flex: none; width: 38px; height: 38px; border-radius: 9px; background: var(--chip);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-family: var(--serif); font-size: 17px; font-weight: 600;
}
.cond-a__title { font-size: 17px; font-weight: 700; margin: 4px 0 7px; color: var(--ink); }
.cond-a__desc { font-size: 14.5px; line-height: 1.5; color: var(--text-4); margin: 0; }

/* About A */
.about-a__card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; display: grid; grid-template-columns: 0.8fr 1.2fr;
}
.about-a__media { min-height: 420px; }
.about-a__body { padding: 52px 52px 48px; }
.prose-a { font-size: 16px; line-height: 1.65; color: var(--text-3); margin: 0 0 16px; }
.prose-a + .prose-a { margin-bottom: 28px; }
.about-a__facts { display: flex; gap: 40px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.about-a__fact-t { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--teal-dark); }
.about-a__fact-s { font-size: 13px; color: var(--text-5); margin-top: 3px; }

/* Reviews A */
.reviews-a { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-a__inner { max-width: 1180px; margin: 0 auto; padding: 76px 40px; }
.reviews-a__head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.reviews-a__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-a { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 30px 28px; }
.stars { color: var(--gold); letter-spacing: 2px; }
.review-a .stars { font-size: 15px; margin-bottom: 16px; }
.review-a__quote { font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--text-1); margin: 0 0 22px; }
.review-a__name { font-size: 14px; font-weight: 600; color: var(--teal-dark); }
.review-a__meta { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* Visit A */
.visit-a__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: stretch; }
.visit-a__title { margin-bottom: 30px; }
.visit-a__block { margin-bottom: 26px; }
.visit-a__label { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.visit-a__addr { font-size: 16.5px; line-height: 1.5; color: var(--text-1); }
.visit-a__phone { font-size: 16.5px; color: var(--teal); font-weight: 600; text-decoration: none; }
.visit-a__media { border-radius: 16px; overflow: hidden; min-height: 380px; }
.hours-row {
  display: flex; justify-content: space-between; padding: 9px 0;
  border-bottom: 1px solid var(--border); max-width: 320px;
}
.hours-row__day { font-size: 15px; color: var(--text-2); }
.hours-row__time { font-size: 15px; color: var(--ink); font-weight: 500; }

/* Book A */
.book-a { background: var(--teal-dark); }
.book-a__inner {
  max-width: 1180px; margin: 0 auto; padding: 76px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.book-a__title { font-family: var(--serif); font-weight: 500; font-size: 40px; line-height: 1.08; letter-spacing: -0.015em; margin: 0 0 18px; color: #fff; }
.book-a__lede { font-size: 17px; line-height: 1.6; color: #bcd3dd; margin: 0 0 30px; max-width: 380px; }
.book-a__panel { background: #fff; border-radius: 16px; padding: 32px; }

/* Footer A */
.footer-a { background: var(--teal-darkest); }
.footer-a__inner {
  max-width: 1180px; margin: 0 auto; padding: 40px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-a__meta { font-size: 13.5px; color: #8fa9b4; }
.footer-a__ig {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: #cfe0e8; text-decoration: none;
}
.footer-a__ig:hover { color: #fff; }

/* ---------- Nav Instagram icon ---------- */
.nav-a__ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 999px;
  color: var(--teal-dark); background: #fff; border: 1px solid var(--border);
}
.nav-a__ig:hover { color: var(--teal); border-color: var(--teal); }

/* ---------- Hero portrait (real photo) ---------- */
.hero-a__portrait {
  aspect-ratio: 4/5; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border-3);
  box-shadow: 0 26px 60px rgba(20, 34, 43, 0.18);
}
.hero-a__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* ---------- Credentials card (About) ---------- */
.cred-card {
  background: linear-gradient(160deg, var(--teal-dark), var(--teal-darkest));
  color: #fff;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
  padding: 40px 34px;
}
.cred-card__label {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #8fd0c0;
}
.cred-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.cred-row { display: flex; align-items: flex-start; gap: 15px; }
.cred-row__ic {
  flex: none; width: 42px; height: 42px; border-radius: 11px;
  background: rgba(143, 208, 192, 0.14); color: #a9ddd0;
  display: flex; align-items: center; justify-content: center;
}
.cred-row__ic svg { width: 21px; height: 21px; }
.cred-row b { display: block; font-size: 15.5px; font-weight: 700; color: #fff; line-height: 1.3; }
.cred-row i { display: block; font-style: normal; font-size: 13px; color: #b6cdd6; margin-top: 4px; line-height: 1.4; }
.cred-card__flags {
  display: flex; gap: 10px; font-size: 23px; line-height: 1;
  padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---------- Reels (Instagram videos) ---------- */
.reels-vid { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reels-vid__inner { max-width: 1180px; margin: 0 auto; padding: 76px 40px; }
.reels-vid__head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  margin-bottom: 38px; flex-wrap: wrap;
}
.reels-vid__lede { font-size: 16px; line-height: 1.55; color: var(--text-3); margin: 14px 0 0; max-width: 460px; }
.reels-vid__cta {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-size: 14.5px; font-weight: 700; color: var(--teal-dark); text-decoration: none;
  background: #fff; border: 1.5px solid #cddbe2; padding: 12px 20px; border-radius: 999px;
}
.reels-vid__cta:hover { border-color: var(--teal); color: var(--teal); }
.reels-vid__track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }

.reel { position: relative; margin: 0; }
.reel__video {
  display: block; width: 100%; aspect-ratio: 9/16; object-fit: cover;
  background: #0c1419; border-radius: 14px; border: 1px solid var(--border-3); cursor: pointer;
}
.reel__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255, 255, 255, 0.94); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(8, 18, 24, 0.3); transition: opacity 0.2s, transform 0.2s;
}
.reel__play svg { width: 22px; height: 22px; margin-left: 2px; }
.reel__play:hover { transform: translate(-50%, -50%) scale(1.06); }
.reel.is-playing .reel__play { opacity: 0; pointer-events: none; }

/* ---------- Visit map ---------- */
.visit-a__media { border: 1px solid var(--border-3); background: var(--bg-2); }
.visit-a__media iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }
.visit-a__maplink {
  display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600;
  color: var(--teal); text-decoration: none;
}
.visit-a__maplink:hover { text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq-a { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-a__inner { max-width: 880px; margin: 0 auto; padding: 80px 40px; }
.faq-a__head { text-align: center; margin-bottom: 40px; }
.faq-a__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 0 24px; }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-size: 16.5px; font-weight: 600; color: var(--ink);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__ic { position: relative; flex: none; width: 20px; height: 20px; }
.faq-item__ic::before,
.faq-item__ic::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--teal);
  transform: translate(-50%, -50%);
}
.faq-item__ic::before { width: 13px; height: 2px; border-radius: 2px; }
.faq-item__ic::after { width: 2px; height: 13px; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.faq-item[open] .faq-item__ic::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item__a { padding: 0 0 22px; }
.faq-item__a p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text-3); max-width: 64ch; }
.faq-item[open] .faq-item__a { animation: faqReveal 0.26s ease; }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }

/* ---------- Contact panel (replaces booking form) ---------- */
.book-a__hours {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 24px; font-size: 14px; line-height: 1.5; color: #bcd3dd;
}
.contact-panel { display: flex; flex-direction: column; gap: 12px; padding: 22px; }
.contact-btn {
  display: flex; align-items: center; gap: 15px;
  padding: 15px 16px; border-radius: 12px; text-decoration: none;
  border: 1px solid var(--border); background: #fff;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover { border-color: var(--teal); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(20, 34, 43, 0.08); }
.contact-btn__ic {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-btn__ic svg { width: 22px; height: 22px; }
.contact-btn--call .contact-btn__ic,
.contact-btn--map .contact-btn__ic { background: var(--chip); color: var(--teal); }
.contact-btn--ig .contact-btn__ic { background: linear-gradient(135deg, #f09433, #dc2743 55%, #bc1888); color: #fff; }
.contact-btn__txt b { display: block; font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.25; word-break: break-word; }
.contact-btn__txt i { display: block; font-style: normal; font-size: 12.5px; color: var(--text-5); margin-top: 3px; }

/* =================================================================
   RESPONSIVE
   ================================================================= */

/* Tablet / small desktop */
@media (max-width: 980px) {
  .hero-a { grid-template-columns: 1fr; gap: 40px; padding: 56px 32px 48px; }
  .hero-a__title { font-size: 46px; }
  .hero-a__media { max-width: 460px; }
  .about-a__card { grid-template-columns: 1fr; }
  .about-a__media { min-height: 280px; }
  .about-a__body { padding: 36px 32px 36px; }
  .visit-a__grid { grid-template-columns: 1fr; gap: 32px; }
  .visit-a__media { min-height: 300px; }
  .book-a__inner { grid-template-columns: 1fr; gap: 40px; }
  .reviews-a__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }

  /* Reels → horizontal scroll carousel */
  .reels-vid__track {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 12px; -webkit-overflow-scrolling: touch;
    scroll-padding-left: 32px;
  }
  .reel { flex: 0 0 auto; width: 240px; scroll-snap-align: start; }
}

/* Mobile */
@media (max-width: 720px) {
  /* Collapsible nav */
  .nav-toggle { display: flex; }

  .nav-a {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 8px 24px 18px;
    box-shadow: 0 16px 30px rgba(20, 34, 43, 0.10);
    display: none;
  }
  .nav-a.is-open { display: flex; }
  .nav-a > a { padding: 13px 0; border-bottom: 1px solid var(--border-2); font-size: 16px; }
  .nav-a__ig {
    width: auto; height: auto; border: none !important; border-radius: 0;
    justify-content: flex-start; gap: 10px;
    padding: 13px 0 !important; border-bottom: 1px solid var(--border-2) !important;
    color: var(--text-2);
  }
  .nav-a__ig::after { content: "Instagram"; font-size: 16px; }
  .nav-a__call {
    justify-content: center; margin-top: 14px; padding: 13px 18px !important;
    border-bottom: none !important;
  }
  .header-a__inner { padding: 14px 22px; }

  /* Section padding */
  .section-a { padding: 56px 22px; }
  .hero-a { padding: 40px 22px; }
  .trust-a__inner { padding: 22px 22px; }
  .reviews-a__inner { padding: 56px 22px; }
  .reels-vid__inner { padding: 56px 22px; }
  .faq-a__inner { padding: 56px 22px; }
  .book-a__inner { padding: 56px 22px; }
  .footer-a__inner { padding: 32px 22px; }

  /* Reels carousel: bleed to screen edge, smaller tiles */
  .reels-vid__head { margin-bottom: 28px; }
  .reels-vid__track { scroll-padding-left: 22px; margin: 0 -22px; padding: 0 22px 12px; }
  .reel { width: 60vw; max-width: 230px; }
  .footer-a__inner { justify-content: flex-start; }

  /* Type scale down */
  .hero-a__title { font-size: 36px; }
  .hero-a__lede { font-size: 16.5px; }
  .heading-a { font-size: 30px; }
  .heading-a--md { font-size: 27px; }
  .book-a__title { font-size: 31px; }

  /* Grids → single column */
  .conditions-a__grid { grid-template-columns: 1fr; }

  /* Hero A: hide offset badge overlap issues, keep flow */
  .hero-a__badge { left: auto; right: 16px; bottom: 16px; padding: 13px 16px; }
  .hero-a__media { max-width: 100%; }

  /* About A facts stack */
  .about-a__facts { gap: 22px; }

  /* Trust strip dividers hidden, wrap nicely */
  .trust-a__div { display: none; }
  .trust-a__inner { gap: 18px 32px; }
}

@media (max-width: 380px) {
  .hero-a__title { font-size: 31px; }
  .hero-a__actions { gap: 14px; }
  .btn--primary, .btn--white, .btn--outline { width: 100%; justify-content: center; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
