/*
Theme Name:  vettech
Theme URI:   https://www.vettech.eu
Author:      Vettech GmbH
Author URI:  https://www.vettech.eu
Description: Schlankes Custom-Theme für die vetPACS Marketing-Website. Kein Page Builder, kein Overhead.
Version:     1.0.0
License:     Proprietary
Text Domain: vettech
*/


/* ═══════════════════════════════════════════════════════════════
   vettech.css — Haupt-Stylesheet
   Kein Framework, kein Reset-Overhead. Nur was gebraucht wird.
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS-Variablen ──────────────────────────────────────────────── */
:root {
  --teal:        #208090;
  --teal-dark:   #165f6e;
  --teal-light:  #eaf4f6;
  --green:       #68B098;
  --green-light: #C0D888;
  --orange:      #F8A048;
  --redpink:     #F07058;
  --text:        #233040;
  --text-muted:  #6b7c8d;
  --border:      #dceaec;
  --white:       #ffffff;
}

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

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

/* ── Navigation ─────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: white;
  border-bottom: 3px solid var(--teal);
  padding: .9rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 12px rgba(32,128,144,.1);
}
.logo {
  font-size: 1.6rem; color: var(--teal);
  text-decoration: none; letter-spacing: -.5px;
}
.logo strong { font-weight: 900; }
.logo span   { font-weight: 300; }

/* Startseite-Nav */
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .875rem; color: var(--text-muted);
  text-decoration: none; font-weight: 400;
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--orange) !important; color: white !important;
  font-weight: 700 !important; padding: .45rem 1.2rem;
  border-radius: 6px; font-size: .85rem !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: #e89038 !important; }

/* Preisseite-Nav */
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-back  { font-size: .875rem; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.nav-back:hover { color: var(--teal); }
.nav-contact { font-size: .875rem; color: var(--text-muted); }
.nav-contact a { color: var(--teal); font-weight: 700; text-decoration: none; }
.nav-contact a:hover { text-decoration: underline; }

/* ── Hero (gemeinsame Basis) ────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 55%, var(--green) 100%);
  color: white;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 90% at 75% 35%, rgba(255,255,255,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 72px; background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Hero Startseite */
.page-template-page-startseite .hero { padding: 4rem 2rem 5.5rem; }
.hero-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; animation: fadeUp .75s ease both; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: 30px; padding: .3rem 1.2rem;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero h1 { font-size: 2.9rem; font-weight: 900; letter-spacing: -.5px; line-height: 1.12; margin-bottom: 1.2rem; }
.hero p  { font-size: 1.08rem; font-weight: 300; opacity: .9; max-width: 560px; margin: 0 auto .5rem; }
.hero-btns { margin-top: 2.2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-hero-primary {
  padding: 1rem 2.5rem; background: var(--orange); color: white;
  border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all .2s; box-shadow: 0 4px 16px rgba(248,160,72,.4);
}
.btn-hero-primary:hover { background: #e89038; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(248,160,72,.5); }
.btn-hero-secondary {
  padding: 1rem 2rem;
  border: 2px solid rgba(255,255,255,.4); color: white;
  border-radius: 8px; font-weight: 400; font-size: .9rem; text-decoration: none;
  transition: all .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* Hero Preisseite */
.page-template-page-preisseite .hero { padding: 3.5rem 2rem 5rem; text-align: center; }
.pill {
  display: inline-block; margin-top: 1.75rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: 30px; padding: .35rem 1.2rem; font-size: .82rem; letter-spacing: .03em;
  position: relative;
}

/* ── Gemeinsame Abschnitte ──────────────────────────────────────── */
.section-label {
  text-align: center; font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--green); margin-bottom: .4rem;
}
.section-title {
  text-align: center; font-size: 1.75rem; font-weight: 700;
  color: var(--teal); margin-bottom: .5rem;
}
.section-sub {
  text-align: center; color: var(--text-muted); font-size: .95rem;
  margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto;
}
.inner { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(140deg, var(--teal-dark), var(--teal));
  color: white; text-align: center; padding: 3.5rem 2rem;
}
.cta-section h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: .8rem; }
.cta-section p  { font-weight: 300; opacity: .9; max-width: 500px; margin: 0 auto 2rem; }
.btn-white {
  display: inline-block; padding: .95rem 2.8rem;
  background: white; color: var(--teal);
  border-radius: 8px; font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: all .2s;
}
.btn-white:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.15); }
.cta-sub { margin-top: 1.4rem; font-size: .82rem; opacity: .7; }
.cta-sub a { color: var(--green-light); text-decoration: none; font-weight: 700; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer { background: var(--teal-dark); }
.footer-content { padding: .25rem 2rem 1.6rem; text-align: center; }
.footer-logo { font-size: 1.15rem; color: rgba(255,255,255,.75); margin-bottom: .4rem; }
.footer-logo strong { font-weight: 900; }
.footer-addr { font-size: .78rem; color: rgba(255,255,255,.45); font-weight: 300; }
.footer-addr a { color: var(--green-light); text-decoration: none; }
.footer-addr a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════════════
   STARTSEITE
   ══════════════════════════════════════════════════════════════════ */

/* ── Pain Points ────────────────────────────────────────────────── */
.pain-section { padding: 3.5rem 2rem; background: #f7fbfc; }
.pain-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  max-width: 1120px; margin: 0 auto;
}
.pain-card {
  background: white; border-radius: 12px; padding: 1.6rem;
  border: 1px solid var(--border); border-top: 4px solid var(--redpink);
  transition: box-shadow .2s, transform .2s;
}
.pain-card:hover { box-shadow: 0 8px 24px rgba(240,112,88,.12); transform: translateY(-2px); }
.pain-icon  { font-size: 2rem; margin-bottom: .8rem; }
.pain-title { font-weight: 700; font-size: .95rem; color: var(--text); margin-bottom: .4rem; }
.pain-text  { font-size: .84rem; color: var(--text-muted); line-height: 1.55; }

/* ── Benefits ───────────────────────────────────────────────────── */
.benefits-section { padding: 3.5rem 2rem; background: white; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 3rem;
  max-width: 1000px; margin: 0 auto;
}
.benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--teal-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.benefit-item:hover .benefit-icon { background: var(--teal); }
.benefit-icon svg { transition: stroke .25s; }
.benefit-item:hover .benefit-icon svg { stroke: white; }
.benefit-body h3 { font-size: .98rem; font-weight: 700; color: var(--text); margin-bottom: .3rem; }
.benefit-body p  { font-size: .855rem; color: var(--text-muted); line-height: 1.55; }

/* ── How it works ───────────────────────────────────────────────── */
.how-section { padding: 3.5rem 2rem; background: var(--teal-light); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 900px; margin: 0 auto; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 2.1rem;
  left: calc(16.66% + 1rem); right: calc(16.66% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--green));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; background: var(--teal); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 900; margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(32,128,144,.25);
  transition: transform .2s, box-shadow .2s;
}
.step:hover .step-num { transform: scale(1.08); box-shadow: 0 6px 22px rgba(32,128,144,.35); }
.step h3 { font-weight: 700; font-size: 1rem; color: var(--teal); margin-bottom: .5rem; }
.step p  { font-size: .875rem; color: var(--text-muted); line-height: 1.55; }

/* ── Why Vettech ────────────────────────────────────────────────── */
.why-section { padding: 3.5rem 2rem; background: white; }
.objections {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 920px; margin: 0 auto;
}
.objection {
  border: 1px solid var(--border); border-radius: 12px; padding: 1.6rem;
  border-left: 4px solid var(--orange); transition: box-shadow .2s;
}
.objection:hover { box-shadow: 0 6px 20px rgba(248,160,72,.12); }
.objection-q {
  font-size: .9rem; font-weight: 700; color: var(--text);
  margin-bottom: .7rem; padding-bottom: .7rem;
  border-bottom: 1px solid var(--border);
  display: flex; gap: .5rem; align-items: flex-start;
}
.obj-mark { color: var(--orange); font-size: 1.15rem; flex-shrink: 0; }
.objection-a { font-size: .855rem; color: var(--text-muted); line-height: 1.6; }
.objection-a strong { color: var(--teal); font-weight: 700; }

/* ══════════════════════════════════════════════════════════════════
   PREISSEITE
   ══════════════════════════════════════════════════════════════════ */

/* ── Perks Strip ────────────────────────────────────────────────── */
.perks {
  display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap;
  background: var(--teal-light); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.1rem 2rem; margin-bottom: 2.5rem;
}
.perk { display: flex; align-items: center; gap: .6rem; font-size: .875rem; font-weight: 700; color: var(--teal); }
.perk-icon { font-size: 1.15rem; }

/* ── Plan Cards ─────────────────────────────────────────────────── */
.plans-section { padding: 2.5rem 2rem; max-width: 1120px; margin: 0 auto; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.plan {
  border: 2px solid var(--border); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column;
  background: white; transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(32,128,144,.13); }
.plan.recommended { border-color: var(--teal); box-shadow: 0 6px 24px rgba(32,128,144,.18); }

.plan-header { padding: 1.6rem 1.6rem 1.2rem; background: var(--teal-light); position: relative; }
.plan.recommended .plan-header { background: var(--teal); color: white; }

.badge {
  position: absolute; top: 0; right: 1.4rem;
  background: var(--orange); color: white;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  padding: .28rem .9rem; border-radius: 0 0 8px 8px;
}
.plan-tier { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: .3rem; }
.plan.recommended .plan-tier { color: rgba(255,255,255,.75); }
.plan-name { font-size: 1.4rem; font-weight: 700; margin-bottom: .5rem; }
.plan.recommended .plan-name { color: white; }
.plan-desc { font-size: .84rem; line-height: 1.45; color: var(--text-muted); }
.plan.recommended .plan-desc { color: rgba(255,255,255,.78); }

.plan-pricing { padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--border); }
.setup { font-size: .78rem; color: var(--text-muted); margin-bottom: .6rem; }
.setup strong { color: var(--text); font-weight: 700; }
.monthly { display: flex; align-items: baseline; gap: .25rem; }
.cur { font-size: 1rem; font-weight: 700; color: var(--teal); }
.amt { font-size: 2.4rem; font-weight: 900; color: var(--teal); line-height: 1; }
.amt.custom { font-size: 1.25rem; font-weight: 700; }
.per { font-size: .85rem; color: var(--text-muted); }
.plan-note { font-size: .73rem; color: var(--text-muted); margin-top: .3rem; }

.plan-features { padding: 1.4rem 1.6rem; flex: 1; }
.plan-features ul { list-style: none; }
.plan-features li {
  font-size: .875rem; padding: .4rem 0;
  display: flex; align-items: flex-start; gap: .6rem;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.plan-cta { padding: 0 1.6rem 1.6rem; }
.btn {
  display: block; width: 100%; padding: .85rem; text-align: center;
  border-radius: 8px; font-family: 'Lato', sans-serif; font-weight: 700;
  font-size: .9rem; cursor: pointer; text-decoration: none; transition: all .2s; border: none;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: #e89038; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(248,160,72,.35); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal-light); }

/* ── Vergleichstabelle ──────────────────────────────────────────── */
.comparison-section { max-width: 1120px; margin: 0 auto; padding: 1rem 2rem 3rem; }
table { width: 100%; border-collapse: collapse; font-size: .875rem; }
thead th {
  padding: 1rem 1.4rem; text-align: left; font-weight: 700;
  color: var(--teal); background: var(--teal-light); border-bottom: 2px solid var(--teal);
}
thead th.hl { background: var(--teal); color: white; }
thead th:first-child { border-radius: 8px 0 0 0; }
thead th:last-child  { border-radius: 0 8px 0 0; }
tbody tr:nth-child(even) { background: #f5fafb; }
tbody td { padding: .85rem 1.4rem; border-bottom: 1px solid var(--border); color: var(--text); }
tbody td.hl { background: rgba(32,128,144,.06); }
.y { color: var(--green); font-weight: 700; }
.n { color: #ccc; }
.c { color: var(--orange); font-weight: 700; font-size: .82rem; }
.table-note { margin-top: .9rem; font-size: .77rem; color: var(--text-muted); }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-section { background: var(--teal-light); padding: 3rem 2rem; }
.faq-inner { max-width: 740px; margin: 0 auto; }
.faq-item { background: white; border-radius: 10px; margin-bottom: .75rem; overflow: hidden; box-shadow: 0 2px 6px rgba(32,128,144,.06); }
.faq-q {
  padding: 1.1rem 1.5rem; font-weight: 700; font-size: .9rem; color: var(--teal);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; user-select: none;
}
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--green); flex-shrink: 0; transition: transform .25s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; font-size: .88rem; color: var(--text); line-height: 1.6; transition: max-height .3s ease, padding .25s; }
.faq-a.open { max-height: 250px; padding: 0 1.5rem 1.2rem; }

/* ══════════════════════════════════════════════════════════════════
   ANIMATIONEN
   ══════════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll-Reveal — Klassen werden via JS (IntersectionObserver) gesetzt.
   WordPress-Äquivalent: Elementor Motion Effects → Fade Up */
/* Reveal — Progressive Enhancement */
.reveal { transition: opacity .6s ease, transform .6s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(28px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── Action Banner ──────────────────────────────────────────────── */
.action-banner { background: var(--orange); color: white; text-align: center; padding: .7rem 2rem; font-size: .88rem; }
.action-banner strong { font-weight: 900; }
.action-banner .was { text-decoration: line-through; opacity: .65; margin-left: .3rem; font-weight: 300; }

/* ── Mini Section ───────────────────────────────────────────────── */
.mini-section { padding: 3rem 2rem; background: var(--teal-light); border-bottom: 2px solid var(--border); }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 680px; margin: 0 auto 1.25rem; }
.mini-card { background: white; border: 2px solid var(--green); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.mini-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(104,176,152,.2); }
.mini-card.recommended-mini { border-color: var(--teal); box-shadow: 0 4px 16px rgba(32,128,144,.15); }
.mini-card-header { padding: 1.1rem 1.4rem; background: var(--green); position: relative; }
.mini-card.recommended-mini .mini-card-header { background: var(--teal); }
.mini-badge { position: absolute; top: 0; right: 1.2rem; background: var(--orange); color: white; font-size: .65rem; font-weight: 700; padding: .2rem .75rem; border-radius: 0 0 6px 6px; }
.mini-tier { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: .2rem; }
.mini-name { font-size: 1.1rem; font-weight: 700; color: white; }
.mini-pricing { padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--border); }
.mini-setup { font-size: .75rem; color: var(--text-muted); margin-bottom: .35rem; }
.mini-normal { text-decoration: line-through; color: var(--redpink); }
.mini-action { color: var(--orange); font-weight: 700; }
.mini-monthly { display: flex; align-items: baseline; gap: .2rem; }
.mini-cur { font-size: .9rem; font-weight: 700; color: var(--teal); }
.mini-amt { font-size: 2rem; font-weight: 900; color: var(--teal); line-height: 1; }
.mini-per { font-size: .8rem; color: var(--text-muted); }
.mini-features { padding: 1.1rem 1.4rem; flex: 1; }
.mini-features ul { list-style: none; }
.mini-features li { font-size: .84rem; padding: .3rem 0; display: flex; align-items: flex-start; gap: .5rem; border-bottom: 1px solid var(--border); }
.mini-features li:last-child { border-bottom: none; }
.mini-no { color: #ccc; flex-shrink: 0; }
.mini-cta { padding: 0 1.4rem 1.4rem; }
.mini-note { text-align: center; font-size: .82rem; color: var(--text-muted); max-width: 680px; margin: .5rem auto 0; background: white; border-radius: 8px; padding: .7rem 1.2rem; border: 1px solid var(--border); }
.mini-note a { color: var(--teal); font-weight: 700; text-decoration: none; }

/* ── Viewer Mockup (Stone Web Viewer) ───────────────────────────── */
.viewer-section { padding: 3.5rem 2rem; background: #0f1520; }
.viewer-section .section-label { color: #C0D888; }
.viewer-section .section-title { color: white; }
.viewer-section .section-sub { color: rgba(255,255,255,.65); }
.viewer-wrap { max-width: 920px; margin: 0 auto; }
.viewer-ui { background: #141b2d; border-radius: 12px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.6); border: 1px solid #1e2d45; }
.viewer-bar { background: #0d1117; padding: .55rem 1rem; display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid #1e2d45; }
.viewer-brand { font-size: .85rem; font-weight: 700; color: #5dade2; letter-spacing: -.3px; }
.viewer-brand span { color: #68B098; }
.viewer-tag { font-size: .68rem; background: #1a2d44; color: #7090b8; padding: .2rem .7rem; border-radius: 20px; border: 1px solid #2a3d58; }
.viewer-toolbar { background: #111827; padding: .45rem 1rem; display: flex; align-items: center; gap: .4rem; border-bottom: 1px solid #1e2d45; flex-wrap: wrap; }
.v-tool { padding: .28rem .65rem; border-radius: 4px; background: #1a2438; color: #7090b0; font-size: .7rem; border: 1px solid #2a3850; white-space: nowrap; }
.v-tool.on { background: #1a4a5a; color: #5dc8e0; border-color: #2a6070; }
.v-sep { flex: 1; }
.v-tool.send { background: #1a3a20; color: #68B098; border-color: #2a5030; }
.viewer-body { display: grid; grid-template-columns: 200px 1fr; min-height: 360px; }
.viewer-panel { background: #0d1420; border-right: 1px solid #1e2d45; padding: .8rem; }
.vp-title { font-size: .67rem; color: #405870; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.vp-study { border-radius: 6px; padding: .55rem .65rem; margin-bottom: .5rem; border-left: 3px solid; }
.vp-study.on { background: #162030; }
.vp-study-name { font-size: .76rem; font-weight: 700; color: #c8d8e8; }
.vp-study-info { font-size: .65rem; color: #506070; margin-top: .15rem; }
.vp-thumbs { display: flex; gap: .35rem; margin-top: .45rem; }
.vp-thumb { width: 34px; height: 34px; border-radius: 3px; background: #0a0f18; border: 2px solid #1e2d45; display: flex; align-items: center; justify-content: center; font-size: .55rem; color: #304050; }
.vp-thumb.on { border-color: #208090; }
.viewer-vp { background: #080c15; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.vp-ovl { position: absolute; font-size: .62rem; color: rgba(255,255,255,.38); font-family: monospace; line-height: 1.7; pointer-events: none; }
.vp-ovl.tl { top: .8rem; left: .8rem; }
.vp-ovl.tr { top: .8rem; right: .8rem; text-align: right; }
.vp-ovl.bl { bottom: .8rem; left: .8rem; }
.vp-ovl.br { bottom: .8rem; right: .8rem; text-align: right; }
.viewer-xray { width: 100%; max-width: 460px; display: block; }
.viewer-caption { text-align: center; margin-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.5); }
.viewer-caption strong { color: #C0D888; }
.viewer-caption a { color: #208090; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .pain-grid     { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1       { font-size: 2.2rem; }
}

@media (max-width: 820px) {
  .plans { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  nav    { padding: .75rem 1.25rem; }
}

@media (max-width: 640px) {
  .pain-grid    { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps        { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .steps::before { display: none; }
  .objections   { grid-template-columns: 1fr; }
  .hero h1      { font-size: 1.8rem; }
  .btn-hero-secondary { display: none; }
  .comparison-section { overflow-x: auto; }
  table { min-width: 520px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .mini-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 1.25rem; }
  .viewer-body { grid-template-columns: 1fr; }
  .viewer-panel { border-right: none; border-bottom: 1px solid #1e2d45; max-height: 120px; overflow: hidden; }
}
