/* Polster Deep & Clean — polsterpro.ch style */
:root {
  --blue: #1a9fff;
  --blue-dark: #0d8ae6;
  --blue-soft: #e8f5ff;
  --black: #111;
  --text: #1a1a1a;
  --muted: #666;
  --bg: #fff;
  --radius: 16px;
  --radius-pill: 999px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; gap: 12px;
}
.logo {
  display: flex; flex-direction: column; line-height: 1.15;
  font-weight: 800; font-size: 14px; color: var(--blue);
  letter-spacing: -0.02em;
}
.logo small { font-size: 10px; font-weight: 500; color: #888; }
.header-icons { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, background .15s;
}
.icon-btn:hover { background: var(--blue-dark); transform: scale(1.05); }
.icon-btn svg { width: 18px; height: 18px; }
.lang {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 600; color: #333; padding: 0 4px;
}
.menu-btn {
  width: 40px; height: 40px; border: none; background: transparent;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.menu-btn svg { width: 24px; height: 24px; }
#mobileMenu {
  display: none; background: #fff; border-top: 1px solid #eee;
  padding: 12px 0 20px;
}
#mobileMenu a {
  display: block; padding: 12px 16px; font-weight: 600; font-size: 15px;
  border-bottom: 1px solid #f3f3f3;
}
#mobileMenu a:hover { color: var(--blue); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; border: none; cursor: pointer;
  border-radius: var(--radius-pill); padding: 14px 28px;
  transition: transform .15s, opacity .15s, background .15s;
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-black { background: #111; color: #fff; }
.btn-black:hover { background: #333; }
.btn-full { width: 100%; }
.btn-sm { padding: 12px 20px; font-size: 14px; }

/* Hero */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.72);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px 16px 28px;
  max-width: 1100px; margin: 0 auto; width: 100%;
}
.hero-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px; font-size: 14px; font-weight: 600;
}
.hero-top .loc { display: flex; align-items: center; gap: 6px; }
.hero-top .price-tag { font-size: 18px; font-weight: 800; }
.hero h1 {
  font-size: clamp(28px, 7vw, 42px);
  font-weight: 800; line-height: 1.15; margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.hero-discount {
  font-size: 16px; font-weight: 700; margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.hero-discount strong {
  background: var(--blue); padding: 4px 10px; border-radius: 8px;
  font-size: 18px;
}
.hero-ctas {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px;
}
.hero-pills {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px;
}
.pill {
  background: rgba(255,255,255,.92); color: #222;
  border-radius: 14px; padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.pill svg, .pill .ico {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #555;
}

/* Section */
.section { padding: 48px 0; }
.section-title {
  font-size: 28px; font-weight: 800; text-align: center;
  margin-bottom: 28px; letter-spacing: -0.02em;
}

/* Preise grid */
.price-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.price-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid #eee;
  display: flex; flex-direction: column;
}
.price-card img {
  width: 100%; height: 140px; object-fit: cover;
  background: #f5f5f5;
}
.price-card-body {
  padding: 14px 12px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.price-card h3 {
  font-size: 14px; font-weight: 700; line-height: 1.3; min-height: 36px;
}
.price-card .amount {
  font-size: 20px; font-weight: 800; margin: 2px 0 6px;
}
.price-card .btn { width: 100%; padding: 11px 12px; font-size: 13px; }
.price-card .btn + .btn { margin-top: 6px; }

/* Blue CTA band */
.cta-blue {
  background: var(--blue); color: #fff;
  padding: 48px 16px; position: relative; overflow: hidden;
}
.cta-blue-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; z-index: 2;
}
.cta-blue h2 {
  font-size: clamp(26px, 6vw, 36px); font-weight: 800;
  line-height: 1.2; letter-spacing: -0.02em;
}
.cta-blue p { font-size: 16px; opacity: .95; }
.cta-blue .btn-black { align-self: flex-start; min-width: 200px; }
.cta-blue-man {
  position: absolute; right: -20px; bottom: 0;
  width: 180px; height: auto; opacity: .95;
  pointer-events: none;
}

/* Warum wir */
.why-grid {
  display: grid; gap: 12px;
}
.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px; background: #f8f9fb; border-radius: 14px;
}
.why-item .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; flex-shrink: 0; font-size: 15px;
}
.why-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.why-item p { font-size: 13px; color: var(--muted); }

/* Steps */
.steps { display: grid; gap: 14px; }
.step {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.step:last-child { border-bottom: none; }
.step-n {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--black); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.step p { font-size: 13px; color: var(--muted); }

/* Before after */
.ba-grid { display: grid; gap: 14px; }
.ba-card {
  border-radius: 16px; overflow: hidden; border: 1px solid #eee;
}
.ba-row { display: grid; grid-template-columns: 1fr 1fr; }
.ba-cell { position: relative; }
.ba-cell img { width: 100%; height: 150px; object-fit: cover; }
.ba-tag {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,.7); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: 999px; text-transform: uppercase; letter-spacing: .04em;
}
.ba-tag.ok { background: var(--blue); }

/* FAQ */
.faq details {
  border-bottom: 1px solid #eee; padding: 14px 0;
}
.faq summary {
  font-weight: 700; font-size: 15px; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--blue); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 10px; font-size: 14px; color: var(--muted); line-height: 1.6;
}

/* Contact */
.contact-box {
  background: #f8f9fb; border-radius: 20px; padding: 24px 18px;
  text-align: center;
}
.contact-box h2 { margin-bottom: 8px; }
.contact-box p { color: var(--muted); margin-bottom: 18px; font-size: 14px; }
.contact-links { display: flex; flex-direction: column; gap: 10px; }

/* Footer */
footer {
  background: #0b1220; color: rgba(255,255,255,.6);
  padding: 32px 16px; text-align: center; font-size: 13px;
}
footer .brand { color: #fff; font-weight: 800; margin-bottom: 6px; }
footer a { color: rgba(255,255,255,.75); }
footer .links { display: flex; justify-content: center; gap: 16px; margin: 14px 0; flex-wrap: wrap; }

/* Floating WhatsApp */
.fab-wa {
  position: fixed; bottom: 20px; right: 16px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
}
.fab-wa svg { width: 28px; height: 28px; }

@media (min-width: 768px) {
  .header-inner { height: 64px; }
  .price-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .price-card img { height: 160px; }
  .hero-ctas { flex-direction: row; max-width: 480px; }
  .hero-ctas .btn { flex: 1; }
  .hero-pills { max-width: 420px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .ba-cell img { height: 200px; }
  .cta-blue-man { width: 260px; right: 40px; }
  .contact-links { flex-direction: row; justify-content: center; }
  .contact-links .btn { min-width: 200px; }
}

/* Blue CTA with worker photo */
.cta-blue-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  min-height: 280px;
}
.cta-text { position: relative; z-index: 2; max-width: 60%; }
.cta-worker {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  max-height: 320px;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 600px) {
  .cta-text { max-width: 55%; }
  .cta-worker { max-height: 260px; right: -10px; }
}

/* Price calculator */
.calc-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}
.calc-left h2 {
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}
.calc-left p { opacity: .95; margin-bottom: 16px; }
.cta-worker-inline {
  display: none;
  max-height: 220px;
  width: auto;
  border-radius: 16px;
}
.calc-box {
  background: #fff;
  color: #111;
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.calc-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #555;
  margin-bottom: 6px;
}
.calc-select {
  width: 100%;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1.5px solid #e5e5e5;
  font-size: 15px;
  font-weight: 600;
  background: #f8f9fb;
  margin-bottom: 14px;
  outline: none;
}
.calc-select:focus { border-color: var(--blue); }
.calc-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.calc-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
}
.calc-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}
.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e8f5ff;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.calc-total-row strong {
  font-size: 22px;
  color: var(--blue);
  font-weight: 800;
}
.calc-note {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.social-link {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: #e8f5ff;
  color: var(--blue) !important;
  font-weight: 700;
  font-size: 14px;
}
.social-link:hover { background: var(--blue); color: #fff !important; }

@media (min-width: 768px) {
  .calc-layout {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  .calc-left { flex: 1; }
  .calc-box { flex: 1; max-width: 420px; }
  .cta-worker-inline { display: block; margin-top: 12px; }
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 14px;
}
.review-card {
  background: #f8f9fb;
  border-radius: 16px;
  padding: 18px 16px;
  border: 1px solid #eee;
}
.review-stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}
.review-text {
  font-size: 14px;
  line-height: 1.65;
  color: #333;
  margin: 0 0 14px;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.review-meta strong { color: #111; }
.review-meta span { color: #888; font-size: 12px; }
@media (min-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (min-width: 1000px) {
  .reviews-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Hero carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62) saturate(0.95);
}
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.4);
  transition: background .25s, transform .25s;
}
.hero-dots button.active {
  background: #fff;
  transform: scale(1.3);
}

/* Glass panel on hero content */
.hero-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  padding: 22px 18px 20px !important;
  margin-bottom: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero-glass .pill {
  background: rgba(255,255,255,0.88);
}
@media (min-width: 768px) {
  .hero-glass {
    padding: 28px 28px 24px !important;
    max-width: 560px;
  }
}

/* Hero: more photo visible above glass */
.hero {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}
.hero-content.hero-glass {
  margin-top: auto !important;
  margin-bottom: 18px !important;
  padding: 16px 14px 14px !important;
  border-radius: 20px !important;
  max-height: none;
}
.hero-content.hero-glass h1 {
  font-size: clamp(22px, 6.5vw, 32px) !important;
  margin: 8px 0 12px !important;
  line-height: 1.15 !important;
}
.hero-content.hero-glass .hero-pills {
  gap: 6px !important;
  margin-top: 10px !important;
}
.hero-content.hero-glass .pill {
  padding: 9px 12px !important;
  font-size: 13px !important;
}
.hero-content.hero-glass .hero-ctas {
  gap: 8px !important;
}
.hero-content.hero-glass .btn {
  padding: 12px 18px !important;
}
.hero-slide img {
  filter: brightness(0.78) saturate(1.05) !important;
}
.hero-dots {
  bottom: auto !important;
  top: 72px !important;
}
@media (min-width: 768px) {
  .hero-content.hero-glass {
    max-width: 520px !important;
    padding: 22px 24px 18px !important;
    margin-bottom: 40px !important;
  }
  .hero-dots {
    top: 90px !important;
  }
}

/* Fix cut-off logo on mobile */
.logo {
  min-width: 0;
  flex-shrink: 1;
  max-width: 42%;
  overflow: visible;
  white-space: normal;
  font-size: 12px !important;
  line-height: 1.2 !important;
}
.logo small {
  font-size: 9px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}
.header-icons {
  flex-shrink: 0;
  gap: 5px !important;
}
.header-icons .icon-btn {
  width: 32px !important;
  height: 32px !important;
}
.header-icons .icon-btn svg {
  width: 15px !important;
  height: 15px !important;
}
.header-icons .lang {
  display: none;
}
@media (max-width: 400px) {
  .header-icons a[aria-label="E-Mail"] { display: none; }
  .header-icons a[aria-label="Telefon"] { display: none; }
}

/* Pills more transparent */
.hero-content.hero-glass .pill {
  background: rgba(255, 255, 255, 0.55) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #111 !important;
}

/* Less empty space above glass – move description higher */
.hero {
  justify-content: center !important;
  padding-top: 56px;
}
.hero-content.hero-glass {
  margin-top: 28vh !important;
  margin-bottom: 12px !important;
}
.hero-dots {
  top: 64px !important;
}
@media (min-width: 768px) {
  .logo {
    max-width: none;
    font-size: 14px !important;
  }
  .logo small { font-size: 10px !important; }
  .header-icons .lang { display: flex; }
  .header-icons a[aria-label="E-Mail"],
  .header-icons a[aria-label="Telefon"] { display: flex; }
  .hero-content.hero-glass {
    margin-top: 18vh !important;
  }
}
.logo-title {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* === Final hero photo + glass fixes === */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.35) 100%
  ) !important;
  opacity: 1 !important;
}
.hero-bg img,
.hero-slide img {
  filter: none !important;
  object-fit: cover !important;
  object-position: center 40% !important;
  width: 100% !important;
  height: 100% !important;
}
.hero-slide {
  background: #ddd;
}

/* Glass pills — transparent, not dark */
.hero-content.hero-glass .pill,
.hero-glass .pill {
  background: rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(14px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  box-shadow: none !important;
}
.hero-content.hero-glass .pill .ico {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

/* Glass panel itself lighter so photos show through */
.hero-content.hero-glass {
  background: rgba(20, 24, 32, 0.28) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2) !important;
}
.hero-content.hero-glass h1,
.hero-content.hero-glass .hero-top,
.hero-content.hero-glass .price-tag,
.hero-content.hero-glass .loc {
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Compact hero glass + ultra transparent pills */
.hero {
  min-height: auto !important;
  padding-bottom: 0 !important;
}
.hero-content.hero-glass {
  margin-top: 12vh !important;
  margin-bottom: 8px !important;
  padding: 14px 12px 12px !important;
  gap: 0 !important;
  background: rgba(15, 18, 25, 0.22) !important;
  backdrop-filter: blur(22px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.4) !important;
  border: 1px solid rgba(255,255,255,0.28) !important;
}
.hero-content.hero-glass h1 {
  margin: 6px 0 10px !important;
  font-size: clamp(20px, 6vw, 28px) !important;
}
.hero-content.hero-glass .hero-ctas {
  gap: 6px !important;
  margin-bottom: 8px !important;
}
.hero-content.hero-glass .btn {
  padding: 11px 16px !important;
  font-size: 14px !important;
}
.hero-content.hero-glass .hero-pills {
  gap: 5px !important;
  margin-top: 4px !important;
}
.hero-content.hero-glass .pill,
.hero-glass .pill {
  background: rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  color: #fff !important;
  padding: 8px 11px !important;
  font-size: 12.5px !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}
.section#preise,
.section:has(.section-title) {
  padding-top: 28px !important;
}
#preise.section {
  padding-top: 24px !important;
}
.hero-dots {
  top: 58px !important;
}
@media (min-width: 768px) {
  .hero-content.hero-glass {
    margin-top: 10vh !important;
    padding: 18px 20px 16px !important;
  }
}

/* Glass block high up — like earlier layout */
.hero {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding-top: 0 !important;
}
.hero-content.hero-glass {
  margin-top: 64px !important;
  margin-bottom: auto !important;
  padding: 14px 12px 12px !important;
}
.hero-dots {
  bottom: 16px !important;
  top: auto !important;
}
@media (min-width: 768px) {
  .hero-content.hero-glass {
    margin-top: 80px !important;
    max-width: 520px !important;
  }
}

/* Slightly more air in top glass block */
.hero-content.hero-glass {
  margin-top: 72px !important;
  padding: 20px 16px 18px !important;
}
.hero-content.hero-glass h1 {
  margin: 10px 0 14px !important;
  font-size: clamp(22px, 6.5vw, 30px) !important;
  line-height: 1.2 !important;
}
.hero-content.hero-glass .hero-ctas {
  gap: 10px !important;
  margin-bottom: 12px !important;
}
.hero-content.hero-glass .btn {
  padding: 13px 18px !important;
  font-size: 15px !important;
}
.hero-content.hero-glass .hero-pills {
  gap: 8px !important;
  margin-top: 6px !important;
}
.hero-content.hero-glass .pill {
  padding: 11px 13px !important;
  font-size: 13px !important;
}
.hero-content.hero-glass .hero-top {
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .hero-content.hero-glass {
    margin-top: 88px !important;
    padding: 26px 24px 22px !important;
  }
}
