/* ─────────────────────────────────────────────────────────────
   LEGAL SMART – Widerrufsbutton 2026 Landing Page
   Prefix: wb-
   ───────────────────────────────────────────────────────────── */

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

:root {
  --ls-green:        #72c02c;
  --ls-green-dark:   #5a9a22;
  --ls-green-light:  rgba(114, 192, 44, 0.10);
  --ls-green-mid:    rgba(114, 192, 44, 0.18);
  --text-primary:    #1d1d1f;
  --text-secondary:  #6e6e73;
  --text-tertiary:   #86868b;
  --bg-primary:      #ffffff;
  --bg-secondary:    #f5f5f7;
  --bg-dark:         #1d1d1f;
  --border:          rgba(0,0,0,0.10);
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:       0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg:       0 20px 60px rgba(0,0,0,0.12);
  --radius-sm:       12px;
  --radius-md:       18px;
  --radius-lg:       24px;
  --max-w:           1100px;
  --section-py:      96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── UTILITIES ─── */
.wb-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.wb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ls-green-light);
  color: var(--ls-green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(114,192,44,0.25);
}
.wb-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--ls-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.wb-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ls-green);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wb-section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--ls-green);
  border-radius: 2px;
}

.wb-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.wb-lead {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 640px;
}

/* ─── NAV ─── */
.wb-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(255,255,255,0.90);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.wb-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wb-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.wb-nav__logo img { width: 34px; height: 34px; object-fit: contain; }
.wb-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--ls-green);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.wb-nav__cta:hover {
  background: var(--ls-green-dark);
  transform: translateY(-1px);
}
@media (max-width: 480px) { .wb-nav__cta { display: none; } }

/* ─── STICKY CTA (appears on scroll) ─── */
.wb-sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ls-green);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(114,192,44,0.40);
  transition: background .2s, transform .2s, box-shadow .2s, opacity .3s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.wb-sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.wb-sticky-cta:hover {
  background: var(--ls-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(114,192,44,0.45);
}
@media (max-width: 480px) {
  .wb-sticky-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    justify-content: center;
  }
}

/* ─── HERO ─── */
.wb-hero {
  padding: 140px 0 96px;
  background: linear-gradient(140deg, #f4fce8 0%, #ffffff 55%);
  position: relative;
  overflow: hidden;
}
.wb-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(114,192,44,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.wb-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.wb-hero__h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.wb-hero__h1 em {
  font-style: normal;
  color: var(--ls-green);
}
.wb-hero__sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.70;
  margin-bottom: 36px;
  max-width: 520px;
}
.wb-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ls-green);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 18px 36px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(114,192,44,0.38);
  transition: background .25s, transform .2s, box-shadow .25s;
  margin-bottom: 20px;
}
.wb-hero__cta:hover {
  background: var(--ls-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(114,192,44,0.44);
}
.wb-hero__trust {
  font-size: 13px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.wb-hero__trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wb-hero__trust span::before {
  content: '✓';
  color: var(--ls-green);
  font-weight: 700;
}
.wb-hero__visual {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.wb-hero__visual-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}
.wb-law-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ls-green-light);
  border: 1px solid rgba(114,192,44,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ls-green-dark);
  margin: 6px 6px 6px 0;
}
.wb-law-chip svg { flex-shrink: 0; }
.wb-deadline-box {
  margin-top: 20px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #664d03;
  line-height: 1.5;
}
.wb-deadline-box strong { font-weight: 700; }

@media (max-width: 860px) {
  .wb-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .wb-hero__visual { order: -1; }
}
@media (max-width: 600px) {
  .wb-hero { padding: 110px 0 72px; }
}

/* ─── COUNTDOWN ─── */
.wb-countdown {
  background: var(--bg-dark);
  padding: 64px 0;
  color: #fff;
  text-align: center;
}
.wb-countdown__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.wb-countdown__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.wb-countdown__unit {
  text-align: center;
  min-width: 88px;
}
.wb-countdown__number {
  font-size: clamp(44px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: block;
}
.wb-countdown__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  display: block;
}
.wb-countdown__sep {
  font-size: 56px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  line-height: 1;
  margin-top: -12px;
}
.wb-countdown__date {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.wb-countdown__date strong { color: var(--ls-green); }
.wb-countdown__expired {
  font-size: 20px;
  font-weight: 700;
  color: #ffc107;
  margin-top: 8px;
}

/* ─── CARDS ─── */
.wb-cards-section {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}
.wb-cards-section .wb-h2,
.wb-cards-section .wb-lead { text-align: center; margin-left: auto; margin-right: auto; }
.wb-cards-header { margin-bottom: 52px; }
.wb-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wb-card {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.wb-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.wb-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.wb-card__icon--blue  { background: #e8f4fd; }
.wb-card__icon--green { background: var(--ls-green-light); }
.wb-card__icon--warn  { background: #fff3e0; }
.wb-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.wb-card__body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

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

/* ─── QUIZ ─── */
.wb-quiz-section {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}
.wb-quiz-section .wb-h2 { margin-bottom: 8px; }
.wb-quiz-section .wb-lead { margin-bottom: 48px; }
.wb-quiz-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  border: 1px solid var(--border);
}
.wb-quiz-q {
  display: none;
}
.wb-quiz-q.active {
  display: block;
  animation: fadeUp .3s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.wb-quiz-progress {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ls-green);
  margin-bottom: 16px;
}
.wb-quiz-question {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 28px;
}
.wb-quiz-answers {
  display: flex;
  gap: 14px;
}
.wb-quiz-btn {
  flex: 1;
  padding: 16px 24px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.wb-quiz-btn:hover {
  border-color: var(--ls-green);
  background: var(--ls-green-light);
  transform: translateY(-2px);
}
.wb-quiz-result {
  display: none;
  animation: fadeUp .35s ease forwards;
}
.wb-quiz-result.active { display: block; }
.wb-quiz-result-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.wb-quiz-result-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.wb-quiz-result-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}
.wb-quiz-reset {
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.wb-quiz-reset:hover { border-color: var(--ls-green); color: var(--ls-green); }

@media (max-width: 640px) {
  .wb-quiz-box { padding: 28px 24px; }
  .wb-quiz-answers { flex-direction: column; }
}

/* ─── INFO SECTIONS ─── */
.wb-info-section {
  padding: var(--section-py) 0;
}
.wb-info-section:nth-of-type(even),
.wb-info-section--alt { background: var(--bg-secondary); }
.wb-info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wb-info-inner--flip { direction: rtl; }
.wb-info-inner--flip > * { direction: ltr; }
.wb-info-visual {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.wb-info-visual--dark {
  background: var(--bg-dark);
  color: #fff;
}
.wb-law-ref {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}
.wb-law-ref--light { color: rgba(255,255,255,0.45); }
.wb-law-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  border-left: 3px solid var(--ls-green);
  padding-left: 16px;
  font-style: italic;
}
.wb-law-quote--light {
  color: rgba(255,255,255,0.75);
}
.wb-checklist {
  list-style: none;
  margin-top: 16px;
}
.wb-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.wb-checklist li:last-child { border-bottom: none; }
.wb-checklist li::before {
  content: '✓';
  color: var(--ls-green);
  font-weight: 700;
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}
.wb-checklist--light li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.1); }
.wb-checklist--light li::before { color: var(--ls-green); }
.wb-warn-box {
  margin-top: 16px;
  background: rgba(255,193,7,0.12);
  border: 1px solid rgba(255,193,7,0.5);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  color: #664d03;
  line-height: 1.55;
}
.wb-warn-box strong { font-weight: 700; }

@media (max-width: 860px) {
  .wb-info-inner { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .wb-info-inner--flip { direction: ltr; }
}

/* ─── VALUE STACK ─── */
.wb-value-section {
  padding: var(--section-py) 0;
  background: var(--ls-green);
}
.wb-value-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wb-value-section .wb-section-label { color: rgba(255,255,255,0.7); }
.wb-value-section .wb-section-label::before { background: rgba(255,255,255,0.5); }
.wb-value-section .wb-h2 { color: #fff; margin-bottom: 12px; }
.wb-value-section .wb-lead { color: rgba(255,255,255,0.80); margin-bottom: 36px; }
.wb-value-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--ls-green-dark);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  transition: transform .2s, box-shadow .2s;
}
.wb-value-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.2);
}
.wb-value-list {
  list-style: none;
  background: rgba(0,0,0,0.10);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  border: 1px solid rgba(255,255,255,0.15);
}
.wb-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.90);
  line-height: 1.55;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.wb-value-list li:last-child { border-bottom: none; }
.wb-value-list li svg { flex-shrink: 0; color: #fff; margin-top: 2px; }

@media (max-width: 860px) {
  .wb-value-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── ABOUT ─── */
.wb-about-section {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
}
.wb-about-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.wb-about-inner .wb-lead { margin: 0 auto 32px; text-align: center; }
.wb-author-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.wb-author-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.wb-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.wb-author-role {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* ─── FORM ─── */
.wb-form-section {
  padding: var(--section-py) 0;
  background: var(--bg-primary);
}
.wb-form-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.wb-form-box .wb-section-label { justify-content: center; }
.wb-form-box .wb-h2 { text-align: center; margin-bottom: 10px; }
.wb-form-box .wb-lead { text-align: center; margin: 0 auto 36px; }

/* Success state */
.wb-success-box {
  text-align: center;
  padding: 56px 24px;
}
.wb-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--ls-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--ls-green);
}
.wb-success-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.wb-success-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto 32px;
}
.wb-success-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ls-green);
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Form fields */
.wb-form { display: flex; flex-direction: column; gap: 0; }
.wb-field { margin-bottom: 20px; }
.wb-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.wb-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 7px;
}
.wb-input {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.wb-input::placeholder { color: var(--text-tertiary); }
.wb-input:focus {
  border-color: var(--ls-green);
  box-shadow: 0 0 0 3px rgba(114,192,44,0.14);
  background: #fff;
}
.wb-input.is-error { border-color: #d63031; }
.wb-field-error {
  font-size: 13px;
  color: #d63031;
  font-weight: 500;
  margin-top: 6px;
  display: none;
}
.wb-field-error.visible { display: block; }

/* Checkbox */
.wb-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: border-color .2s;
}
.wb-checkbox-wrap:hover,
.wb-checkbox-wrap:has(input:checked) { border-color: var(--ls-green); }
.wb-checkbox-wrap.is-error { border-color: #d63031; }
.wb-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--ls-green);
  cursor: pointer;
}
.wb-checkbox-wrap span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.wb-checkbox-wrap a {
  color: var(--ls-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wb-btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ls-green);
  color: #fff;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 18px 36px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(114,192,44,0.38);
  transition: background .25s, transform .2s, box-shadow .25s;
  margin-top: 8px;
}
.wb-btn-submit:hover {
  background: var(--ls-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(114,192,44,0.44);
}
.wb-btn-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.wb-form-note {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  margin-top: 16px;
  line-height: 1.55;
}
.wb-spinner {
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}
.wb-spinner.active { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 540px) {
  .wb-field-row { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─── */
.wb-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.55);
  padding: 40px 0;
  font-size: 13px;
  text-align: center;
}
.wb-footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color .2s;
}
.wb-footer a:hover { color: #fff; }
.wb-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.wb-footer__copy { color: rgba(255,255,255,0.30); }
