/* ==========================================================================
   Osteopathic Health Line — Premium Nackenstrecker
   Deutsche informative Landingpage
   Farbschema: Schiefer / Teal / klinisch-osteopathisch
   ========================================================================== */

:root {
  --slate:       #1C2A33;   /* tiefstes Schiefer — Überschriften */
  --slate-2:     #26363F;   /* dunkle Sektionen */
  --steel:       #46606B;   /* Sekundärtext / gedämpft */
  --teal:        #2E8B8B;   /* Haupt-Akzent (Teal) */
  --teal-dark:   #226E6E;
  --teal-soft:   #E4F0EF;   /* Teal-Tint für Chips/Karten */
  --sand:        #F4F1EC;   /* Seitenhintergrund */
  --white:       #FFFFFF;   /* Kartenhintergrund */
  --ink:         #23323A;   /* Fließtext */
  --ink-soft:    #52646D;   /* Sekundärtext */
  --line:        #E1DBD1;   /* Ränder */
  --line-cool:   #D3E2E0;   /* kühle Ränder */
  --amber:       #C98A2B;   /* warmer Sekundär-Akzent (Sterne/Zahlen) */
  --shadow:      rgba(28, 42, 51, 0.09);
  --shadow-lg:   rgba(28, 42, 51, 0.17);

  --maxw: 1080px;
  --radius: 16px;
  --radius-sm: 9px;

  --font-display: "Sora", "Segoe UI", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: 18px;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--slate);
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

/* -------------------------------------------------------------------------- */
/* Top disclosure bar (native ad transparency)                                */
/* -------------------------------------------------------------------------- */
.disclosure {
  background: var(--slate);
  color: #C7D6D5;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 7px 16px;
}

/* -------------------------------------------------------------------------- */
/* Header                                                                      */
/* -------------------------------------------------------------------------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.14rem;
  color: var(--slate);
  letter-spacing: -0.01em;
}
.brand .mark {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.brand .mark svg { width: 20px; height: 20px; }
.brand small { display:block; font-family:var(--font-body); font-size:0.62rem; font-weight:600; letter-spacing:0.14em; text-transform:uppercase; color:var(--teal); line-height:1; margin-top:2px;}
.header-cta {
  background: var(--teal);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background .2s ease;
}
.header-cta:hover { background: var(--teal-dark); text-decoration: none; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(1100px 420px at 82% -12%, rgba(46,139,139,0.13), transparent),
    linear-gradient(180deg, var(--white) 0%, var(--sand) 100%);
  padding: 62px 0 56px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.05rem, 4.6vw, 3.35rem);
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--teal); }
.hero-lead {
  font-size: 1.16rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 36ch;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--teal-soft);
  color: var(--slate);
  border: 1px solid var(--line-cool);
  padding: 7px 14px;
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 600;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); }

.hero-image-wrap { position: relative; }
.hero-image-wrap .img-frame {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px var(--shadow-lg);
  padding: 18px;
}
.hero-image-wrap img { border-radius: 10px; width: 100%; }
.hero-tag {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--slate);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 13px 17px;
  box-shadow: 0 12px 30px var(--shadow-lg);
  max-width: 230px;
}
.hero-tag strong { display: block; font-family: var(--font-display); font-size: 1.02rem; color:#fff; }
.hero-tag span { font-size: 0.8rem; color: #B7C9C8; }

/* CTA buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(46,139,139,0.28);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); text-decoration: none; color:#fff; }
.btn-ghost {
  background: transparent;
  color: var(--teal-dark);
  border: 1.5px solid var(--teal-dark);
}
.btn-ghost:hover { background: var(--teal-dark); color: #fff; text-decoration: none; }
.btn-lg { padding: 17px 40px; font-size: 1.06rem; }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap; }

/* -------------------------------------------------------------------------- */
/* Section base                                                               */
/* -------------------------------------------------------------------------- */
.section { padding: 62px 0; }
.section-tint { background: var(--white); border-block: 1px solid var(--line); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.35rem); margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* -------------------------------------------------------------------------- */
/* Trust strip                                                                */
/* -------------------------------------------------------------------------- */
.trust-strip {
  background: var(--slate-2);
  padding: 22px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: #D6E3E2; font-size: 0.92rem; font-weight: 600;
}
.trust-item svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }

/* -------------------------------------------------------------------------- */
/* Ad-block (reiches Inhaltsblock unter jedem Produktfoto)                     */
/* -------------------------------------------------------------------------- */
.adblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px var(--shadow);
}
.adblock:nth-child(even) .adblock-media { order: 2; }
.adblock-media {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.adblock-media img { border-radius: 6px; width: 100%; }
.adblock-body .mini-eyebrow {
  display:inline-block; font-size:0.72rem; font-weight:700; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--teal); margin-bottom:10px;
}
.adblock-body h3 {
  font-size: 1.48rem;
  margin-bottom: 14px;
}
.adblock-body p { color: var(--ink-soft); margin-bottom: 16px; }
.adblock-list { list-style: none; }
.adblock-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  color: var(--ink);
}
.adblock-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/15px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/15px no-repeat;
}
.adblock-list li strong { color: var(--slate); }
.tag-row { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.tag {
  font-size: 0.77rem; font-weight:600;
  background: var(--teal-soft); color: var(--teal-dark);
  padding: 5px 12px; border-radius: 30px; border:1px solid var(--line-cool);
}

/* -------------------------------------------------------------------------- */
/* Video block                                                                */
/* -------------------------------------------------------------------------- */
.video-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 10px 30px var(--shadow);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.video-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 34px var(--shadow-lg);
}
.video-frame video { width: 100%; display: block; border-radius: var(--radius-sm); }
.video-body h3 { font-size: 1.5rem; margin-bottom: 14px; }
.video-body p { color: var(--ink-soft); margin-bottom: 16px; }
.video-body .mini-eyebrow {
  display:inline-block; font-size:0.72rem; font-weight:700; letter-spacing:0.14em;
  text-transform:uppercase; color:var(--teal); margin-bottom:10px;
}

/* -------------------------------------------------------------------------- */
/* Feature grid (3-in-1)                                                       */
/* -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px var(--shadow); }
.feat-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  margin-bottom: 16px;
}
.feat-card h4 { font-size: 1.16rem; margin-bottom: 8px; }
.feat-card p { font-size: 0.95rem; color: var(--ink-soft); }

/* -------------------------------------------------------------------------- */
/* Problem list (two-column check)                                            */
/* -------------------------------------------------------------------------- */
.problem-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--white) 100%);
  border: 1px solid var(--line-cool);
  border-radius: var(--radius);
  padding: 40px;
}
.problem-wrap .img-frame {
  background: var(--white); border:1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px;
}
.problem-wrap img { border-radius: 6px; }
.problem-wrap h3 { font-size: 1.5rem; margin-bottom: 18px; }
.check-list { list-style: none; }
.check-list li {
  position: relative; padding-left: 32px; margin-bottom: 13px;
  color: var(--ink); font-weight: 500;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/15px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/15px no-repeat;
}

/* -------------------------------------------------------------------------- */
/* Steps                                                                      */
/* -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--teal);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }

/* -------------------------------------------------------------------------- */
/* Brand / expert card                                                        */
/* -------------------------------------------------------------------------- */
.expert {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--slate-2);
  border-radius: var(--radius);
  padding: 40px;
}
.expert .img-frame { background:#31434C; border-radius: var(--radius-sm); padding: 14px; }
.expert img { border-radius: 6px; }
.expert .eyebrow { color: var(--teal); }
.expert h3 { font-size: 1.65rem; margin-bottom: 6px; color: #fff; }
.expert .role { color: #9FB6B5; font-weight: 700; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.expert p { color: #C6D4D3; margin-bottom: 12px; }
.expert ul { list-style:none; margin-top: 6px; }
.expert ul li { position:relative; padding-left:28px; margin-bottom:10px; color:#D6E3E2; }
.expert ul li::before {
  content:""; position:absolute; left:0; top:3px; width:18px; height:18px; border-radius:50%;
  background: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/13px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* -------------------------------------------------------------------------- */
/* Testimonials                                                               */
/* -------------------------------------------------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
}
.testi p { color: var(--ink); margin: 4px 0 18px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.testi .who strong { display: block; font-size: 0.95rem; color: var(--slate); }
.testi .who span { font-size: 0.82rem; color: var(--ink-soft); }
.stars { color: var(--amber); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 6px; }
.testi-note {
  text-align: center; margin-top: 22px;
  font-size: 0.82rem; color: var(--ink-soft); font-style: italic;
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--slate);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform .25s ease; color: var(--teal); font-size: 1.3rem; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
  color: var(--ink-soft);
}
.faq-item.open .faq-a { max-height: 420px; padding: 0 24px 22px; }

/* -------------------------------------------------------------------------- */
/* Final CTA                                                                  */
/* -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--slate) 100%);
  color: #E8F1F0;
  text-align: center;
  padding: 66px 0;
}
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.55rem); margin-bottom: 16px; }
.final-cta p { color: #C9DAD9; font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; }
.final-cta .btn-primary { background: var(--white); color: var(--teal-dark); }
.final-cta .btn-primary:hover { background: #EAF3F2; color: var(--teal-dark); }
.final-cta .small { font-size: 0.82rem; color: #A9BEBD; margin-top: 18px; }

/* -------------------------------------------------------------------------- */
/* Disclaimer band                                                            */
/* -------------------------------------------------------------------------- */
.disclaimer-band {
  background: var(--sand);
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.disclaimer-band .container { max-width: 900px; }
.disclaimer-band p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
  text-align: center;
}
.disclaimer-band strong { color: var(--teal-dark); }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: var(--slate);
  color: #A9BBBA;
  padding: 44px 0 30px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-brand { max-width: 340px; }
.footer-brand .brand { color: #EAF1F0; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: #86999A; }
.footer-contact {
  font-style: normal;
  margin-top: 14px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: #9FB0B0;
}
.footer-contact a { color: #C9DAD9; }
.footer-contact a:hover { color: #fff; }
.footer-links h5 { color: #EAF1F0; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links a { display: block; color: #A9BBBA; font-size: 0.92rem; margin-bottom: 9px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.8rem;
  color: #75898A;
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Legal page styles                                                          */
/* -------------------------------------------------------------------------- */
.legal-page { padding: 54px 0 70px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal-meta { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.legal-page h2 { font-size: 1.35rem; margin: 34px 0 12px; }
.legal-page h3 { font-size: 1.1rem; margin: 22px 0 8px; color: var(--teal-dark); }
.legal-page p { margin-bottom: 14px; color: var(--ink); font-size: 1rem; }
.legal-page ul { margin: 0 0 16px 22px; }
.legal-page li { margin-bottom: 8px; }
.legal-page a { color: var(--teal-dark); text-decoration: underline; }
.back-home { display: inline-block; margin-bottom: 24px; color: var(--teal-dark); font-weight: 600; }

/* Contact form */
.field { margin-bottom: 16px; }
.field label { display:block; font-weight:600; margin-bottom:6px; color:var(--slate); }
.field input, .field textarea {
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:8px;
  font-family:inherit; font-size:1rem; background:var(--white); color:var(--ink);
}
.field textarea { resize: vertical; }
.form-msg { margin-top:14px; color:var(--teal-dark); font-weight:600; display:none; }

/* -------------------------------------------------------------------------- */
/* Reveal animation                                                           */
/* -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                 */
/* -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-lead { max-width: none; }
  .adblock { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
  .adblock:nth-child(even) .adblock-media { order: -1; }
  .adblock-media { order: -1; }
  .video-block { grid-template-columns: 1fr; gap: 26px; }
  .problem-wrap { grid-template-columns: 1fr; gap: 26px; }
  .steps { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .expert { grid-template-columns: 1fr; text-align: left; }
  .expert .img-frame { max-width: 300px; }
  .trust-strip .container { gap: 20px 32px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .section { padding: 46px 0; }
  .hero { padding: 42px 0 40px; }
  .header-cta { padding: 8px 14px; font-size: 0.8rem; }
  .brand { font-size: 0.98rem; }
  .hero-tag { position: static; margin-top: 16px; max-width: none; }
  .btn { width: 100%; }
  .hero-btns .btn { width: 100%; }
}

/* Accessibility */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
