/* ============================================================
   Reparatur-Express Bremen — Demo Stylesheet
   Dark technical / industrial palette
   Self-contained — no inheritance from main studio-chop.de CSS
   ============================================================ */

/* ---- Variables -------------------------------------------------- */
:root {
  --bg-darkest:   #080c14;
  --bg-dark:      #0d1322;
  --bg-card:      #141b2d;
  --bg-card-hover:#1a2340;
  --bg-soft:      #1c2a40;

  --cyan:         #00d4aa;
  --cyan-dim:     #009f80;
  --cyan-dark:    #006b56;
  --orange:       #ff6d00;
  --orange-dim:   #cc5700;
  --orange-dark:  #994100;

  --text:         #c8d6e5;
  --text-light:   #8899aa;
  --text-on-dark: #e2e8f0;
  --text-muted:   #5a6a7a;
  --text-bright:  #ffffff;

  --border:       #1e2d44;
  --border-light: #2a3d58;

  --shadow:       0 2px 16px rgba(0,0,0,.4);
  --shadow-lg:    0 8px 40px rgba(0,0,0,.5);
  --shadow-cyan:  0 0 20px rgba(0,212,170,.15);

  --font:         system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Consolas', monospace;
  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    16px;
  --max-width:    1200px;
  --nav-height:   64px;
}

/* ---- Reset ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-darkest);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--cyan); text-decoration: none; transition: color .15s; }
a:hover { color: var(--cyan-dim); }
ul { list-style: none; }

/* ---- Utility --------------------------------------------------- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.accent-text { color: var(--cyan); }

/* ---- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  cursor: pointer; transition: all .2s; border: 2px solid transparent;
  text-align: center; line-height: 1.2; white-space: nowrap;
}
.btn--accent {
  background: var(--cyan); color: var(--bg-darkest); border-color: var(--cyan);
}
.btn--accent:hover { background: var(--cyan-dim); border-color: var(--cyan-dim); color: var(--bg-darkest); }
.btn--ghost {
  background: transparent; color: var(--cyan); border-color: var(--border-light);
}
.btn--ghost:hover { background: var(--bg-card); border-color: var(--cyan); color: var(--cyan); }
.btn--sm { padding: .5rem 1.25rem; font-size: .85rem; }
.btn--lg { padding: .9rem 2.5rem; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Demo-Notice Banner ---------------------------------------- */
.demo-notice {
  background: var(--orange); color: var(--bg-darkest); text-align: center;
  padding: .5rem 1.25rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .05em; position: relative; z-index: 2000; line-height: 1.4;
}
.demo-notice a { color: var(--bg-darkest); text-decoration: underline; }
.demo-notice a:hover { color: var(--text); }

/* ---- Navigation ------------------------------------------------- */
.site-nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--bg-dark); height: var(--nav-height);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  color: var(--text-bright) !important; letter-spacing: -.02em;
}
.nav__logo-icon { color: var(--cyan); font-size: 1.2rem; }
.nav__logo:hover { color: var(--cyan) !important; }
.nav__links { display: flex; align-items: center; gap: .25rem; }
.nav__links a {
  color: var(--text); font-family: var(--font-heading); font-size: .9rem; font-weight: 500;
  padding: .4rem .8rem; border-radius: 4px; transition: all .15s;
}
.nav__links a:hover { background: var(--bg-card); color: var(--cyan); }
.nav__links a.active { color: var(--cyan); background: var(--bg-card); }

/* Burger toggle — hidden on desktop */
.nav-burger { display: none; }

/* ---- Hero (full) ----------------------------------------------- */
.hero {
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,212,170,.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255,109,0,.03) 0%, transparent 50%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .15em; color: var(--cyan); margin-bottom: .75rem;
}
.hero__title {
  font-size: 2.8rem; font-weight: 700; line-height: 1.1;
  max-width: 700px; margin-bottom: 1rem; color: var(--text-bright);
}
.hero__text { font-size: 1.05rem; color: var(--text-light); max-width: 520px; margin-bottom: 1.5rem; line-height: 1.7; }
.hero__trust-strip {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero__trust-item {
  display: flex; align-items: center; gap: .35rem;
  font-size: .85rem; color: var(--text-light);
}
.hero__trust-icon { color: var(--cyan); font-weight: 700; }
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Hero code block visual */
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__code-block {
  width: 100%; max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.code-header {
  display: flex; align-items: center; gap: 6px;
  padding: .6rem 1rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot--red    { background: #ff5f56; }
.code-dot--yellow { background: #ffbd2e; }
.code-dot--green  { background: #27c93f; }
.code-title {
  margin-left: auto;
  font-family: var(--font-mono); font-size: .75rem;
  color: var(--text-muted);
}
.code-body {
  padding: 1rem 1.2rem;
  font-family: var(--font-mono); font-size: .8rem;
  line-height: 1.8;
  color: var(--text);
}
.code-body .code-line { display: block; }
.code-comment { color: var(--text-muted); font-style: italic; }
.code-cmd { color: var(--orange); }
.code-ok    { color: #27c93f; }
.code-warn  { color: var(--orange); }
.code-result { margin-top: .5rem; padding-top: .5rem; border-top: 1px solid var(--border); }
.code-price { color: var(--cyan); font-weight: 600; }

/* ---- Hero compact (inner pages) --------------------------------- */
.hero--compact { padding: 3rem 0 2rem; }
.hero--compact .hero__title { font-size: 2.2rem; }
.hero--compact .hero__inner { position: relative; z-index: 1; }

/* ---- Sections --------------------------------------------------- */
.section { padding: 4rem 0; }
.section--dark {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .15em; color: var(--cyan); margin-bottom: .5rem;
}
.section__eyebrow--light { color: var(--text-muted); }
.section__title {
  font-size: 2rem; font-weight: 700; margin-bottom: .5rem;
  color: var(--text-bright);
}
.section__title--light { color: var(--text-bright); }
.section__subtitle { color: var(--text-light); font-size: 1rem; margin-bottom: 2.5rem; max-width: 600px; }

/* ---- Service category cards (homepage) -------------------------- */
.service-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.service-card {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all .2s;
  color: var(--text) !important;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
  background: var(--bg-card-hover);
  color: var(--text) !important;
}
.service-card__icon {
  width: 44px; height: 44px; margin-bottom: 1rem;
  color: var(--cyan);
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
  margin-bottom: .3rem; color: var(--text-bright);
}
.service-card p { color: var(--text-light); font-size: .85rem; line-height: 1.6; flex: 1; }
.service-card__price {
  display: inline-block;
  font-family: var(--font-mono); font-size: .85rem; font-weight: 600;
  color: var(--cyan); margin-top: 1rem; padding-top: .75rem;
  border-top: 1px solid var(--border);
}

/* ---- Prozess (how it works) ------------------------------------ */
.prozess-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.prozess-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all .2s;
}
.prozess-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-cyan); }
.prozess__step {
  display: inline-block;
  font-family: var(--font-mono); font-size: .7rem; font-weight: 600;
  color: var(--cyan); letter-spacing: .1em;
  margin-bottom: .75rem;
  padding: .2rem .6rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
}
.prozess-card h3 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  margin-bottom: .4rem; color: var(--text-bright);
}
.prozess-card p { font-size: .85rem; color: var(--text-light); line-height: 1.7; }
.prozess-arrow {
  font-family: var(--font-mono); font-size: 1.5rem;
  color: var(--cyan); text-align: center;
  opacity: .5;
}

/* ---- Trust signals --------------------------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color .2s;
}
.trust-card:hover { border-color: var(--border-light); }
.trust-card__icon {
  width: 40px; height: 40px; margin-bottom: 1rem;
  color: var(--cyan);
}
.trust-card__icon svg { width: 100%; height: 100%; }
.trust-card h3 {
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  margin-bottom: .3rem; color: var(--text-bright);
}
.trust-card p { font-size: .85rem; color: var(--text-light); line-height: 1.7; }

/* ---- CTA section ----------------------------------------------- */
.cta-section {
  background: var(--bg-dark);
  text-align: center;
  padding: 4rem 1.25rem;
  border-top: 1px solid var(--border);
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 700; margin-bottom: .5rem;
  color: var(--text-bright);
}
.cta-section p { color: var(--text-light); margin-bottom: 1.5rem; }
.cta-phone {
  font-family: var(--font-mono) !important;
  font-size: 1.5rem !important;
  color: var(--cyan) !important;
  font-weight: 600;
}

/* ---- Price tables (Leistungen page) ---------------------------- */
.price-group {
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.price-group:last-child { margin-bottom: 0; }
.price-group__title {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.15rem; font-weight: 600; margin-bottom: 0;
  padding: 1rem 1.25rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  color: var(--text-bright);
  font-family: var(--font-heading);
}
.price-group__icon {
  width: 22px; height: 22px;
  color: var(--cyan);
  flex-shrink: 0;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr {
  border-bottom: 1px solid var(--border);
}
.price-table tr:last-child { border-bottom: none; }
.price-table td {
  padding: .75rem 1.25rem;
  font-size: .9rem;
}
.price-table td:first-child { color: var(--text); }
.price-range {
  text-align: right; font-weight: 600; font-family: var(--font-mono);
  color: var(--cyan); white-space: nowrap; padding-left: 1rem;
  font-size: .85rem;
}
.price-highlight {
  text-align: right; font-weight: 600; font-family: var(--font-mono);
  color: var(--orange); white-space: nowrap; padding-left: 1rem;
  font-size: .85rem;
}
.price-note { color: var(--text-muted); font-size: .8rem; margin-top: 1rem; font-style: italic; }
.price-footer { margin-top: 2rem; }

/* ---- Contact page ----------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-heading); font-size: .95rem; font-weight: 600;
  margin-bottom: .5rem; color: var(--cyan); letter-spacing: .03em;
}
.contact-info p {
  color: var(--text-light); font-size: .9rem; margin-bottom: .3rem; line-height: 1.7;
}
.contact-info .contact-detail { margin-bottom: 1.5rem; }
.contact-phone { font-family: var(--font-mono); font-size: 1.05rem; color: var(--cyan); font-weight: 600; }

/* Opening hours table */
.opening-table { margin-bottom: .5rem; }
.opening-table td {
  padding: .2rem 0;
  font-size: .9rem; color: var(--text-light);
}
.opening-table td:last-child {
  font-family: var(--font-mono); font-size: .85rem;
  padding-left: 1.5rem;
  color: var(--text);
}
.opening-table .closed { color: var(--text-muted); }
.contact-note { font-size: .8rem !important; color: var(--text-muted) !important; font-style: italic; }

/* Contact form card */
.contact-form-col { position: relative; }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.contact-form-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600;
  color: var(--text-bright); margin-bottom: .25rem;
}
.contact-form__note { color: var(--text-light); font-size: .85rem; margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-family: var(--font-heading); font-weight: 500;
  font-size: .85rem; margin-bottom: .3rem; color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .6rem .85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font); font-size: .9rem;
  margin-bottom: 1rem; transition: border-color .15s;
  background: var(--bg-darkest);
  color: var(--text);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0,212,170,.15);
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form select { cursor: pointer; }
.contact-form select option { background: var(--bg-card); color: var(--text); }

/* Trust strip below contact info */
.trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.trust-strip__item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--text-light);
}
.trust-strip__icon { color: var(--cyan); font-size: .7rem; }

/* Map placeholder */
.map-container {
  margin-top: 3rem;
}
.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-light);
}
.map-placeholder__icon {
  width: 48px; height: 48px; margin: 0 auto 1rem;
  color: var(--text-muted);
}
.map-placeholder__inner p { font-size: .9rem; margin-bottom: .3rem; }
.map-placeholder__sub { font-size: .8rem !important; color: var(--text-muted); }

/* ---- Confirmation overlay ------------------------------------- */
.confirm-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.8); align-items: center; justify-content: center;
  padding: 1.25rem;
}
.confirm-overlay--open { display: flex; }
.confirm-overlay__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem; text-align: center; max-width: 420px; width: 100%;
  box-shadow: var(--shadow-lg);
}
.confirm-overlay__icon {
  width: 56px; height: 56px; margin: 0 auto 1rem;
  color: var(--cyan);
}
.confirm-overlay__icon svg { width: 100%; height: 100%; }
.confirm-overlay h3 {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600;
  margin-bottom: .5rem; color: var(--text-bright);
}
.confirm-overlay p { color: var(--text-light); font-size: .9rem; margin-bottom: 1.5rem; }
.confirm-overlay__detail { font-family: var(--font-mono); font-size: .85rem; color: var(--text-muted); margin-bottom: .25rem; }

/* ---- Footer ---------------------------------------------------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--text);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2rem; }
.footer__col h4 {
  font-family: var(--font-heading);
  font-size: .9rem; font-weight: 600; margin-bottom: .6rem;
  color: var(--cyan);
}
.footer__col p { font-size: .85rem; color: var(--text-light); line-height: 1.7; }
.footer__trust-badge {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; color: var(--text-light); margin-top: .5rem;
}
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}
.footer__note { font-size: .8rem !important; color: var(--text-muted) !important; font-style: italic; }
.footer__bottom {
  border-top: 1px solid var(--border); padding-top: 1.25rem;
  text-align: center;
}
.footer__bottom p { font-size: .8rem; color: var(--text-muted); }
.footer__legal {
  text-align: center;
  padding: .75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
}
.footer__legal a { color: var(--text-muted); }
.footer__legal a:hover { color: var(--cyan); }
.footer__legal-sep { color: var(--text-muted); padding: 0 .35rem; }
.footer__bottom a { color: var(--text-light); }
.footer__bottom a:hover { color: var(--cyan); }
.demo-marker { color: var(--cyan); font-weight: 600; }

/* ---- Legal pages (Impressum, Datenschutz, AGB) ---------------- */
.legal-content { max-width: 800px; }
.legal-block { margin-bottom: 2rem; }
.legal-block h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 600;
  color: var(--cyan); margin-bottom: .5rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--border);
}
.legal-block p {
  color: var(--text-light); font-size: .9rem;
  line-height: 1.7; margin-bottom: .5rem;
}
.legal-address { line-height: 1.8 !important; }
.legal-list {
  list-style: disc; padding-left: 1.5rem;
  margin-bottom: .75rem;
}
.legal-list li {
  color: var(--text-light); font-size: .9rem;
  line-height: 1.7; margin-bottom: .25rem;
}
.legal-demo-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem !important;
}
.legal-demo-note p { margin-bottom: 0; }

/* ---- Responsive: Tablet (max-width: 768px) --------------------- */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  /* Mobile nav */
  .nav-burger {
    display: flex; flex-direction: column; gap: 4px; cursor: pointer;
    padding: .5rem; background: none; border: none;
    align-self: center; flex-shrink: 0;
  }
  .nav-burger span {
    display: block; width: 24px; height: 2px; background: var(--text-bright);
    border-radius: 2px; transition: all .2s;
  }
  .nav-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .nav-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .nav__links {
    position: fixed; top: 0; right: 0; width: 280px; height: 100vh;
    background: var(--bg-darkest); flex-direction: column; align-items: stretch;
    padding: 5rem 1.5rem 2rem; gap: .25rem; transition: transform .3s ease;
    z-index: 1000;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
  }
  .nav__links a { padding: .75rem 1rem; font-size: 1rem; }
  .nav__links.nav-panel--open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  /* Backdrop overlay */
  .nav-backdrop {
    display: none; position: fixed; inset: 0; z-index: 999;
    background: rgba(0,0,0,.5);
  }
  .nav-backdrop.is-visible { display: block; }

  /* Layout */
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__title { font-size: 2rem; }
  .hero { padding: 4rem 0 3rem; }

  .prozess-grid { grid-template-columns: 1fr; }
  .prozess-arrow { transform: rotate(90deg); font-size: 1.2rem; padding: .5rem 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .service-categories { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
}

/* ---- Responsive: Phone (max-width: 480px) --------------------- */
@media (max-width: 480px) {
  .hero__title { font-size: 1.6rem; }
  .hero--compact .hero__title { font-size: 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .section { padding: 2.5rem 0; }
  .section__title { font-size: 1.5rem; }
  .btn { white-space: normal; }
  .price-table td { font-size: .8rem; padding: .6rem .85rem; }
  .price-range { font-size: .78rem; }
  .cta-section h2 { font-size: 1.5rem; }
  .cta-phone { font-size: 1.2rem !important; }
  .contact-form-card { padding: 1.25rem; }
}
