/* solarlotse — static landing page (no JavaScript) */

@font-face {
  font-family: "EONBrixSans";
  font-style: normal;
  font-weight: 400;
  src: url("https://web-ui.eon.com/cdn/fonts/17.0.0/eon/EON_BrixSansWeb-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "EONBrixSans";
  font-style: normal;
  font-weight: 500;
  src: url("https://web-ui.eon.com/cdn/fonts/17.0.0/eon/EON_BrixSansWeb-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "EONBrixSans";
  font-style: normal;
  font-weight: 700;
  src: url("https://web-ui.eon.com/cdn/fonts/17.0.0/eon/EON_BrixSansWeb-Bold.woff2") format("woff2");
  font-display: swap;
}

:root {
  --red: #ea1b0a;
  --red-dark: #c41708;
  --purple: #961482;
  --gradient: linear-gradient(135deg, #ea1b0a 0%, #ea1b0a 50%, #b0429d 78%, #710f62 100%);
  --beige: #f8f5f2;
  --white: #ffffff;
  --grey-border: #f0ebe5;
  --grey-text: #767676;
  --text: #262626;
  --max: 1200px;
  --pad: clamp(40px, 6vw, 72px);
}

*, *::before, *::after { box-sizing: border-box; }

html { font-size: 10px; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "EONBrixSans", Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
}

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

a { color: var(--red); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 900px; }

/* ── Advertorial ── */
.advertorial-bar {
  margin: 0;
  background: #f0ebe5;
  color: #262626;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 16px;
  border-bottom: 1px solid var(--grey-border);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 14px 24px;
}

.site-logo { display: inline-block; text-decoration: none; }
.site-logo img { height: 36px; width: auto; }

/* ── Side anchors ── */
.page-anchors { display: none; }

@media (min-width: 1100px) {
  .page-anchors {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
  }

  .page-anchors a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 0;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--grey-text);
    text-decoration: none;
    background: var(--white);
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 0 10px rgba(0,0,0,.07);
    transform: translateX(calc(100% - 30px));
    transition: transform .2s, color .15s;
    white-space: nowrap;
  }

  .page-anchors a::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-left: 10px;
    border-radius: 50%;
    background: #d7d0cc;
    flex-shrink: 0;
  }

  .page-anchors a:hover {
    transform: translateX(0);
    color: var(--red);
  }

  .page-anchors a:hover::before { background: var(--red); }
}

/* ── Sections ── */
.section { padding: var(--pad) 0; }
.section--white { background: var(--white); }
.section--beige { background: var(--beige); }
.section--red { background: var(--red); color: var(--white); }
.section--gradient { background: var(--gradient); color: var(--white); }

.section-title {
  margin: 0 0 32px;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: var(--text);
}

.section-title--white { color: var(--white); }
.section-title--left { text-align: left; }

/* ── Hero ── */
.hero {
  padding: 0 0 clamp(36px, 5vw, 56px);
  overflow: hidden;
  background: var(--white);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: none;
  margin: 0;
  min-height: 0;
}

.hero__content {
  background: var(--red);
  color: var(--white);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  max-width: 540px;
  color: var(--white);
}

.hero__text {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.45;
  max-width: 500px;
  color: var(--white);
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
}

.hero__note-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: center / contain no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.hero__media {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, #c41708 0%, #b0429d 60%, #710f62 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center center;
}

.hero__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  right: auto;
  background: var(--purple);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 4px;
  z-index: 2;
  line-height: 1.2;
}

/* Hero zip form */
.zip-form--hero {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: stretch;
  max-width: 440px;
  margin-top: 4px;
}

.zip-form--hero input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 4px;
  font: inherit;
  font-size: 1.6rem;
}

.btn--hero {
  flex-shrink: 0;
  min-width: 108px;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 4px;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 44% 56%;
    align-items: stretch;
    min-height: 480px;
  }

  .hero__content {
    padding: clamp(48px, 6vw, 80px) clamp(40px, 6vw, 88px);
  }

  .hero__media {
    min-height: 100%;
  }

  .hero__media img {
    min-height: 480px;
    height: 100%;
  }
}

@media (max-width: 599px) {
  .zip-form--hero {
    flex-direction: column;
    max-width: 100%;
  }

  .zip-form--hero .btn--hero {
    width: 100%;
  }
}

/* ── Zip form ── */
.zip-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 480px;
}

.zip-form input {
  flex: 1 1 180px;
  min-height: 48px;
  padding: 12px 16px;
  border: none;
  border-radius: 4px;
  font: inherit;
  font-size: 1.6rem;
  color: var(--text);
}

.zip-form--on-red input { flex: 1; }

.zip-form--hero input {
  border: 2px solid #ffffff;
  background: transparent;
  color: var(--white);
}

.zip-form--hero input::placeholder {
  color: rgba(255, 255, 255, 0.92);
}

.zip-form--hero input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s;
}

.btn--white {
  background: var(--white);
  color: var(--red) !important;
}

.btn--white:hover { background: var(--beige); }

.btn--red {
  background: var(--red);
  color: var(--white) !important;
}

.btn--red:hover { background: var(--red-dark); }

.btn--block { display: flex; width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--red);
}

.text-link:hover { text-decoration: underline; }

.section--gradient .text-link,
.section--red .text-link,
.split-teaser--red .text-link,
.cta-banner a { color: var(--white); }

/* ── WM-Special promo ── */
.promo.section--red {
  background: transparent;
  color: var(--text);
}

.promo {
  padding: clamp(40px, 6vw, 72px) 24px;
}

.promo__inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 48px);
  background: var(--red);
  color: var(--white);
}

.promo__media {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo__media img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
}

.promo__content {
  color: var(--white);
}

.promo__title {
  margin: 0 0 24px;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  text-align: left;
}

.promo__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.promo__list li {
  position: relative;
  padding: 0 0 12px 22px;
  font-size: 1.8rem;
  line-height: 1.45;
  color: var(--white);
}

.promo__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 1px;
}

.promo__list li strong {
  font-weight: 700;
}

.promo__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.promo__link::after {
  content: "→";
}

.promo__link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .promo__inner {
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.15fr);
  }
}

/* ── Benefit cards ── */
.cards-3 {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 700;
}

.benefit-card p { margin: 0; font-size: 1.6rem; color: var(--text); }

.benefit-card__icon {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--red) center / 26px no-repeat;
}

.benefit-card__icon--energy {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M13 2L3 14h7l-1 8 10-12h-7l1-8z'/%3E%3C/svg%3E");
}

.benefit-card__icon--warranty {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 1l8 4v6c0 5.25-3.5 9.74-8 11-4.5-1.26-8-5.75-8-11V5l8-4z'/%3E%3C/svg%3E");
}

.benefit-card__icon--check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E");
}

/* ── Gradient CTA banner ── */
.cta-banner {
  background: var(--gradient);
  color: var(--white);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.cta-banner p { margin: 0; }

@media (min-width: 768px) {
  .cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }

  .cta-banner p { flex: 1; }
  .cta-banner .btn { flex-shrink: 0; }
}

/* ── Product grid ── */
.product-grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: 40px;
  align-items: start;
}

@media (min-width: 900px) {
  .product-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 34%); }
}

.product-grid__main {
  background: var(--beige);
  border-radius: 4px;
  padding: clamp(24px, 4vw, 40px);
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}

@media (min-width: 768px) {
  .product-grid__main {
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 48px);
  }
}

.product-grid__image {
  margin: 0;
  min-width: 0;
}

.product-grid__image img {
  border-radius: 4px;
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-grid__body {
  min-width: 0;
}

.product-grid__badge {
  display: inline-block;
  margin: 0 0 20px;
  background: var(--purple);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 16px;
  border-radius: 4px;
}

.product-grid__subtitle {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
}

.product-grid__aside {
  text-align: center;
  width: 100%;
  min-width: 0;
}

.product-grid__aside img {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto 16px;
}

/* ── Check list ── */
.check-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 6px 0 6px 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.check-list--white li::before { color: var(--white); }
.check-list--white li { color: var(--white); }

/* ── Split teaser ── */
.split-teaser {
  display: grid;
  gap: 28px;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
}

.split-teaser--grey {
  background: var(--beige);
  padding: clamp(24px, 4vw, 40px);
}

.split-teaser--red {
  background: var(--gradient);
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
}

.split-teaser__media { margin: 0; }

.split-teaser__media img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.split-teaser__media--circle img {
  border-radius: 50%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.split-teaser__hint {
  margin: 16px 0 0;
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  .split-teaser { grid-template-columns: 1fr 1fr; }
}

/* ── Garantie cards ── */
.cards-2 {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .cards-2 { grid-template-columns: 1fr 1fr; }
}

.info-card {
  background: var(--white);
  color: var(--text);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.info-card ul {
  margin: 0;
  padding-left: 1.2em;
  flex: 1;
}

.info-card li { margin-bottom: 8px; font-size: 1.6rem; }

.info-card img {
  width: 100%;
  min-height: 300px;
  object-fit: contain;
  border-radius: 4px;
  margin-top: auto;
}

#zusatzgarantie .info-card img {
  min-height: 340px;
}

/* ── Video ── */
.video-wrap {
  border-radius: 4px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.video-wrap__player {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* ── FAQ ── */
.faq-layout {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .faq-layout { grid-template-columns: 1fr 2fr; align-items: start; }
}

.faq-layout__title {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.accordion__item {
  border-bottom: 1px solid #d7d0cc;
  background: var(--white);
}

.accordion__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.7rem;
  padding: 18px 36px 18px 16px;
  list-style: none;
  position: relative;
}

.accordion__item summary::-webkit-details-marker { display: none; }

.accordion__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--red);
}

.accordion__item[open] summary::after { content: "−"; }

.accordion__body {
  padding: 0 16px 20px;
  font-size: 1.6rem;
}

.accordion__body p { margin: 0 0 12px; }
.accordion__body ul { margin: 0 0 12px; padding-left: 1.3em; }

/* ── Discovery cards ── */
.discovery-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 600px) { .discovery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .discovery-grid { grid-template-columns: repeat(3, 1fr); } }

.discovery-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--gradient);
  border-radius: 4px;
  overflow: hidden;
  min-height: 280px;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  transition: transform .15s, box-shadow .15s;
}

.discovery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.16);
}

.discovery-card__pattern {
  height: 120px;
  background-size: cover;
  background-position: center;
}

.discovery-card__body {
  flex: 1;
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
}

.discovery-card__body h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
}

.discovery-card__body p {
  margin: 0;
  flex: 1;
  font-size: 1.5rem;
  opacity: .92;
}

.discovery-card__link {
  margin-top: 14px;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 1fr 1.5fr; }
}

.contact-layout__info p { margin: 0 0 12px; }

/* ── Trust ── */
.trust-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-card {
  background: var(--beige);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
}

.trust-card img {
  margin: 0 auto 16px;
  max-height: 130px;
  width: auto;
  object-fit: contain;
}

.trust-card p {
  margin: 0 0 14px;
  font-size: 1.5rem;
  color: var(--grey-text);
  text-align: left;
}

/* ── Subpages ── */
.subpage-main {
  padding: var(--pad) 0;
}

.subpage-content {
  max-width: 800px;
}

.subpage-content h1 {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
}

.subpage-content h2 {
  margin: 32px 0 12px;
  font-size: 2.2rem;
  font-weight: 700;
}

.subpage-content p,
.subpage-content li {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text);
}

.subpage-content p { margin: 0 0 16px; }

.subpage-content ul {
  margin: 0 0 16px;
  padding-left: 24px;
}

.subpage-content li { margin-bottom: 8px; }

.subpage-content a { font-weight: 500; }

.contact-card {
  background: var(--beige);
  border-radius: 4px;
  padding: 28px 32px;
  margin-top: 24px;
}

.contact-card p { margin: 0 0 12px; }

.contact-card p:last-child { margin-bottom: 0; }

.site-footer__disclaimer {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--grey-text);
}

.site-footer__copy {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--grey-border);
  font-size: 1.3rem;
  color: var(--grey-text);
}

/* ── Legal ── */
.legal { padding-top: 32px; padding-bottom: 48px; }

.legal__text p {
  margin: 0 0 14px;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--grey-text);
}

/* ── Footer ── */
.site-footer {
  background: var(--beige);
  border-top: 1px solid var(--grey-border);
  padding: 32px 0 48px;
}

.site-footer__inner {
  display: grid;
  gap: 20px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.site-footer__links a {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.site-footer__links a:hover { color: var(--red); }

.site-footer__author {
  margin: 0;
  font-size: 1.3rem;
  color: var(--grey-text);
}

.site-footer__withdraw {
  background: var(--white);
  border-radius: 4px;
  padding: 20px 24px;
}

.site-footer__withdraw p { margin: 0 0 8px; font-size: 1.6rem; }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--red) !important;
}

.social-icon {
  width: 18px;
  height: 18px;
  background: center / contain no-repeat;
}

.social-icon--fb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea1b0a' viewBox='0 0 24 24'%3E%3Cpath d='M22 12a10 10 0 1 0-11.6 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.4h-1.2c-1.2 0-1.6.8-1.6 1.5V12h2.8l-.4 2.9h-2.4v7A10 10 0 0 0 22 12z'/%3E%3C/svg%3E");
}

.social-icon--ig {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea1b0a' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4A5.8 5.8 0 0 1 16.2 22H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2zm8.4 2H7.8A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4zM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10zm6.5-.9a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0z'/%3E%3C/svg%3E");
}

.social-icon--yt {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ea1b0a' viewBox='0 0 24 24'%3E%3Cpath d='M21.6 7.2a2.5 2.5 0 0 0-1.8-1.8C18 5 12 5 12 5s-6 0-7.8.4a2.5 2.5 0 0 0-1.8 1.8C2 9 2 12 2 12s0 3 .4 4.8a2.5 2.5 0 0 0 1.8 1.8C6 19 12 19 12 19s6 0 7.8-.4a2.5 2.5 0 0 0 1.8-1.8c.4-1.8.4-4.8.4-4.8s0-3-.4-4.8zM10 15.5v-7l6 3.5-6 3.5z'/%3E%3C/svg%3E");
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .section-title { text-align: left; }
  .hero__badge { top: 12px; left: 12px; font-size: 1.2rem; }
}
