/* =====================================================
   BedrijvenAlert.be — Production Stylesheet
   ===================================================== */

/* CSS Custom Properties */
:root {
  --accent: #B45309;
  --accent-dark: #92400E;
  --accent-light: #FEF3C7;
  --text: #111827;
  --subtext: #6B7280;
  --border: #E5E7EB;
  --card-bg: #F9FAFB;
  --white: #FFFFFF;
  --footer-bg: #111827;
  --footer-link: #9CA3AF;
  --success: #059669;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --radius: 8px;
  --transition: 0.2s ease;
}

/* =====================================================
   Reset & Normalize
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul, ol {
  list-style: none;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

/* =====================================================
   Typography
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
  margin-bottom: 1rem;
  color: var(--text);
}

p:last-child {
  margin-bottom: 0;
}

strong { font-weight: 600; }
em { font-style: italic; }

small {
  font-size: 0.85rem;
  color: var(--subtext);
}

/* =====================================================
   Layout
   ===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

.section-sm {
  padding: 2rem 0;
}

.section-lg {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--subtext);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* =====================================================
   Buttons
   ===================================================== */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.05rem;
}

/* =====================================================
   Cards
   ===================================================== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(180,83,9,0.15), var(--shadow-md);
}

/* =====================================================
   Badges
   ===================================================== */
.badge-soon {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 0.4rem;
}

.badge-new {
  display: inline-block;
  background: #065F46;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 0.4rem;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
  background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 40%, #FDE68A 100%);
  padding: 5rem 0 4rem;
  text-align: center;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--subtext);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   Navigation / Header
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}

.site-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  display: block;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--card-bg);
  color: var(--accent);
}

/* Dropdown */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: 0.4rem 0;
  z-index: 200;
}

.has-dropdown:hover .dropdown {
  display: block;
}

.has-dropdown .dropdown li a {
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 0.875rem;
}

/* Hamburger */
.hamburger {
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.hamburger:hover {
  background: var(--card-bg);
}

/* Mobile nav open state */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  gap: 0.25rem;
  box-shadow: var(--shadow-md);
  align-items: flex-start;
  z-index: 99;
}

.nav-open .nav-links a {
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
  width: 100%;
}

.nav-open .has-dropdown .dropdown {
  position: static;
  box-shadow: none;
  border: none;
  padding: 0 0 0 1rem;
  display: block;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .nav-open .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0;
    align-items: center;
  }

  .nav-open .has-dropdown .dropdown {
    position: absolute;
    display: none;
    padding: 0.4rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
  }

  .nav-open .has-dropdown:hover .dropdown {
    display: block;
  }
}

/* =====================================================
   Footer
   ===================================================== */
.site-footer {
  background: var(--footer-bg);
  color: #D1D5DB;
  padding: 3.5rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .site-logo {
  color: var(--white);
  font-size: 1.2rem;
}

.footer-brand p {
  color: var(--footer-link);
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul li a {
  color: var(--footer-link);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 2.5rem;
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #6B7280;
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom a {
  color: #6B7280;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* =====================================================
   Pricing Table
   ===================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(180,83,9,0.2);
  position: relative;
}

.pricing-card.featured::before {
  content: "Populairste keuze";
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}

.pricing-name {
  font-size: 1rem;
  font-weight: 700;
}

.pricing-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.pricing-price span {
  font-size: 0.875rem;
  color: var(--subtext);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--subtext);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.pricing-features li .check {
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-features li .cross {
  color: #9CA3AF;
  flex-shrink: 0;
}

/* =====================================================
   FAQ Accordion
   ===================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  gap: 1rem;
}

.faq-question:hover {
  background: var(--card-bg);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--subtext);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* =====================================================
   Steps
   ===================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item h3 {
  font-size: 1.05rem;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--subtext);
}

/* =====================================================
   Doelgroep Grid
   ===================================================== */
.doelgroep-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .doelgroep-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doelgroep-tile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.doelgroep-tile:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  color: var(--text);
}

.doelgroep-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.doelgroep-tile h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.doelgroep-tile p {
  font-size: 0.875rem;
  color: var(--subtext);
  margin: 0;
}

/* =====================================================
   Product Grid
   ===================================================== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-md);
}

.product-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.product-features li {
  font-size: 0.875rem;
  color: var(--subtext);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.product-price {
  font-size: 0.875rem;
  color: var(--subtext);
}

.product-price strong {
  color: var(--accent);
  font-size: 1.1rem;
}

/* =====================================================
   Blog Grid
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  color: var(--text);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--subtext);
}

.blog-card h2, .blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--subtext);
  margin: 0;
}

.blog-readmore {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* =====================================================
   Breadcrumb
   ===================================================== */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  list-style: none;
  font-size: 0.85rem;
  color: var(--subtext);
  margin-bottom: 1.5rem;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.25rem;
  color: #D1D5DB;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb a {
  color: var(--subtext);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* =====================================================
   Trust Section
   ===================================================== */
.trust-section {
  background: var(--card-bg);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}

.trust-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.trust-logo-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust-logo span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--subtext);
}

/* =====================================================
   Feature Blocks
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.feature-block h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.feature-block p {
  font-size: 0.875rem;
  color: var(--subtext);
  margin: 0;
}

/* =====================================================
   Use Cases
   ===================================================== */
.use-cases {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.use-case {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.use-case-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.1rem;
}

.use-case p {
  margin: 0;
  color: var(--text);
  font-style: italic;
}

/* =====================================================
   Pijnpunten
   ===================================================== */
.pijnpunten-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 640px;
}

.pijnpunt {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pijnpunt-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pijnpunt p {
  margin: 0;
  font-size: 0.925rem;
}

/* =====================================================
   Alerts / Success Messages
   ===================================================== */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background: #D1FAE5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}

.alert-info {
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid #FCD34D;
}

#success-message {
  display: none;
}

/* =====================================================
   Forms
   ===================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.65rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180,83,9,0.12);
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: #DC2626;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--subtext);
}

/* Inline email form */
.inline-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: flex-end;
}

.inline-form input[type="email"] {
  flex: 1;
  min-width: 220px;
}

/* =====================================================
   Disclaimer / Info Boxes
   ===================================================== */
.disclaimer-box {
  background: var(--accent-light);
  border: 1px solid #FCD34D;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #92400E;
  margin: 1.5rem 0;
}

/* =====================================================
   Combine / CTA Section
   ===================================================== */
.cta-section {
  background: var(--accent);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

/* Combine cards */
.combine-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .combine-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.combine-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.combine-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  color: var(--text);
}

/* =====================================================
   Page Content / Articles
   ===================================================== */
.page-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.page-intro p {
  font-size: 1.05rem;
  color: var(--subtext);
  line-height: 1.7;
}

.content-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.content-body p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.content-body ul, .content-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }

.content-body li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

/* TOC */
.toc {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.toc h2 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.toc ol {
  list-style: decimal;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.toc li a {
  font-size: 0.9rem;
  color: var(--accent);
}

/* =====================================================
   Data Table (AV / company info)
   ===================================================== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
  margin: 1.5rem 0;
}

.data-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.data-table td:first-child {
  font-weight: 600;
  width: 40%;
  color: var(--text);
}

.data-table td:last-child {
  color: var(--subtext);
}

/* =====================================================
   Accessibility
   ===================================================== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

/* =====================================================
   Utility Classes
   ===================================================== */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.color-accent { color: var(--accent); }
.color-subtext { color: var(--subtext); }

.bg-card { background: var(--card-bg); }
.bg-amber { background: var(--accent-light); }

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
  .site-header,
  .site-footer,
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .hamburger,
  nav {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}
