/* ===========================================================================
   webinar-landing.css — Webinar registration funnel ("Pin dich reich")
   Self-contained: bundles the Annika Rojas Gonzalez design-system tokens,
   @font-face declarations and base helpers so this template never touches the
   styles of any other page. Scoped under .webinar-b2s-b2c.
   Source: claude.ai/design — "Annika Rojas Gonzalez — Design System".
   =========================================================================== */

/* ---------- fonts ------------------------------------------------------- */
@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/Fredoka-Variable.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("../fonts/PlayfairDisplay-Variable.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/PlayfairDisplay-Italic-Variable.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/Mulish-Variable.woff2") format("woff2");
}
@font-face {
  font-family: "Mulish";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Mulish-Italic-Variable.woff2") format("woff2");
}

/* ---------- design tokens ----------------------------------------------- */
.webinar-b2s-b2c {
  /* red scale */
  --red-50:  #FDECEE;
  --red-100: #FBD5D9;
  --red-200: #F6AAB3;
  --red-300: #F1808D;
  --red-400: #EC5567;
  --red-500: #E63946;
  --red-600: #C92A3A;
  --red-700: #A81F2E;
  --red-800: #7E1622;
  --red-900: #5A0F18;

  /* yellow scale */
  --yellow-bright: #FDFF7E;
  --yellow-500:    #FFE066;
  --yellow-200:    #FFF0B3;
  --yellow-100:    #FFF7D6;

  /* warm neutrals */
  --cream-50:  #FFFDFB;
  --cream-100: #FFFBF7;
  --cream-200: #FBF4EE;
  --cream-300: #F3E9E0;

  --ink-900: #1F2937;
  --ink-700: #374151;
  --ink-500: #6B7280;
  --ink-400: #9AA1AC;
  --ink-300: #C4C9D0;

  --white: #FFFFFF;

  /* borders & dividers */
  --border-soft-red: rgba(230, 57, 70, 0.18);
  --border-neutral:  rgba(31, 41, 55, 0.08);
  --border-strong:   rgba(31, 41, 55, 0.14);

  /* gradient washes */
  --wash-red:        linear-gradient(140deg, #FFFBF7 0%, rgba(230, 57, 70, 0.28) 100%);
  --wash-red-soft:   linear-gradient(160deg, #FFFBF7 0%, rgba(230, 57, 70, 0.14) 100%);
  --wash-red-band:   linear-gradient(120deg, var(--red-500) 0%, var(--red-700) 100%);
  --wash-cream:      linear-gradient(180deg, #FFFBF7 0%, #FBF4EE 100%);

  /* semantic aliases */
  --color-bg:            var(--cream-100);
  --color-surface:       var(--white);
  --color-surface-warm:  var(--cream-200);

  --color-primary:        var(--red-500);
  --color-primary-hover:  var(--red-600);
  --color-primary-press:  var(--red-700);
  --color-on-primary:     var(--white);

  --color-accent:         var(--yellow-500);
  --color-accent-bright:  var(--yellow-bright);

  --text-heading:    var(--ink-900);
  --text-body:       var(--ink-500);
  --text-muted:      var(--ink-400);
  --text-on-primary: var(--white);
  --text-link:       var(--red-500);

  --surface-card:    var(--white);
  --surface-sunken:  var(--cream-200);

  --border-card:     var(--border-neutral);
  --border-accent:   var(--border-soft-red);
  --divider:         var(--border-neutral);

  --focus-ring:      rgba(230, 57, 70, 0.45);

  /* typography */
  --font-rounded:       "Fredoka", "Quicksand", "Segoe UI Rounded", system-ui, sans-serif;
  --font-serif-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-sans:          "Mulish", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-heading: var(--font-rounded);
  --font-body:    var(--font-sans);

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-extra:    800;
  --fw-black:    900;

  --fs-display:  clamp(2.75rem, 1.6rem + 5.6vw, 5rem);
  --fs-h1:       clamp(2.25rem, 1.5rem + 3.4vw, 3.5rem);
  --fs-h2:       clamp(1.75rem, 1.25rem + 2.2vw, 2.5rem);
  --fs-h3:       clamp(1.375rem, 1.1rem + 1.1vw, 1.75rem);
  --fs-h4:       clamp(1.125rem, 1rem + 0.5vw, 1.3125rem);
  --fs-lead:     clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --fs-body:     1.0625rem;
  --fs-small:    0.9375rem;
  --fs-caption:  0.8125rem;
  --fs-eyebrow:  0.8125rem;

  --lh-tight:   1.08;
  --lh-snug:    1.2;
  --lh-heading: 1.15;
  --lh-body:    1.65;
  --lh-relaxed: 1.8;

  --ls-tight:   -0.02em;
  --ls-normal:  0;
  --ls-wide:    0.04em;
  --ls-eyebrow: 0.16em;

  --measure: 64ch;

  /* spacing */
  --space-0:   0;
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.5rem;
  --space-6:   2rem;
  --space-7:   2.5rem;
  --space-8:   3rem;
  --space-9:   4rem;
  --space-10:  5rem;
  --space-12:  7rem;
  --space-14:  9rem;
  --container-max:    1200px;
  --container-narrow: 760px;
  --container-wide:   1340px;
  --gutter:           clamp(1.25rem, 5vw, 4rem);
  --section-y:        clamp(4rem, 8vw, 8rem);

  /* effects */
  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-2xl:  44px;
  --radius-pill: 999px;

  --shadow-xs:   0 1px 2px rgba(31, 41, 55, 0.05);
  --shadow-sm:   0 2px 8px rgba(31, 41, 55, 0.06);
  --shadow-md:   0 12px 30px rgba(31, 41, 55, 0.08);
  --shadow-lg:   0 24px 60px rgba(31, 41, 55, 0.10);
  --shadow-xl:   0 40px 90px rgba(31, 41, 55, 0.12);
  --shadow-red:  0 18px 40px rgba(230, 57, 70, 0.28);
  --shadow-red-sm: 0 8px 20px rgba(230, 57, 70, 0.22);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    140ms;
  --dur-base:    240ms;
  --dur-slow:    420ms;
  --dur-marquee: 32s;

  --lift: translateY(-4px);
}

/* ---------- base / reset (scoped) --------------------------------------- */
body.webinar-b2s-b2c-page { margin: 0; background: #FFFBF7; }
.webinar-b2s-b2c, .webinar-b2s-b2c *, .webinar-b2s-b2c *::before, .webinar-b2s-b2c *::after { box-sizing: border-box; }
.webinar-b2s-b2c {
  background: var(--color-bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.webinar-b2s-b2c h1, .webinar-b2s-b2c h2, .webinar-b2s-b2c h3, .webinar-b2s-b2c h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  font-weight: var(--fw-bold);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
.webinar-b2s-b2c p { margin: 0 0 1em; text-wrap: pretty; }
.webinar-b2s-b2c a { color: var(--text-link); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.webinar-b2s-b2c a:hover { color: var(--color-primary-hover); }
.webinar-b2s-b2c img { max-width: 100%; display: block; }
.webinar-b2s-b2c :focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; border-radius: var(--radius-xs); }
.webinar-b2s-b2c ::selection { background: var(--red-200); color: var(--ink-900); }

/* ---------- layout scaffold --------------------------------------------- */
.webinar-b2s-b2c .wrap        { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--gutter); }
.webinar-b2s-b2c .wrap--wide  { max-width: var(--container-max); }
.webinar-b2s-b2c .center      { text-align: center; }
.webinar-b2s-b2c .section     { padding: clamp(2.75rem, 6vw, 5rem) 0; }

/* ---------- inline-svg icon system -------------------------------------- */
.webinar-b2s-b2c .ic {
  display: inline-flex; flex: none; vertical-align: middle;
  width: 1.25em; height: 1.25em;
  fill: none; stroke: currentColor; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ---------- top brand bar ----------------------------------------------- */
.webinar-b2s-b2c .topbar {
  background: var(--wash-red-band); color: #fff; text-align: center;
  font-family: var(--font-body); font-weight: var(--fw-extra);
  font-size: var(--fs-caption); letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  padding: 11px 16px; display: flex; align-items: center; justify-content: center; gap: .6em;
}
.webinar-b2s-b2c .brandhead { padding: 22px 0; display: flex; justify-content: center; }
.webinar-b2s-b2c .brandhead img { height: 38px; }

/* ---------- eyebrow ------------------------------------------------------ */
.webinar-b2s-b2c .eyebrow {
  font-family: var(--font-body); font-size: var(--fs-eyebrow); font-weight: var(--fw-extra);
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase; color: var(--color-primary);
  margin: 0 0 var(--space-5);
}

/* ---------- hero headline ----------------------------------------------- */
.webinar-b2s-b2c .hero { padding: clamp(.5rem, 2vw, 1.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.webinar-b2s-b2c .hero h1 {
  font-family: var(--font-heading); font-weight: var(--fw-black);
  font-size: clamp(2.25rem, 1.2rem + 4.6vw, 3.85rem); line-height: 1.08;
  letter-spacing: var(--ls-tight); color: var(--text-heading);
  margin: 0 0 var(--space-5); text-wrap: balance;
}
.webinar-b2s-b2c .hero h1 .hl  { color: var(--color-primary); font-style: italic; }
.webinar-b2s-b2c .hero h1 .mark { background: linear-gradient(180deg, transparent 58%, var(--color-accent) 58%); padding: 0 .08em; }
.webinar-b2s-b2c .hero__sub {
  font-size: var(--fs-lead); line-height: var(--lh-body); color: var(--text-body);
  max-width: 56ch; margin: 0 auto var(--space-4);
}
.webinar-b2s-b2c .disclaim-link { font-size: var(--fs-caption); color: var(--text-muted); font-style: italic; }
.webinar-b2s-b2c .disclaim-link a { color: var(--text-muted); text-decoration: underline; }

/* ---------- countdown ---------------------------------------------------- */
.webinar-b2s-b2c .count-label {
  font-family: var(--font-body); font-weight: var(--fw-extra); text-transform: uppercase;
  letter-spacing: var(--ls-wide); font-size: var(--fs-small); color: var(--ink-700);
  margin: var(--space-7) 0 var(--space-4);
}
.webinar-b2s-b2c .countdown { display: flex; align-items: flex-start; justify-content: center; gap: clamp(.5rem, 2vw, 1.25rem); }
.webinar-b2s-b2c .cd-unit { display: flex; flex-direction: column; align-items: center; min-width: clamp(64px, 14vw, 92px); }
.webinar-b2s-b2c .cd-num {
  font-family: var(--font-heading); font-weight: var(--fw-bold);
  font-size: clamp(2.6rem, 1.5rem + 4vw, 4rem); line-height: 1; color: var(--text-heading);
  background: var(--surface-card); border: 1.5px solid var(--border-accent); box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md); padding: .28em .25em .22em; width: 100%; text-align: center;
  font-variant-numeric: tabular-nums;
}
.webinar-b2s-b2c .cd-label { font-size: var(--fs-caption); font-weight: var(--fw-bold); letter-spacing: var(--ls-wide);
  text-transform: uppercase; color: var(--text-muted); margin-top: var(--space-3); }
.webinar-b2s-b2c .cd-colon { font-family: var(--font-heading); font-weight: var(--fw-bold);
  font-size: clamp(2.2rem, 1.3rem + 3vw, 3.2rem); color: var(--red-200); line-height: 1.4; }

/* ---------- golden-ticket line + CTA ------------------------------------ */
.webinar-b2s-b2c .ticket-line {
  display: inline-flex; align-items: center; gap: .55em; margin: var(--space-7) auto var(--space-4);
  font-family: var(--font-heading); font-style: italic; font-weight: var(--fw-bold);
  font-size: var(--fs-h4); color: var(--text-heading);
}
.webinar-b2s-b2c .ticket-line .ic { color: var(--color-primary); }

/* ---------- buttons ------------------------------------------------------ */
.webinar-b2s-b2c .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: var(--fw-extra); line-height: 1.1; letter-spacing: .01em;
  border-radius: var(--radius-pill); border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.webinar-b2s-b2c .btn--md   { padding: .9rem 1.8rem; font-size: 1.0625rem; }
.webinar-b2s-b2c .btn--lg   { padding: 1.15rem 2.6rem; font-size: clamp(1.0625rem, 1rem + .4vw, 1.3125rem); }
.webinar-b2s-b2c .btn--full { display: flex; width: 100%; }
.webinar-b2s-b2c .btn--primary { background: var(--color-primary); color: var(--color-on-primary); box-shadow: var(--shadow-red-sm); }
.webinar-b2s-b2c .btn--primary:hover { background: var(--color-primary-hover); color: var(--color-on-primary); box-shadow: var(--shadow-red); transform: translateY(-2px); }
.webinar-b2s-b2c .btn:active { transform: translateY(1px) scale(.99); }
.webinar-b2s-b2c .btn .ic { width: 1.15em; height: 1.15em; }
.webinar-b2s-b2c .btn--pulse { animation: wbn-cta-pulse 2.4s var(--ease-in-out) infinite; }
@keyframes wbn-cta-pulse {
  0%, 100% { box-shadow: var(--shadow-red-sm); }
  50%      { box-shadow: 0 18px 44px rgba(230,57,70,.42); }
}
.webinar-b2s-b2c .seats-note { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--color-primary);
  margin-top: var(--space-3); display: flex; align-items: center; justify-content: center; gap: .45em; }
.webinar-b2s-b2c .seats-note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(230,57,70,.5); animation: wbn-seat-blink 1.6s ease-in-out infinite; }
@keyframes wbn-seat-blink { 0%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,.5); } 50% { box-shadow: 0 0 0 6px rgba(230,57,70,0); } }

/* ---------- hero image --------------------------------------------------- */
.webinar-b2s-b2c .hero-figure {
  margin: clamp(2rem, 4vw, 3rem) auto 0; max-width: 1080px;
  border-radius: var(--radius-xl); overflow: hidden; position: relative;
  background: var(--wash-red); border: 1.5px solid var(--border-accent); box-shadow: var(--shadow-lg);
}
.webinar-b2s-b2c .hero-figure img { width: 100%; display: block; }

/* ---------- giving banner ------------------------------------------------ */
.webinar-b2s-b2c .giving {
  display: flex; align-items: center; justify-content: center; gap: .7em; flex-wrap: wrap;
  background: var(--surface-sunken); border: 1.5px solid var(--border-accent); border-radius: var(--radius-pill);
  padding: 14px 26px; max-width: 620px; margin: clamp(1.5rem,3vw,2.25rem) auto 0;
  font-size: var(--fs-small); color: var(--ink-700); text-align: center; line-height: 1.4;
}
.webinar-b2s-b2c .giving .ic { color: var(--color-primary); width: 1.4em; height: 1.4em; }

/* ---------- "you'll discover" checklist --------------------------------- */
.webinar-b2s-b2c .discover { background: var(--surface-sunken); }
.webinar-b2s-b2c .discover h2 {
  font-family: var(--font-heading); font-weight: var(--fw-bold);
  font-size: clamp(1.85rem, 1.2rem + 2.6vw, 2.7rem); line-height: 1.12;
  color: var(--text-heading); margin: 0 auto var(--space-8); max-width: 22ch; text-align: center;
}
.webinar-b2s-b2c .checklist { display: flex; flex-direction: column; gap: var(--space-5); max-width: 720px; margin: 0 auto; }
.webinar-b2s-b2c .check-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.webinar-b2s-b2c .tick {
  flex: none; width: 34px; height: 34px; border-radius: 50%; margin-top: 2px;
  background: var(--color-primary); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-red-sm);
}
.webinar-b2s-b2c .tick .ic { width: 19px; height: 19px; stroke-width: 2.5; }
.webinar-b2s-b2c .check-item p { margin: 0; font-size: var(--fs-lead); line-height: var(--lh-body); color: var(--ink-700); }
.webinar-b2s-b2c .check-item p strong { color: var(--text-heading); font-weight: var(--fw-bold); }

/* ---------- host portrait ------------------------------------------------ */
.webinar-b2s-b2c .host { display: flex; flex-direction: column; align-items: center; gap: var(--space-4);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0; max-width: 420px; }
.webinar-b2s-b2c .host__photo {
  width: clamp(220px, 60vw, 320px); aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden;
  background: var(--wash-red); border: 1.5px solid var(--border-accent); box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.webinar-b2s-b2c .host__photo img { width: 100%; height: 100%; object-fit: cover; }
.webinar-b2s-b2c .host__name { font-family: var(--font-heading); font-style: italic; font-size: var(--fs-h3); color: var(--text-heading); }
.webinar-b2s-b2c .host__role { font-size: var(--fs-small); color: var(--text-muted); text-align: center; margin-top: -8px; }

/* ---------- social proof ------------------------------------------------- */
.webinar-b2s-b2c .proof { text-align: center; }
.webinar-b2s-b2c .proof__big {
  font-family: var(--font-heading); font-weight: var(--fw-bold);
  font-size: clamp(1.6rem, 1.1rem + 2.2vw, 2.4rem); color: var(--text-heading); line-height: 1.18;
}
.webinar-b2s-b2c .proof__big b { color: var(--color-primary); }
.webinar-b2s-b2c .avatars { display: flex; justify-content: center; margin-bottom: var(--space-5); }
.webinar-b2s-b2c .avatars span { width: 46px; height: 46px; border-radius: 50%; background: var(--wash-red);
  border: 3px solid var(--color-bg); box-shadow: var(--shadow-xs); }
.webinar-b2s-b2c .avatars span + span { margin-left: -16px; }

/* ---------- results band ------------------------------------------------- */
.webinar-b2s-b2c .results { background: var(--wash-red-band); color: #fff; text-align: center; padding: clamp(2.5rem,5vw,3.5rem) 0; }
.webinar-b2s-b2c .results img { height: 46px; margin: 0 auto var(--space-4); filter: brightness(0) invert(1); opacity: .9; }
.webinar-b2s-b2c .results__num { font-family: var(--font-heading); font-weight: var(--fw-bold);
  font-size: clamp(2.2rem, 1.3rem + 3.6vw, 3.4rem); line-height: 1; letter-spacing: var(--ls-tight); }
.webinar-b2s-b2c .results__cap { font-family: var(--font-body); font-weight: var(--fw-extra); text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow); font-size: var(--fs-small); opacity: .92; margin-top: var(--space-3); }

/* ---------- registration form ------------------------------------------- */
.webinar-b2s-b2c .formwrap { background: var(--surface-sunken); }
.webinar-b2s-b2c .formcard {
  max-width: 540px; margin: 0 auto; background: var(--surface-card);
  border: 1.5px solid var(--border-accent); border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl); padding: clamp(1.75rem, 4vw, 3rem); text-align: center;
}
.webinar-b2s-b2c .formcard h2 { font-family: var(--font-heading); font-weight: var(--fw-bold);
  font-size: clamp(1.6rem,1.1rem+2vw,2.25rem); color: var(--text-heading); margin: 0 0 var(--space-2); line-height: 1.15; }
.webinar-b2s-b2c .formcard__sub { font-size: var(--fs-body); color: var(--text-body); margin: 0 0 var(--space-5); }
.webinar-b2s-b2c .form-date {
  display: inline-flex; align-items: center; gap: .55em; margin: 0 auto var(--space-6);
  background: var(--red-50); color: var(--color-primary); border-radius: var(--radius-pill);
  padding: 10px 20px; font-weight: var(--fw-bold); font-size: var(--fs-small);
}
.webinar-b2s-b2c .form-date .ic { width: 1.1em; height: 1.1em; }
.webinar-b2s-b2c .regform { display: flex; flex-direction: column; gap: var(--space-4); text-align: left; }
.webinar-b2s-b2c .field { display: flex; flex-direction: column; gap: .4rem; }
.webinar-b2s-b2c .field > label { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--ink-700); }
.webinar-b2s-b2c .field input {
  width: 100%; padding: .95rem 1.2rem; font-family: var(--font-body); font-size: var(--fs-body);
  color: var(--text-heading); background: var(--color-surface); border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-pill); outline: none;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.webinar-b2s-b2c .field input::placeholder { color: var(--ink-300); }
.webinar-b2s-b2c .field input:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px var(--focus-ring); }
.webinar-b2s-b2c .gift-note {
  display: flex; align-items: center; gap: .5em; padding: 12px 16px; border-radius: var(--radius-md);
  background: var(--yellow-100); border: 1.5px solid rgba(255,224,102,.6);
  font-size: var(--fs-small); font-weight: var(--fw-semibold); color: var(--ink-700);
}
.webinar-b2s-b2c .gift-note .ic { color: var(--color-primary); }
.webinar-b2s-b2c .consent { font-size: 11.5px; line-height: 1.55; color: var(--text-muted); margin: var(--space-2) 0 0; text-align: left; }
.webinar-b2s-b2c .consent a { color: var(--text-muted); text-decoration: underline; }
.webinar-b2s-b2c .form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.webinar-b2s-b2c .form-message { padding: 12px 16px; border-radius: var(--radius-md); font-size: var(--fs-small);
  font-weight: var(--fw-bold); margin-bottom: var(--space-4); text-align: left; }
.webinar-b2s-b2c .form-message--error { background: var(--red-50); color: var(--color-primary); border: 1.5px solid var(--border-accent); }
.webinar-b2s-b2c .form-success { display: none; padding: var(--space-5); border-radius: var(--radius-lg);
  background: var(--red-50); color: var(--color-primary); font-weight: var(--fw-bold); font-size: var(--fs-body); }
.webinar-b2s-b2c .formcard.is-done .regform, .webinar-b2s-b2c .formcard.is-done .gift-note, .webinar-b2s-b2c .formcard.is-done .consent { display: none; }
.webinar-b2s-b2c .formcard.is-done .form-success { display: block; }

/* ---------- footer ------------------------------------------------------- */
.webinar-b2s-b2c .foot { background: var(--ink-900); color: rgba(255,255,255,.7); padding: clamp(2.5rem,5vw,4rem) 0 2.5rem; }
.webinar-b2s-b2c .foot__mark { height: 40px; margin: 0 auto var(--space-5); display: block; filter: brightness(0) invert(1); opacity: .92; }
.webinar-b2s-b2c .foot__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-bottom: var(--space-6);
  font-size: var(--fs-small); }
.webinar-b2s-b2c .foot__links a { color: rgba(255,255,255,.82); font-weight: var(--fw-semibold); }
.webinar-b2s-b2c .foot__links a:hover { color: #fff; }
.webinar-b2s-b2c .foot__social { display: flex; justify-content: center; gap: 12px; margin-bottom: var(--space-6); }
.webinar-b2s-b2c .foot__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: grid; place-items: center; color: #fff; }
.webinar-b2s-b2c .foot__social .ic { width: 18px; height: 18px; }
.webinar-b2s-b2c .foot__legal { max-width: 820px; margin: 0 auto; text-align: left; }
.webinar-b2s-b2c .foot__legal p { font-size: 12.5px; line-height: 1.7; color: rgba(255,255,255,.5); margin: 0 0 1em; }
.webinar-b2s-b2c .foot__legal strong { color: rgba(255,255,255,.78); }
.webinar-b2s-b2c .foot__bottom { max-width: 820px; margin: var(--space-7) auto 0; padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ---------- reveal-on-scroll (visible by default) ----------------------- */
.reveal-ready .webinar-b2s-b2c .reveal { opacity: 0; transform: translateY(22px); }
.reveal-ready .webinar-b2s-b2c .reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
@media (prefers-reduced-motion: reduce) {
  .reveal-ready .webinar-b2s-b2c .reveal, .reveal-ready .webinar-b2s-b2c .reveal.is-in { opacity: 1 !important; transform: none !important; }
  .webinar-b2s-b2c .btn--pulse, .webinar-b2s-b2c .seats-note .dot { animation: none !important; }
}

/* ---------- responsive --------------------------------------------------- */
@media (max-width: 560px) {
  .webinar-b2s-b2c .cd-unit { min-width: 0; flex: 1; }
  .webinar-b2s-b2c .foot__bottom { justify-content: center; text-align: center; }
}
