:root {
  --ink: #251811;
  --ink-soft: #4a352a;
  --paper: #fff8f3;
  --paper-warm: #fff0e4;
  --paper-light: #fffdfb;
  --white: #ffffff;
  --orange: #ff5a12;
  --orange-hot: #f33c00;
  --orange-soft: #ffd8bd;
  --orange-pale: #fff1e7;
  --gold: #ffb21a;
  --muted: #74665e;
  --line: #eadbd0;
  --green: #20bd62;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(113, 57, 25, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
svg { display: block; width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.shell { width: min(100% - 30px, 1180px); margin-inline: auto; }
.section { padding: 72px 0; }

/* Kopfbereich – mobile first */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 253, 251, .92);
  border-bottom: 1px solid rgba(102, 62, 37, .1);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 28px rgba(96, 51, 23, .06);
}
.header-inner { min-height: 68px; display: flex; align-items: center; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex: none; min-width: 0; }
.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--orange), var(--orange-hot));
  box-shadow: 0 9px 20px rgba(255, 74, 8, .2);
}
.brand-logo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand-text { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.brand-text strong { font-size: 13px; line-height: 1; letter-spacing: -.015em; white-space: nowrap; }
.brand-text small { color: var(--orange-hot); font-size: 6.5px; line-height: 1.1; text-transform: uppercase; letter-spacing: .045em; white-space: nowrap; }
.desktop-nav, .header-cta { display: none; }
.mobile-menu { margin-left: auto; position: relative; }
.mobile-menu summary {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
  cursor: pointer;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 18px; height: 2px; border-radius: 2px; background: var(--ink); }
.mobile-menu nav {
  position: absolute;
  top: 51px;
  right: 0;
  width: min(270px, calc(100vw - 30px));
  display: grid;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.mobile-menu nav a { padding: 12px; border-radius: 10px; color: var(--ink-soft); font-size: 14px; font-weight: 750; }
.mobile-menu nav a:last-child { margin-top: 6px; background: var(--orange); color: white; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, var(--orange), var(--orange-hot)); box-shadow: 0 14px 30px rgba(244, 67, 0, .22); }
.button-primary:hover { box-shadow: 0 18px 38px rgba(244, 67, 0, .3); }
.button-secondary { color: var(--ink); background: rgba(255, 255, 255, .8); border: 1px solid #dfc9ba; }
.button-secondary:hover { background: white; }
.button-light { color: var(--orange-hot); background: white; box-shadow: 0 14px 34px rgba(117, 42, 7, .14); }
.button-small { min-height: 44px; padding: 0 17px; font-size: 13px; border-radius: 12px; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 42px;
  background:
    radial-gradient(circle at 5% 5%, rgba(255, 164, 99, .24), transparent 34%),
    radial-gradient(circle at 96% 40%, rgba(255, 87, 18, .12), transparent 32%),
    linear-gradient(145deg, #fffaf6, #fff0e4);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .38;
  background-image: radial-gradient(rgba(246, 77, 4, .16) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}
.hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-glow-one { width: 300px; height: 300px; right: -120px; top: 80px; background: rgba(255, 120, 53, .13); }
.hero-glow-two { width: 180px; height: 180px; left: -100px; bottom: 10px; background: rgba(255, 181, 111, .18); }
.hero-grid { position: relative; z-index: 1; display: grid; gap: 28px; }
.hero-copy { text-align: center; }
.eyebrow, .section-label {
  color: var(--orange-hot);
  text-transform: uppercase;
  letter-spacing: .105em;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 900;
}
.eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 17px; }
.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(32, 189, 98, .12); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(32,189,98,.12); } 50% { box-shadow: 0 0 0 8px rgba(32,189,98,0); } }
.hero h1 { margin: 0 auto; max-width: 700px; font-size: clamp(40px, 12vw, 57px); line-height: 1.01; letter-spacing: -.055em; font-weight: 950; }
.hero h1 em, .section-heading h2 em, .how-copy h2 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 610px; margin: 20px auto 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.hero-actions { display: grid; gap: 10px; margin-top: 27px; }
.hero-actions .button { width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.trust-row span { display: inline-flex; align-items: center; gap: 5px; padding: 8px 10px; border: 1px solid rgba(231, 202, 181, .85); border-radius: 999px; background: rgba(255,255,255,.72); color: #5c4a40; font-size: 10px; font-weight: 750; }
.trust-row svg { width: 14px; height: 14px; color: var(--green); }

.hero-visual { position: relative; min-height: 440px; display: grid; place-items: end center; isolation: isolate; }
.mascot-halo {
  position: absolute;
  z-index: -1;
  width: min(330px, 88vw);
  aspect-ratio: 1;
  bottom: 8px;
  border-radius: 45% 55% 50% 50%;
  background: linear-gradient(145deg, #ffe5d2, #ffc69d);
  box-shadow: inset 0 0 0 1px rgba(255, 89, 18, .12), 0 24px 70px rgba(255, 92, 18, .12);
  transform: rotate(-4deg);
}
.mascot-halo::after { content: "%"; position: absolute; right: 18px; top: 15px; color: rgba(255, 90, 18, .12); font-size: 92px; font-weight: 950; transform: rotate(12deg); }
.hero-showcase { position: relative; z-index: 1; width: min(370px, 108vw); display: flex; align-items: flex-end; justify-content: center; }
.hero-mascot { position: relative; z-index: 2; flex: none; display: block; width: min(188px, 51vw); max-height: 420px; margin-left: -54px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 22px 28px rgba(96, 42, 20, .18)); }
.hero-deal-card {
  position: relative;
  z-index: 3;
  flex: none;
  width: min(244px, 68vw);
  padding: 14px;
  border: 1px solid rgba(229, 200, 181, .95);
  border-radius: 21px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 55px rgba(94, 51, 28, .19);
  backdrop-filter: blur(10px);
  transform: rotate(-1.5deg);
}
.deal-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.deal-card-top > small { color: #aaa09a; font-size: 7px; white-space: nowrap; }
.deal-card-brand { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); font-size: 8px; }
.deal-card-brand img { width: 24px; height: 24px; border-radius: 7px; object-fit: cover; }
.deal-alert { display: inline-flex; margin-top: 11px; padding: 6px 8px; border-radius: 7px; color: var(--orange-hot); background: var(--orange-pale); font-size: 7px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.deal-card-media { position: relative; height: 135px; margin-top: 10px; display: grid; place-items: center; overflow: hidden; border: 1px solid #f1ded1; border-radius: 15px; background: linear-gradient(145deg, #fff7f1, #ffeadc); }
.deal-card-media::before { content: ""; position: absolute; width: 155px; height: 155px; border: 1px dashed rgba(255,90,18,.18); border-radius: 50%; }
.deal-card-media img { position: relative; z-index: 1; width: 114px; height: 114px; display: block; border-radius: 13px; object-fit: cover; box-shadow: 0 10px 28px rgba(100, 51, 25, .12); }
.deal-card-media > strong { position: absolute; z-index: 2; right: 10px; top: 12px; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--orange); box-shadow: 0 9px 22px rgba(255,90,18,.28); font-size: 13px; transform: rotate(5deg); }
.deal-card-label { display: block; margin-top: 11px; color: var(--orange-hot); font-size: 7px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.hero-deal-card h3 { margin: 4px 0 0; color: var(--ink); font-size: 22px; line-height: 1.05; letter-spacing: -.04em; }
.deal-card-price { display: flex; align-items: baseline; gap: 7px; margin-top: 11px; }
.deal-card-price strong { color: var(--ink); font-size: 22px; line-height: 1; }
.deal-card-price del { color: #9b8a80; font-size: 9px; }
.deal-card-price em { margin-left: auto; color: var(--green); font-size: 9px; font-style: normal; font-weight: 900; }
.deal-card-button { min-height: 38px; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 12px; border-radius: 10px; color: white; background: #2a1811; font-size: 9px; font-weight: 900; }

/* Überschriften */
.section-heading { max-width: 700px; }
.section-heading.centered { margin: 0 auto 35px; text-align: center; }
.section-heading h2, .how-copy h2 { margin: 10px 0 0; font-size: clamp(35px, 10vw, 48px); line-height: 1.04; letter-spacing: -.05em; font-weight: 950; }
.section-heading > p, .how-copy > p { margin: 15px 0 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.split-heading { display: grid; gap: 12px; margin-bottom: 30px; }
.split-heading > p { margin: 0; color: var(--muted); }

/* Kanäle direkt nach dem Hero */
.channels-section { background: var(--paper-light); }
.channel-grid { display: grid; gap: 14px; }
.channel-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 15px 42px rgba(92, 50, 25, .07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.channel-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--orange); }
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.channel-card.channel-whatsapp { border-color: rgba(32, 189, 98, .35); background: linear-gradient(145deg, #f3fff7, #fff 58%); }
.channel-whatsapp::before { background: var(--green); }
.channel-telegram::before { background: #229ed9; }
.channel-facebook::before { background: #1877f2; }
.recommended { position: absolute; top: 0; right: 17px; padding: 7px 10px; border-radius: 0 0 9px 9px; background: var(--green); color: #092415; font-size: 8px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.channel-icon { width: 51px; height: 51px; display: grid; place-items: center; border-radius: 16px; color: white; font-size: 15px; font-weight: 900; box-shadow: 0 10px 22px rgba(52, 34, 22, .12); }
.channel-whatsapp .channel-icon { background: var(--green); }
.channel-telegram .channel-icon { background: #229ed9; }
.channel-facebook .channel-icon { background: #1877f2; font-family: Arial, sans-serif; font-size: 28px; }
.channel-meta { margin: 24px 0 7px !important; color: #91847c !important; font-size: 9px !important; text-transform: uppercase; letter-spacing: .085em; font-weight: 850; }
.channel-card h3 { margin: 0 0 10px; font-size: 24px; letter-spacing: -.04em; }
.channel-card > p { margin: 0 0 22px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.channel-card > a { width: 100%; min-height: 45px; margin-top: auto; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; background: var(--orange-pale); color: var(--orange-hot); font-size: 12px; font-weight: 900; }
.channel-whatsapp > a { background: var(--green); color: white; }
.channel-telegram > a { background: #e8f6fc; color: #137aa9; }
.channel-facebook > a { background: #edf4ff; color: #1765c8; }

/* Vorteile */
.benefits-section { background: linear-gradient(180deg, var(--paper-warm), #fff8f3); }
.feature-grid { display: grid; gap: 14px; }
.feature-card { position: relative; min-height: 240px; padding: 24px; overflow: hidden; border: 1px solid #ead6c8; border-radius: var(--radius); background: rgba(255,255,255,.82); box-shadow: 0 12px 35px rgba(106, 55, 27, .06); }
.feature-card.featured { background: white; box-shadow: var(--shadow); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--orange-pale); color: var(--orange-hot); }
.icon-box svg { width: 22px; height: 22px; }
.feature-card h3 { margin: 28px 0 10px; font-size: 22px; letter-spacing: -.035em; }
.feature-card p { margin: 0; max-width: 92%; color: var(--muted); font-size: 14px; line-height: 1.7; }
.feature-number { position: absolute; right: 19px; bottom: 8px; color: #f2e4da; font-size: 62px; line-height: 1; font-weight: 950; letter-spacing: -.07em; }

/* Ablauf */
.section-light { background: var(--paper-light); }
.how-grid { display: grid; gap: 42px; }
.text-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; color: var(--orange-hot); font-size: 14px; font-weight: 900; }
.steps-list { margin: 0; padding: 0; list-style: none; display: grid; }
.steps-list li { display: grid; grid-template-columns: 47px 1fr; gap: 14px; padding: 23px 0; border-bottom: 1px solid var(--line); }
.steps-list li:first-child { padding-top: 0; }
.steps-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.steps-list > li > span { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; font-size: 15px; font-weight: 900; box-shadow: 0 9px 20px rgba(255, 90, 18, .2); }
.steps-list h3 { margin: 1px 0 6px; font-size: 18px; letter-spacing: -.025em; }
.steps-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

/* Ratgeber */
.article-section { padding-top: 12px; background: var(--paper-light); }
.article-highlight { overflow: hidden; display: grid; border: 1px solid var(--line); border-radius: 25px; background: #fff3e9; box-shadow: 0 18px 55px rgba(90, 49, 25, .09); }
.article-visual { position: relative; min-height: 285px; display: grid; place-items: center; padding: 25px; overflow: hidden; background: linear-gradient(145deg, #ffd8bd, #fff0e3); }
.article-visual::before { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(255, 90, 18, .13); }
.chart-card { position: relative; z-index: 1; width: min(400px, 100%); padding: 18px; border-radius: 19px; background: white; box-shadow: 0 24px 55px rgba(116, 58, 27, .18); transform: rotate(-2deg); }
.chart-card > span { color: #3b3631; font-size: 12px; font-weight: 850; }
.chart-card svg { width: 100%; height: 120px; margin-top: 14px; overflow: visible; }
.chart-line { fill: none; stroke: var(--orange-hot); stroke-width: 4; stroke-linejoin: round; }
.chart-area { fill: rgba(255,90,18,.1); stroke: none; }
.chart-card circle { fill: white; stroke: var(--orange-hot); stroke-width: 4; }
.chart-card > div { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; color: #7b746d; font-size: 10px; }
.chart-card > div strong { color: var(--ink); font-size: 18px; }
.article-copy { display: flex; flex-direction: column; align-items: flex-start; padding: 31px 24px 36px; }
.article-copy h2 { margin: 12px 0 15px; font-size: 32px; line-height: 1.08; letter-spacing: -.045em; }
.article-copy p { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* FAQ */
.faq-section { background: #fffaf7; }
.faq-grid { display: grid; gap: 35px; }
.faq-grid .section-heading p a { color: var(--orange-hot); text-decoration: underline; text-underline-offset: 3px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr 32px; gap: 16px; align-items: center; padding: 21px 0; cursor: pointer; list-style: none; font-size: 15px; font-weight: 850; letter-spacing: -.015em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-pale); color: var(--ink); font-size: 19px; transition: transform .2s ease, background .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--orange); color: white; }
.faq-list details p { margin: -2px 42px 22px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

/* Abschluss */
.final-cta { position: relative; overflow: hidden; padding: 62px 0; color: white; background: linear-gradient(135deg, var(--orange-hot), #ff7c31); }
.final-cta::before { content: "%"; position: absolute; right: -30px; top: -50px; color: rgba(255,255,255,.1); font-size: 220px; line-height: 1; font-weight: 950; transform: rotate(-8deg); }
.final-cta-inner { position: relative; z-index: 1; display: grid; gap: 27px; }
.final-cta .section-label { color: #ffe1d2; }
.final-cta h2 { margin: 9px 0; font-size: 39px; line-height: 1.03; letter-spacing: -.05em; }
.final-cta p { margin: 0; color: #ffe9df; font-size: 14px; line-height: 1.65; }
.final-cta .button { width: 100%; }

/* Footer – einziger bewusst dunkler Bereich */
.site-footer { padding: 58px 0 92px; color: white; background: #2a1811; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 22px; padding-bottom: 42px; }
.footer-grid > div:first-child { grid-column: 1 / -1; }
.footer-brand { margin-bottom: 17px; }
.footer-brand .brand-text strong { color: white; }
.footer-brand .brand-text small { color: #ffb58c; }
.footer-grid > div:first-child > p { max-width: 330px; margin: 0; color: #b8a69c; font-size: 12px; line-height: 1.65; }
.footer-grid h3 { margin: 0 0 16px; color: #9e887b; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a { margin-bottom: 10px; color: #e2d6cf; font-size: 12px; }
.footer-bottom { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; padding-top: 21px; border-top: 1px solid rgba(255,255,255,.09); color: #937f75; font-size: 9px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #c5b6ae; }

.mobile-bottom-cta {
  position: fixed;
  z-index: 45;
  left: 12px;
  right: 12px;
  bottom: 11px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  box-shadow: 0 15px 42px rgba(82, 31, 8, .32);
  font-size: 14px;
  font-weight: 900;
}

@media (min-width: 700px) {
  .shell { width: min(100% - 48px, 1180px); }
  .section { padding: 92px 0; }
  .brand-logo { width: 44px; height: 44px; flex-basis: 44px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { font-size: 8px; }
  .hero { padding: 75px 0 60px; }
  .hero h1 { font-size: 62px; }
  .hero-actions { display: flex; justify-content: center; }
  .hero-actions .button { width: auto; }
  .hero-visual { min-height: 510px; }
  .hero-showcase { width: 470px; }
  .hero-deal-card { width: 270px; padding: 16px; }
  .deal-card-media { height: 150px; }
  .deal-card-media img { width: 126px; height: 126px; }
  .hero-mascot { width: 235px; max-height: 510px; margin-left: -62px; }
  .mascot-halo { width: 410px; }
  .section-heading.centered { margin-bottom: 47px; }
  .split-heading { grid-template-columns: 1.05fr .95fr; gap: 55px; align-items: end; margin-bottom: 42px; }
  .split-heading > p { margin-bottom: 5px; }
  .channel-grid, .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .channel-card { min-height: 330px; }
  .feature-card { min-height: 285px; }
  .how-grid { grid-template-columns: .9fr 1.1fr; gap: 65px; align-items: center; }
  .article-highlight { grid-template-columns: 1fr 1fr; min-height: 440px; }
  .article-visual { min-height: 440px; }
  .chart-card svg { height: 150px; }
  .article-copy { justify-content: center; padding: 45px; }
  .article-copy h2 { font-size: 40px; }
  .faq-grid { grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
  .faq-grid .section-heading { position: sticky; top: 105px; }
  .final-cta-inner { grid-template-columns: 1fr auto; align-items: center; gap: 55px; }
  .final-cta .button { width: auto; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.15fr .85fr; gap: 38px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}

@media (min-width: 940px) {
  .header-inner { min-height: 78px; gap: 32px; }
  .desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 25px; }
  .desktop-nav a { color: #5c4b41; font-size: 13px; font-weight: 750; }
  .desktop-nav a:hover { color: var(--orange-hot); }
  .header-cta { display: inline-flex; }
  .mobile-menu { display: none; }
  .hero { padding: 82px 0 66px; }
  .hero-grid { grid-template-columns: 1.03fr .97fr; align-items: center; gap: 55px; }
  .hero-copy { text-align: left; }
  .eyebrow { justify-content: flex-start; }
  .hero h1, .hero-lead { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }
  .trust-row { justify-content: flex-start; }
  .hero-visual { min-height: 555px; }
  .hero-showcase { width: 520px; }
  .hero-deal-card { width: 286px; }
  .deal-card-media { height: 162px; }
  .deal-card-media img { width: 136px; height: 136px; }
  .hero-mascot { width: 270px; max-height: 550px; margin-left: -66px; }
  .mascot-halo { width: 440px; }
  .section-heading h2, .how-copy h2 { font-size: 56px; }
  .article-copy h2 { font-size: 46px; }
  .mobile-bottom-cta { display: none; }
  .site-footer { padding-bottom: 27px; }
}

@media (max-width: 380px) {
  .brand-text strong { font-size: 11px; }
  .brand-text small { font-size: 5.7px; }
  .hero h1 { font-size: 38px; }
  .hero-visual { min-height: 415px; }
  .hero-showcase { width: 338px; }
  .hero-deal-card { width: 220px; padding: 12px; }
  .deal-card-media { height: 122px; }
  .deal-card-media img { width: 104px; height: 104px; }
  .hero-deal-card h3 { font-size: 20px; }
  .hero-mascot { width: 164px; max-height: 395px; margin-left: -48px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
