@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&family=DM+Serif+Display&display=swap');

:root {
  --navy: #0f1f2e;
  --navy-dark: #091420;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-light: #eff6ff;
  --green: #10b981;
  --bg: #f8f9fb;
  --white: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --font: 'DM Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;
}

.gp-.gp-body {
  font-family: var(--font);
  color: var(--text);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  background-color: var(--white);
}

.gp-body, .gp-body * { box-sizing: border-box; }
.gp-a { text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TOPBAR */
.topbar {
  background-color: var(--navy-dark);
  color: #94a3b8;
  font-size: 11px;
  padding: 9px 0;
  letter-spacing: 0.3px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-right { color: #cbd5e1; }
.topbar-center .gp-a { color: inherit; text-decoration: underline; }

/* NAVBAR */
.navbar {
  background-color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-light);
  display: block;
  font-weight: 500;
}
.nav-contact {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

/* HERO */
.hero {
  background-color: var(--bg);
  padding: 56px 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.tag-pill {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 20px 0;
}
.hero-p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 0 18px 0;
}
.img-slider {
  position: relative;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  background: #e8edf2;
}
.img-slide {
  display: none;
  width: 100%;
}
.img-slide.active { display: block; }
.img-slide .gp-img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.img-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 10px 0 18px;
}
.img-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.img-dot.active { background: var(--accent); }
.hero-caption {
  font-size: 11px;
  font-style: italic;
  color: #94a3b8;
  margin-bottom: 18px;
}
.check-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.check-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  padding: 7px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
}
.check-pill-icon { color: var(--green); font-size: 13px; font-weight: bold; }

/* FORM BOX */
.form-box {
  background: var(--white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
  position: relative;
}
.form-badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--white);
  color: var(--accent);
  border: 1px solid #bfdbfe;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}
.form-box-h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
}
.form-box-sub {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 22px;
}
.form-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.form-checklist .gp-li {
  font-size: 13px;
  color: var(--text);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.form-checklist .gp-li:last-child { border-bottom: none; }
.form-checklist .ck { color: var(--green); font-weight: bold; font-size: 15px; flex-shrink: 0; }
.form-price {
  background: var(--bg);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-label { font-size: 12px; color: var(--text-light); font-weight: 500; }
.price-val { font-size: 28px; font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.form-cta-btn {
  display: block;
  width: 100%;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border-radius: 7px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.2px;
}
.form-cta-btn:hover { background: var(--accent-hover); }
.form-note {
  font-size: 11px;
  text-align: center;
  color: #94a3b8;
  margin-top: 14px;
}

/* SECTION GENERIC */
.section {
  padding: 64px 0;
}
.section-bg { background: var(--bg); }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 36px;
  line-height: 1.3;
}
.section-center { text-align: center; }

/* REASONS GRID */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reason-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.reason-icon { font-size: 28px; margin-bottom: 16px; }
.reason-card .gp-h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.reason-card .gp-p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

/* HOW IT WORKS */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.hiw-item { text-align: center; }
.hiw-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.hiw-item .gp-h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
}
.hiw-item .gp-p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

/* TESTIMONIALS - PREMIUM DESIGN */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.testi-card {
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.testi-stars { 
  color: #fbbf24; 
  font-size: 16px; 
  margin-bottom: 16px; 
  letter-spacing: 2px;
}
.testi-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 24px;
  font-style: italic;
  font-weight: 500;
  position: relative;
}
.testi-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testi-author { 
  font-size: 14px; 
  font-weight: 700; 
  color: var(--navy); 
  margin: 0 0 2px; 
}
.testi-loc { 
  font-size: 12px; 
  color: var(--text-light); 
  margin: 0; 
}
.testi-disclaimer { 
  text-align: center;
  font-size: 12px; 
  color: #94a3b8; 
  margin-top: 20px; 
}

/* FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.faq-q-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding-right: 20px;
}
.faq-icon {
  font-size: 18px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  padding-bottom: 0;
}
.faq-item.active .faq-ans {
  max-height: 200px;
  padding-bottom: 18px;
}

/* CTA */
.cta-section {
  background: var(--navy);
  padding: 56px 0;
  text-align: center;
}
.cta-section .gp-h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: white;
  margin: 0 0 14px;
}
.cta-section .gp-p {
  font-size: 15px;
  color: #94a3b8;
  margin: 0 0 30px;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 7px;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-btn:hover { background: var(--accent-hover); }

/* FOOTER */
.footer {
  background: var(--navy-dark);
  padding: 48px 0 24px;
  color: #94a3b8;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-addr { line-height: 1.7; margin-bottom: 12px; }
.footer .gp-h4 {
  color: #e2e8f0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 14px;
  font-weight: 700;
}
.footer .gp-ul { list-style: none; padding: 0; margin: 0; }
.footer .gp-ul .gp-li { margin-bottom: 9px; }
.footer .gp-ul .gp-a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer .gp-ul a:hover { color: #cbd5e1; }
.footer-bottom {
  border-top: 1px solid #1e3a5f;
  padding-top: 24px;
  line-height: 1.7;
}
.footer-bottom .gp-a { color: #94a3b8; text-decoration: underline; }
.footer-bottom .gp-p { margin: 0 0 10px; }

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s;
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #cbd5e1;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  line-height: 1.6;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .gp-a { color: #93c5fd; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--accent);
  color: white;
  transition: background 0.2s;
}
.cookie-btn:hover { background: var(--accent-hover); }
.cookie-btn-outline {
  background: transparent;
  border: 1px solid #475569;
  color: #94a3b8;
}
.cookie-btn-outline:hover { background: #1e293b; }

/* CONTENT PAGES */
.content-wrap { padding: 56px 0; background: var(--bg); }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.main-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
}
.breadcrumb {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 22px;
}
.breadcrumb .gp-a { color: var(--accent); text-decoration: none; }
.main-article .gp-h1 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 20px;
  line-height: 1.25;
}
.main-article .gp-h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 14px;
}
.main-article .gp-p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 18px;
}
.main-article .gp-img {
  width: 100%;
  border-radius: 8px;
  margin: 18px 0;
}
.main-article .gp-ul { padding-left: 20px; margin-bottom: 18px; }
.main-article .gp-li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 8px;
}
.Daten-wrapper { overflow-x: auto; max-width: 100%; margin: 20px 0; border: 1px solid var(--border); border-radius: 6px; }
.Daten-table { width: 100%; border-collapse: collapse; margin: 0; font-size: 13px; display: block; overflow-x: auto; white-space: nowrap; max-width: 100%; }
.Daten-table .gp-th, .Daten-table .gp-td { padding: 8px 16px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); text-align: left; }
.Daten-table .gp-th:last-child, .Daten-table .gp-td:last-child { border-right: none; }
.Daten-table .gp-th { background: #f8f9fb; font-weight: 700; color: #000; }
.Daten-table td.hl, .Daten-table .gp-td.hl { background: #eff6ff; font-weight: 600; color: #16a34a; }
.verdict-box {
  background: var(--bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.verdict-box .gp-p { font-size: 14px; line-height: 1.7; margin: 0; color: var(--text); }

/* SIDEBAR */
.sidebar { }
.side-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}
.side-box .gp-h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.side-img {
  width: 100%;
  border-radius: 7px;
  margin-bottom: 14px;
}
.side-price-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.side-price { font-size: 26px; font-weight: 900; color: var(--navy); letter-spacing: -1px; }
.side-cta {
  display: block;
  width: 100%;
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 8px;
}
.side-cta:hover { background: var(--accent-hover); }
.side-note { font-size: 11px; text-align: center; color: #94a3b8; }
.mini-list { list-style: none; padding: 0; margin: 0; }
.mini-list .gp-li {
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  display: flex;
  gap: 7px;
  align-items: center;
}
.mini-list .gp-li:last-child { border: none; }
.mini-list .dot { color: var(--green); font-weight: bold; }

/* Vergleich PAGE */
.cmp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cmp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.cmp-card.highlight { border: 2px solid var(--accent); box-shadow: 0 12px 32px rgba(37,99,235,0.1); transform: translateY(-8px); }
.cmp-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.cmp-name { font-size: 20px; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.cmp-brand { font-size: 11px; color: #9ca3af; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; display: block; }
.cmp-list { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.cmp-list .gp-li { font-size: 13px; padding: 8px 0 8px 22px; border-bottom: 1px solid var(--border); position: relative; color: var(--text); line-height: 1.4; }
.cmp-list li.ok::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: bold; }
.cmp-list li.no::before { content: "✗"; position: absolute; left: 0; color: #ef4444; font-weight: bold; }
.cmp-btn {
  display: block;
  background: var(--accent);
  color: white;
  padding: 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.cmp-btn:hover { background: var(--accent-hover); }
.cmp-btn-sec {
  display: block;
  background: #f1f5f9;
  color: var(--text-light);
  padding: 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
}

/* LEGAL / CONTACT PAGES */
.legal-wrap { padding: 56px 0; background: var(--bg); }
.legal-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px;
}
.legal-box .gp-h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 24px;
  font-weight: 400;
}
.legal-box .gp-h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 12px;
}
.legal-box .gp-p, .legal-box .gp-li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0 0 14px;
}
.legal-box .gp-a { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .reasons-grid, .hiw-grid, .testi-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cmp-grid { grid-template-columns: 1fr; }
  .cmp-card.highlight { transform: none; }
  .hero-h1 { font-size: 30px; }
  .legal-box { padding: 28px 20px; }
  .cookie-banner { flex-direction: column; text-align: center; }
}

/* DAILY GADGET Testberichte FLAT DESIGN OVERRIDES */
.container { max-width: 800px; padding: 0 15px; }

/* Colors & Typography */
.gp-body {
    font-family: Arial, Helvetica, sans-serif !important;
    background-color: #ffffff !important;
}

/* Header */
.navbar {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #000;
    padding: 10px 0;
}
.navbar .container {
    justify-content: center;
}
.logo-wrap { justify-content: center; width: 100%; text-align: center; }
.logo-icon { background: transparent; color: #E63946; font-size: 24px; width:auto; height:auto; } /* Daily Gadget uses red/blue */
.logo-text { color: #1D3557; text-transform: uppercase; font-family: Impact, sans-serif, Arial; font-weight: normal; font-size: 24px; letter-spacing: 1px; }
.logo-sub { display: none; }
.nav-contact { display: none; }

/* Enforce 1-column layout everywhere */
.hero .container, .content-grid, .reasons-grid, .hiw-grid, .testi-grid, .footer-grid, .cmp-grid {
    display: block !important;
}

.hero { padding: 20px 0 0 0 !important; background: #fff !important; }

/* Huge Left-Aligned Headers */
.hero-h1 {
    font-family: 'Times New Roman', Times, serif !important;
    font-size: 38px !important;
    font-weight: bold !important;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Yellow Info Box */
.form-box, .side-box {
    background-color: #fff9c4 !important;
    border: 2px solid #fbc02d !important;
    border-radius: 0 !important;
    padding: 20px !important;
    box-shadow: none !important;
    margin: 30px 0 !important;
    text-align: left;
}
.form-badge {
    background-color: #E63946 !important;
    color: #fff !important;
    border: none !important;
}

/* Bright Green CTA Buttons */
.form-cta-btn, .cta-btn, .side-cta, .cmp-btn, .vg-btn {
    background: linear-gradient(180deg, #34d35e 0%, #16a34a 100%) !important;
    border: 1px solid #15803d !important;
    border-radius: 4px !important;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1) !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px !important;
}
.form-cta-btn:hover, .cta-btn:hover, .side-cta:hover, .cmp-btn:hover, .vg-btn:hover {
    background: linear-gradient(180deg, #16a34a 0%, #15803d 100%) !important;
}

/* Clean up lists */
.check-pills, .form-checklist { flex-direction: column; align-items: flex-start; }
.check-pill { border: none !important; padding: 5px 0 !important; }

/* Footer */
.footer { background: #000 !important; color: #888 !important; text-align: center; padding: 40px 0 !important; font-size: 11px !important; }
.footer .gp-h4 { display: none !important; }
.footer-logo { display: none !important; }
.footer-addr { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 20px !important; }
.footer-grid { display: flex !important; flex-direction: column; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px !important; }
.footer-grid .gp-div { text-align: center; width: 100%; }
.footer-grid .gp-ul { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; padding: 0 !important; margin: 0 !important; }
.footer-grid .gp-li { margin: 0 !important; border: none !important; padding: 0 !important; }
.footer-grid .gp-li::before { display: none !important; }
.footer-bottom { border-top: 1px solid #222 !important; padding-top: 20px !important; }
.footer-bottom .gp-p { text-align: center; color: #666 !important; font-size: 10px !important; max-width: 800px; margin: 0 auto 10px !important; }
.footer .gp-a { color: #888 !important; text-decoration: none !important; }
.footer .gp-a:hover { color: #bbb !important; }

/* Helper Classes to replace inline styles */
.margin-bottom-4 { margin: 0 0 4px !important; }
.margin-0 { margin: 0 !important; }
.margin-top-4 { margin: 4px 0 0 !important; }
.text-left { text-align: left !important; }
.font-size-13 { font-size: 13px !important; }
.text-gray { color: #64748b !important; }
.margin-bottom-12 { margin: 0 0 12px !important; }
.bg-navy { background: #0f1f2e !important; }
.margin-top-30 { margin-top: 30px !important; }
.color-accent { color: var(--accent) !important; }
.padding-top-56 { padding-top: 56px !important; }
.margin-bottom-40 { margin-bottom: 40px !important; }
.max-width-600-center { max-width: 600px; margin: 0 auto !important; }
.font-size-15 { font-size: 15px !important; }
.table-container { background: white !important; border: 1px solid var(--border) !important; border-radius: 10px !important; padding: 36px !important; margin-top: 48px !important; }
.table-header-h2 { text-align: center !important; font-size: 22px !important; font-weight: 700 !important; color: var(--navy) !important; margin: 0 0 24px !important; }
.verdict-container { background: var(--navy) !important; border-radius: 10px !important; padding: 36px !important; margin-top: 36px !important; text-align: center !important; }
.verdict-h2 { color: white !important; font-size: 24px !important; margin: 0 0 16px !important; font-family: var(--font-serif) !important; font-weight: 400 !important; }
.verdict-p { color: #94a3b8 !important; font-size: 15px !important; max-width: 680px !important; margin: 0 auto 24px !important; line-height: 1.7 !important; }
.color-white { color: white !important; }
