/* ══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --clr-dark:     #0f172a;
  --clr-darker:   #020617;
  --clr-teal:     #0f766e;
  --clr-purple:   #8b5cf6;
  --clr-orange:   #f97316;
  --clr-text:     #1e293b;
  --clr-muted:    #64748b;
  --clr-border:   #e2e8f0;
  --clr-bg:       #f8fafc;
  --clr-white:    #ffffff;
  --clr-slate-100:#f1f5f9;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(15,23,42,.08);
  --shadow-md:    0 12px 30px rgba(15,23,42,.14);
  --shadow-lg:    0 20px 50px rgba(15,23,42,.22);
  --transition:   0.15s ease;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--clr-teal); text-decoration: none; }
a:hover { text-decoration: underline; }

h1,h2,h3,h4 { line-height: 1.3; margin: 0 0 .85rem; color: var(--clr-dark); }
p { margin: 0 0 1.15rem; }
ul,ol { padding-left: 1.25rem; }
li { margin-bottom: .4rem; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-md);
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none !important;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-orange));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(139,92,246,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(139,92,246,.45);
}

.btn-secondary {
  background: #e2e8f0;
  color: var(--clr-dark);
}
.btn-secondary:hover { background: #cbd5e1; }

.btn-small { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-submit { margin-top: 4px; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  background: var(--clr-dark);
  color: #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.disclaimer-bar {
  background: var(--clr-darker);
  color: #9ca3af;
  font-size: 11.5px;
  text-align: center;
  padding: 5px 16px 6px;
  letter-spacing: .01em;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  text-decoration: none !important;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-orange));
  color: var(--clr-darker);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.logo-text { font-weight: 600; font-size: 13.5px; color: #e5e7eb; }

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 18px;
  font-size: 13.5px;
}
.main-nav a { color: #d1d5db; opacity: .9; transition: opacity .15s; }
.main-nav a:hover { opacity: 1; text-decoration: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  padding: 32px 0 24px;
  background: var(--clr-bg);
}

.news-meta-strip {
  border-bottom: 1px solid var(--clr-border);
  background: #ffffff;
}

.news-meta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}

.news-meta-inner p {
  margin: 0;
  font-size: 12.5px;
  color: #475569;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-side {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.hero-card {
  max-width: 420px;
  position: relative;
  top: 0;
  background: var(--clr-dark);
  color: #e5e7eb;
  border-radius: var(--radius-md);
  padding: 24px 24px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  border: 1px solid #1e293b;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-purple);
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.22;
  margin-bottom: 16px;
  color: var(--clr-dark);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 700;
}

.lead {
  font-size: 18px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero-bullets li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14.5px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clr-purple);
  font-weight: 700;
}

.hero-trust-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4px 0 16px;
}

.hero-trust-pill {
  border: 1px solid #dbeafe;
  background: #f8fafc;
  color: #334155;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

/* Side card - styles already defined above */
.hero-card-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-purple);
  margin-bottom: 10px;
}
.hero-card h2 { font-size: 18px; color: #f1f5f9; margin-bottom: 10px; }
.hero-card p  { font-size: 13.5px; color: #94a3b8; margin-bottom: 14px; }

.hero-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.hero-checklist li {
  font-size: 13.5px;
  padding: 5px 0 5px 20px;
  position: relative;
  color: #cbd5e1;
}
.hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--clr-purple);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   ARTICLE
══════════════════════════════════════════ */
.article-section {
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 40px 0 48px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.6fr) minmax(0, 1fr);
  gap: 36px;
  align-items: flex-start;
}

.article-body { max-width: 760px; }

.article-meta {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--clr-muted);
  margin-bottom: 16px;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 18px 20px;
  background: var(--clr-slate-100);
  border-radius: var(--radius-md);
  border-top: 2px solid var(--clr-border);
}
.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-author strong { font-size: 14.5px; color: var(--clr-dark); }
.article-author span  { font-size: 12.5px; color: var(--clr-muted); }

.article-figure { margin: 28px 0; }
.article-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border: 3px solid var(--clr-border);
}
figcaption {
  font-size: 12px;
  color: var(--clr-muted);
  margin-top: 8px;
  padding-left: 4px;
}

.article-body h2 { font-size: 22px; margin-top: 28px; }
.article-body h3 { font-size: 18px; margin-top: 22px; }
.article-body p  { margin-bottom: 14px; font-size: 15.5px; }
.article-body ul,
.article-body ol { margin-bottom: 14px; }
.article-body li { font-size: 15px; margin-bottom: 6px; }

blockquote {
  margin: 26px 0;
  padding: 20px 22px 20px 24px;
  background: linear-gradient(135deg, #faf5ff, #fff7ed);
  border-left: 4px solid var(--clr-purple);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  font-style: italic;
  font-size: 16px;
  color: #334155;
}

.insight-panel {
  margin: 20px 0 18px;
  background: #f8fafc;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 16px 16px 8px;
}

.insight-panel h3 {
  font-size: 16px;
  margin: 0 0 10px;
}

.insight-panel ul {
  margin: 0;
  padding-left: 1.05rem;
}

.insight-panel li {
  margin-bottom: 8px;
  font-size: 14px;
}
blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  font-style: normal;
  color: var(--clr-muted);
}

/* 3-Säulen method */
.method-section {
  margin: 36px 0;
  padding: 28px 24px;
  background: linear-gradient(135deg, #faf5ff, #fff7ed);
  border-radius: var(--radius-lg);
  border: 2px solid var(--clr-purple);
  box-shadow: 0 4px 16px rgba(139,92,246,.1);
}
.method-header { margin-bottom: 20px; }
.method-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-purple);
  background: #ccfbf1;
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.method-header h2 { font-size: 20px; margin-bottom: 6px; }
.method-header p  { font-size: 14px; color: var(--clr-muted); margin: 0; }

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.method-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
}
.method-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-orange));
  color: var(--clr-darker);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.method-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}
.method-card h3 { font-size: 14.5px; margin-bottom: 6px; }
.method-card p  { font-size: 13px; color: #475569; margin: 0; }

/* Inline CTA */
.inline-cta {
  margin: 28px 0;
  background: linear-gradient(135deg, #faf5ff, #fff7ed);
  border: 1px solid #e9d5ff;
  border-radius: var(--radius-md);
  padding: 20px 20px 18px;
}
.inline-cta h3 { font-size: 16px; margin-bottom: 8px; }
.inline-cta p  { font-size: 14px; margin-bottom: 14px; }

.article-disclaimer {
  font-size: 12.5px;
  color: var(--clr-muted);
  border-left: 3px solid var(--clr-border);
  padding: 12px 14px;
  background: var(--clr-slate-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 28px;
}

/* Sidebar */
.article-sidebar { padding-top: 4px; }

.sidebar-card {
  background: var(--clr-dark);
  color: #e5e7eb;
  border-radius: var(--radius-md);
  padding: 24px 22px;
  margin-bottom: 20px;
  position: sticky;
  top: 90px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  border: 1px solid #1e293b;
}
.sidebar-card h3     { font-size: 16px; color: #f1f5f9; margin-bottom: 8px; }
.sidebar-card p      { font-size: 13.5px; color: #94a3b8; margin-bottom: 14px; }
.sidebar-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-purple);
  margin-bottom: 8px;
  display: block;
}

.sidebar-card-light {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
  position: static;
}
.sidebar-card-light h3 { color: var(--clr-dark); }

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list li { margin-bottom: 6px; }
.toc-list a { font-size: 13.5px; color: var(--clr-purple); }

/* ══════════════════════════════════════════
   QUIZ
══════════════════════════════════════════ */
.quiz-section {
  padding: 48px 0 52px;
  background: radial-gradient(circle at top right, #faf5ff, #f1f5f9 70%);
}

.quiz-container { max-width: 820px; }

.quiz-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-purple);
  background: #e9d5ff;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.quiz-header h2 { font-size: 26px; margin-bottom: 8px; }
.quiz-header p  { font-size: 15px; color: #334155; }
.quiz-header small { font-size: 12px; color: var(--clr-muted); }

.quiz-form {
  margin-top: 26px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  border: 2px solid var(--clr-border);
}

.quiz-step-counter {
  font-size: 13px;
  color: var(--clr-muted);
  margin: 0 0 20px;
  font-weight: 600;
  text-align: center;
}
.quiz-progress {
  height: 6px;
  background: var(--clr-border);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 0;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-purple), var(--clr-orange));
  border-radius: 999px;
  transition: width .4s ease;
}

.quiz-step { display: none; }
.quiz-step.active { display: block; }

@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.quiz-step.shake { animation: shake .35s; }

.quiz-question {
  font-weight: 600;
  font-size: 15.5px;
  margin-bottom: 14px;
  color: var(--clr-dark);
}

.quiz-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--clr-border);
  margin-bottom: 12px;
  font-size: 14.5px;
  cursor: pointer;
  transition: all .2s ease;
  background: var(--clr-white);
  box-shadow: 0 2px 4px rgba(0,0,0,.04);
}
.quiz-option input { margin-top: 2px; cursor: pointer; flex-shrink: 0; accent-color: var(--clr-purple); }
.quiz-option:hover { 
  border-color: var(--clr-orange); 
  background: #fff7ed; 
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
}
.quiz-option:has(input:checked) { 
  border-color: var(--clr-purple); 
  background: #faf5ff; 
  box-shadow: 0 4px 12px rgba(139,92,246,.15);
  transform: translateY(-1px);
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--clr-border);
  flex-wrap: wrap;
}

.quiz-result {
  margin-top: 18px;
  border-radius: var(--radius-md);
  padding: 18px 18px 16px;
  border: 1px solid;
}
.quiz-result.result-low   { background: #fff7ed; border-color: #fed7aa; color: #7c2d12; }
.quiz-result.result-medium{ background: #fefce8; border-color: #fde68a; color: #713f12; }
.quiz-result.result-high  { background: #faf5ff; border-color: #e9d5ff; color: #581c87; }

.quiz-result h3 { margin-bottom: 8px; font-size: 17px; }
.quiz-result p  { font-size: 14px; margin-bottom: 12px; }

/* ══════════════════════════════════════════
   CALL / CALENDLY
══════════════════════════════════════════ */
.call-section {
  padding: 48px 0 52px;
  background: var(--clr-white);
  border-top: 1px solid var(--clr-border);
}

.call-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 36px;
  align-items: flex-start;
}

.call-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-purple);
  background: #ccfbf1;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}

.call-text h2 { font-size: 22px; margin-bottom: 12px; }
.call-text p  { font-size: 14.5px; }

.call-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.call-list li {
  font-size: 14px;
  padding: 5px 0;
  color: #334155;
}
.call-note  { font-size: 13px; color: var(--clr-muted); margin-bottom: 8px; }
.call-legal { font-size: 12px; color: var(--clr-muted); }
.call-legal a { color: var(--clr-teal); }

.call-widget {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section {
  padding: 48px 0 52px;
  background: var(--clr-dark);
  color: #e5e7eb;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: 36px;
  align-items: flex-start;
}

.contact-text h2 { font-size: 22px; color: #f1f5f9; margin-bottom: 12px; }
.contact-text p  { font-size: 14.5px; color: #94a3b8; }

.contact-info {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.contact-info li { font-size: 13.5px; color: #94a3b8; padding: 4px 0; }
.contact-info a  { color: #38bdf8; }

.contact-form {
  background: var(--clr-darker);
  border-radius: var(--radius-lg);
  padding: 22px 20px 18px;
  border: 1px solid #1f2937;
}

.form-row { margin-bottom: 12px; }
.form-row label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: #d1d5db;
}
.req { color: var(--clr-green); }

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 9px 11px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #374151;
  background: #0a0f1e;
  color: #e5e7eb;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 2px rgba(14,165,233,.2);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: #4b5563; }

.checkbox-row label.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: #9ca3af;
  cursor: pointer;
}
.checkbox-row input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--clr-purple);
}

.form-note {
  font-size: 11.5px;
  color: #6b7280;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Form Success/Error Messages */
.form-success-message,
.form-error-message {
  margin-top: 20px;
  padding: 24px 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.form-success-message {
  background: linear-gradient(135deg, #faf5ff, #fff7ed);
  border: 2px solid #8b5cf6;
  color: #581c87;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.form-success-message h3 {
  font-size: 20px;
  color: #581c87;
  margin-bottom: 12px;
}

.form-success-message p {
  font-size: 14.5px;
  color: #6b21a8;
  margin-bottom: 8px;
}

.form-success-redirect {
  font-size: 13px;
  color: #7c3aed;
  font-weight: 600;
  margin-top: 16px;
}

.form-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.form-error-message {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 2px solid #ef4444;
  color: #991b1b;
}

.form-error-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.form-error-message h3 {
  font-size: 20px;
  color: #991b1b;
  margin-bottom: 12px;
}

.form-error-message p {
  font-size: 14.5px;
  color: #b91c1c;
  margin-bottom: 16px;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: var(--clr-darker);
  color: #6b7280;
  padding: 0;
  border-top: 2px solid #dc2626;
}

/* Earnings Disclaimer Section */
.footer-disclaimer-section {
  background: #0f172a;
  padding: 20px 0;
  border-bottom: 1px solid #1f2937;
}

.footer-disclaimer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-disclaimer-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-disclaimer-icon {
  color: #dc2626;
  font-size: 18px;
  font-weight: 700;
}

.footer-disclaimer-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e5e7eb;
  margin: 0;
}

.footer-disclaimer-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: #d1d5db;
  margin: 0;
}

.footer-disclaimer-text strong {
  color: #fbbf24;
  font-weight: 600;
}

/* Main Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  padding: 32px 20px 24px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-logo .logo-mark {
  width: 36px;
  height: 36px;
  font-size: 14px;
  background: linear-gradient(135deg, #dc2626, #ea580c);
  color: #ffffff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-logo .logo-text {
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}

.footer-brand-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: #9ca3af;
  margin: 0 0 6px;
}

.footer-brand-text strong {
  color: #dc2626;
  font-weight: 600;
}

.footer-brand-legal {
  font-size: 12px;
  line-height: 1.7;
  color: #9ca3af;
  margin-top: 6px;
}

.footer-brand-legal a {
  color: inherit;
  text-decoration: none;
}

.footer-brand-legal a:hover {
  text-decoration: underline;
}

.footer-links {
  display: contents;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e5e7eb;
  margin: 0 0 4px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 4px;
  transition: color .15s;
  text-decoration: none;
}

.footer-col a:hover {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-col a.footer-cta-link {
  color: #dc2626;
  font-weight: 600;
  margin-top: 4px;
}

.footer-col a.footer-cta-link:hover {
  color: #f87171;
}

.footer-col a .footer-link-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-purple);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 14px 20px;
  background: #020617;
}

.footer-bottom-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 11.5px;
  color: #6b7280;
  margin: 0;
}

.footer-advertorial-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #92400e;
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s;
}

.footer-advertorial-badge:hover {
  background: #b45309;
  text-decoration: none;
}

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(2,6,23,.97);
  backdrop-filter: blur(6px);
  color: #e5e7eb;
  padding: 12px 16px 14px;
  display: none;
  border-top: 1px solid #1f2937;
}
.cookie-banner.show { display: block; }

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}
.cookie-inner p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 12.5px;
  color: #9ca3af;
  line-height: 1.55;
}
.cookie-inner a { color: #38bdf8; }
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */
.legal-page { padding: 40px 0 60px; }
.legal-page .article { max-width: 800px; }
.legal-page h1 { font-size: 28px; margin-bottom: 24px; color: var(--clr-dark); }
.legal-page h2 { font-size: 20px; margin-top: 28px; margin-bottom: 10px; }
.legal-page h3 { font-size: 17px; margin-top: 18px; }
.legal-page p, .legal-page li { font-size: 15px; }

/* Thanks page */
.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}
.thanks-section h1 { font-size: 30px; margin-bottom: 16px; }
.thanks-section .lead { font-size: 17px; }
.thanks-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid    { grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); gap: 24px; }
  .article-layout { grid-template-columns: minmax(0, 1fr); }
  .article-sidebar { display: none; }
  .call-grid    { grid-template-columns: minmax(0, 1fr) minmax(0, 3fr); gap: 24px; }
  .method-grid  { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

/* Mobile landscape */
@media (max-width: 860px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .hero-card    { position: static; }
  .call-grid    { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .method-grid  { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 640px) {
  .header-inner { padding: 12px 16px; gap: 12px; }
  .logo-text { display: none; }

  .nav-toggle { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-dark);
    border-top: 1px solid #1f2937;
    padding: 12px 16px 16px;
    flex-direction: column;
    gap: 0;
    z-index: 99;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #1f2937;
  }
  .main-nav a:last-child { border-bottom: none; }

  .hero { padding: 28px 0 24px; }
  .hero-text h1 { font-size: 23px; }
  .lead { font-size: 15px; }
  .hero-trust-row { justify-content: flex-start; }
  .news-meta-inner { padding-top: 8px; padding-bottom: 8px; }
  .news-meta-inner p { font-size: 12px; }

  .quiz-header h2 { font-size: 22px; }
  .quiz-form { padding: 16px 14px 14px; }

  .call-widget { padding: 8px; }
  .call-text h2 { font-size: 18px; }

  .contact-section { padding: 32px 0 36px; }
  .contact-form { padding: 16px 14px 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }

  .thanks-actions { flex-direction: column; }
  .thanks-actions a { width: 100%; text-align: center; }
}
