/*
 * Simply Built — Design System
 * Pure HTML/CSS · No Framework · Maximale PageSpeed Performance
 * ─────────────────────────────────────────────────────────
 */

/* ── 0. Fonts ─────────────────────────────────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-800.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-900.woff2') format('woff2');
}


/* ── 1. CSS Variables ─────────────────────────────────── */
:root {
  --primary:       #164E63;   /* Slate/Teal blue */
  --primary-dark:  #0F3847;   
  --accent:        #f97316;   /* Simply Built oranje */
  --accent-hover:  #ea6a00;
  --text-heading:  #334155;
  --text-main:     #475569;
  --text-muted:    #94a3b8;
  --border:        #f1f5f9;
  --bg-subtle:     #f4f7f9;
  --white:         #ffffff;

  /* Typografie */
  --font-base:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading:  'Inter', sans-serif;

  /* Kleuren helper */
  --text:          #ffffff;

  /* Spacing */
  --container-max: 1200px;
  --container-pad: 2rem;
}

/* ── 2. Reset & Base ──────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 800;
  line-height: 1.1;
}

/* ── 3. Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: 5.5rem;
}

.section-sm {
  padding-block: 4rem;
}

/* ── 4. DONKERE SECTIES & ACHTERGROND PIJL ────────────── */
.is-dark {
  position: relative;
  overflow: hidden;
}

.is-dark::before,
.footer::before,
.pricing-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../assets/svg/pijl-simplybuilt.svg');
  background-position: 90% center;
  background-size: 350px;
  background-repeat: no-repeat;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* Aanpassing voor de lichte pricing-grid achtergrond */
.pricing-grid::before {
  filter: invert(0.8);
}

.pricing-grid {
  position: relative;
}

/* Zorg dat content boven de pijl blijft */
.is-dark > *,
.footer > *,
.pricing-grid > * {
  position: relative;
  z-index: 1;
}

/* ───────────────────────────────────────────────────────── */

/* ── 5. NAVBAR ────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  height: 72px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.95);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.navbar__logo img {
  height: 48px;
  width: auto;
}

/* Nav links */
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.navbar__nav a {
  display: inline-block;
  padding: 1.5rem 0.5rem 1.25rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-heading);
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.navbar__nav a:hover,
.navbar__nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  padding: 0.5rem;
  border-radius: 8px;
  min-width: 220px;
  list-style: none;
  z-index: 100;
  border: 1px solid #e2e8f0;
}

@media (min-width: 769px) {
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    display: flex;
  }
}

.dropdown a {
  padding: 0.75rem 1rem !important;
  color: var(--text-heading) !important;
  border-bottom: none !important;
  border-radius: 6px;
  width: 100%;
}

.dropdown a:hover {
  background: var(--bg-subtle);
  color: var(--primary) !important;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image: linear-gradient(105deg, rgba(22, 78, 99, 0.08) 0%, rgba(22, 78, 99, 0) 55%);
  padding-block: 7rem 7rem;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero__text {
  max-width: 600px;
}

/* Visueel element rechts - Pijlen door elkaar gemengd */
.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background-image: 
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 5L19 14H15L15 7.828L6.414 16.414L3.586 13.586L12.172 5H6V1H19V5Z' fill='%23164E63' fill-opacity='0.05'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 5L19 14H15L15 7.828L6.414 16.414L3.586 13.586L12.172 5H6V1H19V5Z' fill='%23164E63' fill-opacity='0.8'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 5L19 14H15L15 7.828L6.414 16.414L3.586 13.586L12.172 5H6V1H19V5Z' fill='%2364748b' fill-opacity='0.15'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 5L19 14H15L15 7.828L6.414 16.414L3.586 13.586L12.172 5H6V1H19V5Z' fill='%23f97316' fill-opacity='0.1'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 5L19 14H15L15 7.828L6.414 16.414L3.586 13.586L12.172 5H6V1H19V5Z' fill='%23164E63' fill-opacity='0.3'/%3E%3C/svg%3E");
  background-position: 
    80% -10%,
    45% 60%,
    10% 20%,
    20% 80%,
    90% 70%;
  background-size: 
    380px,
    140px,
    220px,
    180px,
    100px;
  background-repeat: no-repeat;
}

.big-arrow {
  display: none;
}

/* Geroteerd pijlpatroon — enkel rechts van de hero */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24'%3E%3Cg transform='rotate(45 12 12)'%3E%3Cpath d='M12 4L4 12H9V20H15V12H20L12 4Z' fill='%231a2e4a' fill-opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 64px 64px;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3125rem 0.875rem;
  margin-bottom: 1.5rem;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 99px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.hero__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Headline */
.hero__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

/* Subtekst */
.hero__sub {
  font-size: 1.125rem;
  color: var(--text-heading);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* Knoppen in Hero */
.hero .btn-primary {
  background: var(--btn-bg, var(--primary));
}

.hero .btn-primary:hover {
  background: var(--btn-bg-hover, var(--primary-dark));
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hamburger (mobiel) — verborgen op desktop */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px 0;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── 6. Gedeelde Knoppen ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

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

.btn-accent:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid #e2e8f0;
}

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

/* ── 7. Pakketten (Pricing) ───────────────────────────── */
.pricing {
  background: var(--bg-subtle);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 2.25rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 30px -5px rgba(249,115,22,0.12);
}

.card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 99px;
  white-space: nowrap;
}

.card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.card__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.anchor-price {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.action-price {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.1;
  margin: 0.125rem 0;
}

.monthly-price {
  font-size: 0.9375rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

/* Feature list met SB pijl als bullet */
.feature-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  flex-grow: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-top: 0.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M12 4L4 12H9V20H15V12H20L12 4Z' fill='%23f97316'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ── 8. Sectie Headers ────────────────────────────────── */
.section-header {
  max-width: 600px;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-main);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ── 9. Footer ────────────────────────────────────────── */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding-block: 5rem 3rem;
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer__logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer__list {
  list-style: none !important;
  list-style-type: none !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.footer__list a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.15s;
}

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

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__logo {
    margin-inline: auto;
  }
  
  .footer__list {
    align-items: center;
  }
}

/* ── 10. Prijzen Voetnoot ─────────────────────────────── */
.pricing-footnote {
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

/* ── 11. Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero::after {
    width: 100%;
    opacity: 0.5;
  }

  .hero__score {
    max-width: 220px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 1.25rem;
  }

  .navbar__nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0;
    align-items: stretch;
  }

  .navbar__nav.is-open {
    display: flex;
  }

  .navbar__nav a {
    padding: 0.75rem 1rem;
    border-radius: 6px;
  }

  .navbar__cta {
    margin-left: 0;
  }

  .navbar__hamburger {
    display: flex;
  }

  .hero {
    padding-block: 3.5rem 3rem;
  }

  .hero {
    padding-block: 3.5rem 3rem;
  }

  /* Footer Mobiel */
  .footer {
    padding-bottom: 120px;
  }

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .footer__links a {
    padding: 0.5rem 2rem;
    display: inline-block;
  }
}

/* ── 12. Legal Subpagina's ────────────────────────────── */
.legal-content {
  padding-block: 4rem 6rem;
  max-width: 800px;
  margin-inline: auto;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.legal-content > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-heading);
}

.legal-content p, .legal-content li {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li::marker {
  color: var(--accent);
}

/* ── 13. Formulieren (Contact) ───────────────────────── */
.contact-form__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-form__cols {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-heading);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="url"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 78, 99, 0.1);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--accent);
  cursor: pointer;
}

/* ── 14. Cookie Banner ────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  max-width: 400px;
  background: var(--white);
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  z-index: 10000;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-main);
  margin: 0;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-banner__btn {
  flex: 1;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}

.cookie-banner__btn--accept {
  background: var(--accent);
  color: var(--white);
  border: none;
}

.cookie-banner__btn--accept:hover {
  background: #ea580c;
  transform: translateY(-1px);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.cookie-banner__btn--decline:hover {
  background: var(--bg-subtle);
  border-color: #cbd5e1;
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 0;
    right: 0;
    left: 0;
    max-width: none;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
  }
}

/* ── 15. Form Feedback & Helpers ──────────────────────── */
.is-hidden {
  display: none !important;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  display: none;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-message--success {
  display: block;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message--error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fee2e2;
}

.btn--loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--loading::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 0.75rem;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── 16. Trust Banner ────────────────────────────────── */
.trust-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f0fdf4; /* Light green for trust */
  border: 1px solid #bbf7d0;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
  color: #166534;
  font-weight: 600;
  font-size: 1rem;
  animation: slideIn 0.5s ease-out;
}

.trust-banner svg {
  flex-shrink: 0;
  color: #22c55e;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
