/* ==========================================================================
   CHOUT — chout.com
   Design: Richtung A (warm, gastfreundlich)
   Marke:  Navy #1E4468 · Türkis #00B2BB
   ========================================================================== */

:root {
  --cream:       #FAF7F1;
  --cream-2:     #F2ECE0;
  --white:       #FFFFFF;

  --ink:         #14283D;
  --body:        #4E5A66;
  --muted:       #5E6975;
  --faint:       #6C7883;

  --navy:        #1E4468;
  --navy-dark:   #143552;
  --teal:        #00B2BB;
  --teal-text:   #00808A;
  --teal-bright: #3FD3D8;
  --teal-tint:   #DCEFF1;

  --border:      #E9E2D7;
  --border-2:    #E2DACC;
  --border-3:    #D6D0C3;

  --dark:        #14283D;
  --dark-card:   #1E3A56;
  --dark-line:   #2C4B69;
  --on-dark:     #C4D4E0;
  --on-dark-dim: #8FA6BA;

  /* Systemschriften — kein externer Font-Request, kein Google-Fonts-Aufruf,
     rendert auf jedem Gerät in dessen bester Grotesk (SF Pro / Segoe UI /
     Roboto), mit Helvetica und Arial als Rückfallebene. */
  --font-sans:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: var(--font-sans);
  --font-body:    var(--font-sans);

  --wrap:    1280px;
  --gutter:  clamp(20px, 5vw, 80px);
  --radius:  20px;
  --radius-sm: 12px;

  --section-y: clamp(56px, 8vw, 96px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p, ul, ol { margin: 0; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-dark); }
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--teal-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

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

/* --- Type ---------------------------------------------------------------- */

/* Ohne Serifen entsteht die Hierarchie über Gewicht und Laufweite:
   große Überschriften fett und eng, Fließtext normal. */
.display-1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.032em;
  text-wrap: pretty;
}
.display-2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.026em;
  text-wrap: pretty;
}
.display-3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.lede { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.55; color: var(--body); }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-text);
}
.accent { font-style: normal; color: var(--teal-text); }

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 30px;
  border: 1px solid transparent; border-radius: 999px;
  font: inherit; font-size: 17px; font-weight: 600;
  cursor: pointer; text-align: center;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-dark); color: #fff; }
.btn--ghost { background: transparent; border-color: var(--border-3); color: var(--ink); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--on-dark { background: transparent; border-color: #40617F; color: #fff; }
.btn--on-dark:hover { background: rgba(255,255,255,.08); color: #fff; }
.btn--sm { min-height: 46px; padding: 0 22px; font-size: 15px; }
.btn--block { width: 100%; }

/* --- Header -------------------------------------------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,241,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  min-height: 72px;
}
.site-header__logo img { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) { font-size: 15px; color: #3F4A55; }
.nav a:not(.btn):hover { color: var(--navy); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border-3); border-radius: 10px; cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 8px var(--gutter) 24px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: none; opacity: 1; pointer-events: auto; }
  .nav a:not(.btn) { padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--border); }
  .nav .btn { margin-top: 16px; }
}

/* --- Hero ---------------------------------------------------------------- */

.hero { padding-block: clamp(44px, 7vw, 96px) clamp(52px, 8vw, 104px); }
.hero__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 28px); align-items: flex-start; }

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 12px; border-radius: 999px;
  background: var(--cream-2); border: 1px solid #E3D9C6;
  font-size: 13px; color: var(--muted);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-text); flex: none; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; font-size: 14px; color: var(--muted); }
.trust .sep { width: 4px; height: 4px; border-radius: 50%; background: #C7BFB0; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 220px; }
}

/* --- Phone mock ---------------------------------------------------------- */

.phone-stage { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-stage::before {
  content: ""; position: absolute; width: min(460px, 100%); aspect-ratio: 1;
  border-radius: 50%; background: var(--teal-tint);
}
.phone {
  position: relative; width: min(330px, 86vw);
  background: #0F1E2E; border-radius: 42px; padding: 12px;
  box-shadow: 0 32px 64px -24px rgba(20,40,61,.45);
}
.phone__screen { background: #fff; border-radius: 32px; overflow: hidden; }
.phone__bar {
  display: flex; align-items: center; gap: 12px;
  padding: 46px 18px 14px; border-bottom: 1px solid #F0EAE0;
}
.phone__avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); color: #fff; font-size: 16px; font-weight: 700; flex: none;
}
.phone__who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.phone__who b { font-size: 14px; font-weight: 600; }
.phone__who span { font-size: 11px; color: var(--teal-text); }
.phone__body { padding: 18px; background: #FAF7F2; display: flex; flex-direction: column; gap: 10px; min-height: 380px; }

.rcs-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.rcs-card__photo {
  aspect-ratio: 4 / 3; background: #E8D9C0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #8A7A62;
  text-align: center; padding: 12px;
}
.rcs-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.rcs-card__text { display: flex; flex-direction: column; gap: 6px; padding: 14px 16px 16px; }
.rcs-card__text b { font-size: 14px; font-weight: 600; }
.rcs-card__text span { font-size: 14px; line-height: 1.45; color: var(--body); }
.rcs-card__actions { display: flex; gap: 8px; padding: 0 16px 16px; }
.rcs-btn {
  flex: 1 1 0; text-align: center; padding: 10px 12px; border-radius: 999px;
  font-size: 13px; font-weight: 600; border: 1px solid var(--border-3); color: var(--body);
}
.rcs-btn--primary { border-color: var(--navy); color: var(--navy); }
.phone__meta { align-self: flex-end; font-size: 11px; color: var(--faint); }

/* --- Sections ------------------------------------------------------------ */

.section { padding-block: var(--section-y); }
.section--white { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark .display-2 { color: #fff; }

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: clamp(32px, 4vw, 56px); flex-wrap: wrap;
}
.section__head p { font-size: 16px; line-height: 1.5; color: var(--muted); max-width: 380px; }

/* --- Steps --------------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.step {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px 26px 32px; border-radius: var(--radius);
  background: var(--cream); border: 1px solid var(--border);
}
.step__n { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; color: var(--teal); }
.step h3 { font-size: 19px; font-weight: 600; line-height: 1.25; }
.step p { font-size: 15px; line-height: 1.55; color: var(--muted); }
.step--dark { background: var(--dark); border-color: var(--dark); }
.step--dark h3 { color: #fff; }
.step--dark p { color: #A9BDCE; }
.step--dark .step__n { color: var(--teal-bright); }

@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .steps { grid-template-columns: 1fr; } }

/* --- Split (senden / abonnieren) ----------------------------------------- */

.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split > * {
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
  padding-block: clamp(48px, 7vw, 88px);
}
.split > *:first-child { padding-right: clamp(24px, 4vw, 56px); border-right: 1px solid var(--border); }
.split > *:last-child  { padding-left:  clamp(24px, 4vw, 56px); }
.split p { color: var(--body); max-width: 46ch; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split > *:first-child { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .split > *:last-child { padding-left: 0; }
}

.triple { display: flex; gap: 12px; width: 100%; }
.triple > div {
  flex: 1 1 0; display: flex; flex-direction: column; gap: 8px; align-items: center;
  padding: 20px 12px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--border);
  font-size: 13px; color: var(--body);
}
.section--white .triple > div { background: var(--cream); }

.callout {
  display: flex; align-items: center; gap: 20px; width: 100%;
  padding: 22px 24px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--border);
}
.section--white .callout { background: var(--cream); }
.callout__icon {
  width: 76px; height: 76px; border-radius: 10px; background: var(--dark);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.callout b { display: block; font-size: 16px; }
.callout span { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* --- Benefits ------------------------------------------------------------ */

.benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.benefit {
  display: flex; gap: 20px; padding: 32px;
  border-radius: var(--radius); background: var(--cream); border: 1px solid var(--border);
}
.benefit__icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: #E2EDF5;
}
.benefit__icon--teal { background: var(--teal-tint); }
.benefit h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.benefit p { font-size: 15px; line-height: 1.6; color: var(--muted); }

@media (max-width: 760px) { .benefits { grid-template-columns: 1fr; } }

/* --- Pricing ------------------------------------------------------------- */

.pricing__head { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; margin-bottom: clamp(32px, 4vw, 52px); }
.pricing__head p { font-size: 17px; color: var(--on-dark-dim); }

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 940px; margin-inline: auto; }
.plan {
  position: relative; display: flex; flex-direction: column; gap: 24px;
  padding: 40px; border-radius: 22px;
  background: var(--dark-card); border: 1px solid var(--dark-line);
}
.plan--featured { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.plan__badge {
  position: absolute; top: -13px; left: 40px;
  padding: 5px 14px; border-radius: 999px; background: var(--navy); color: #fff;
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.plan__name { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--on-dark-dim); }
.plan--featured .plan__name { color: #636F7B; }
.plan__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.plan__price b { font-family: var(--font-display); font-size: clamp(38px, 4.6vw, 48px); font-weight: 700; letter-spacing: -0.03em; color: #fff; }
.plan--featured .plan__price b { color: var(--ink); }
.plan__price span { font-size: 15px; color: var(--on-dark-dim); }
.plan--featured .plan__price span { color: #636F7B; }
.plan__unit { font-size: 15px; color: var(--on-dark); }
.plan--featured .plan__unit { color: var(--body); }
.plan__rule { height: 1px; background: var(--dark-line); }
.plan--featured .plan__rule { background: var(--border-2); }
.plan__list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.plan__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: #E6EEF4; }
.plan--featured .plan__list li { color: #1B2E42; }
.plan__list svg { flex: none; margin-top: 4px; }
.plan .btn { margin-top: auto; }
.pricing__note { text-align: center; font-size: 15px; color: var(--on-dark-dim); margin-top: 28px; }

@media (max-width: 760px) {
  .plans { grid-template-columns: 1fr; }
  .plan { padding: 32px 24px; }
  .plan__badge { left: 24px; }
}

/* --- FAQ ----------------------------------------------------------------- */

.faq { display: grid; grid-template-columns: 380px minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); }
.faq__intro { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.faq__intro p { font-size: 16px; line-height: 1.6; color: var(--muted); }

.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--border-2); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-size: 19px; font-weight: 600; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--navy); }
.faq__item summary svg { flex: none; transition: transform .18s ease; }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item p { padding-bottom: 24px; font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 72ch; }

@media (max-width: 900px) {
  .faq { grid-template-columns: 1fr; }
  .faq__item summary { font-size: 17px; }
}

/* --- Contact ------------------------------------------------------------- */

.contact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(32px, 5vw, 72px); }
.contact__copy { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.contact__copy p { color: var(--body); max-width: 44ch; }
.checks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.checks li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: #3F4A55; }

.form {
  display: flex; flex-direction: column; gap: 18px;
  padding: clamp(24px, 3vw, 36px); border-radius: 22px;
  background: var(--cream); border: 1px solid var(--border);
}
.section--white .form { background: var(--cream); }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; color: #3F4A55; }
.field input, .field textarea {
  font: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 15px; min-height: 50px;
  background: var(--white); border: 1px solid #DCD5C7; border-radius: var(--radius-sm);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #A9A296; }
.field input:focus, .field textarea:focus { border-color: var(--navy); }
.form__legal { font-size: 13px; line-height: 1.5; color: #636F7B; text-align: center; }
.form__status { font-size: 15px; line-height: 1.5; padding: 12px 16px; border-radius: var(--radius-sm); display: none; }
.form__status[data-state="ok"]   { display: block; background: var(--teal-tint); color: #00565C; }
.form__status[data-state="error"]{ display: block; background: #FBE9E4; color: #8A2B12; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* --- Footer -------------------------------------------------------------- */

.site-footer { background: var(--dark); color: #fff; padding-block: 48px 56px; }
.site-footer__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.site-footer img { height: 27px; width: auto; margin-bottom: 14px; }
.site-footer p { font-size: 14px; color: #7C93A8; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.site-footer nav a { font-size: 14px; color: var(--on-dark); }
.site-footer nav a:hover { color: #fff; }

/* --- Legal pages --------------------------------------------------------- */

.legal { padding-block: clamp(40px, 6vw, 72px) clamp(56px, 8vw, 96px); }
.legal__head { margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid var(--border-2); }
.legal__head p { font-size: 15px; color: var(--muted); margin-top: 12px; }
.prose { max-width: 76ch; }
.prose h2 {
  font-family: var(--font-display); font-size: clamp(21px, 2.2vw, 26px);
  font-weight: 700; letter-spacing: -0.018em;
  line-height: 1.25; margin: 44px 0 14px;
}
.prose h3 { font-size: 18px; font-weight: 600; margin: 28px 0 10px; }
.prose h4 { font-size: 16px; font-weight: 600; margin: 22px 0 8px; }
.prose > :first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; color: var(--body); }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; color: var(--body); }
.prose li { margin-bottom: 8px; }
.prose li::marker { color: var(--teal-text); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose address { font-style: normal; color: var(--body); margin-bottom: 16px; }

.table-scroll { overflow-x: auto; margin-bottom: 22px; -webkit-overflow-scrolling: touch; }
.prose table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 15px; }
.prose th, .prose td { text-align: left; vertical-align: top; padding: 12px 14px; border-bottom: 1px solid var(--border-2); }
.prose th { background: var(--cream-2); font-weight: 600; color: var(--ink); }
.prose td { color: var(--body); }

.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; margin-bottom: 28px; }

/* --- Consent banner ------------------------------------------------------ */

.consent {
  position: fixed; inset: auto 0 0 0; z-index: 150;
  background: var(--white); border-top: 1px solid var(--border-2);
  box-shadow: 0 -18px 40px -24px rgba(20,40,61,.35);
  padding: clamp(20px, 3vw, 28px) 0;
}
.consent[hidden] { display: none; }
.consent__inner { display: flex; gap: clamp(20px, 3vw, 40px); align-items: flex-start; flex-wrap: wrap; }
.consent__text { flex: 1 1 420px; min-width: 0; }
.consent__text h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.consent__text p { font-size: 14px; line-height: 1.55; color: var(--muted); }
.consent__actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.consent__actions .btn { min-height: 48px; font-size: 15px; padding: 0 22px; }

.consent__options { display: none; flex-direction: column; gap: 10px; width: 100%; margin-top: 18px; }
.consent[data-detail="true"] .consent__options { display: flex; }
.consent__opt {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px; border: 1px solid var(--border-2); border-radius: var(--radius-sm); background: var(--cream);
}
.consent__opt input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--navy); flex: none; }
.consent__opt b { display: block; font-size: 15px; }
.consent__opt span { font-size: 13px; line-height: 1.5; color: var(--muted); }

.consent-reopen {
  background: none; border: 0; padding: 0; font: inherit; font-size: 14px;
  color: var(--on-dark); cursor: pointer; text-align: left;
}
.consent-reopen:hover { color: #fff; }

@media (max-width: 700px) {
  .consent__actions { width: 100%; }
  .consent__actions .btn { flex: 1 1 140px; }
}
