@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&family=Nunito:wght@400;600;700&display=swap');

:root {
  --bg: #fffdf9;
  --fg: #3a372f;
  --primary: #7f9b82;
  --primary-fg: #fbfbf7;
  --secondary: #d7a97f;
  --accent: #f3e7d9;
  --muted-fg: #787268;
  --border: #ebe3d8;
  --surface: #fffefb;
  --shadow-soft: 0 8px 24px -14px rgba(127, 155, 130, 0.18);
  --shadow-float: 0 20px 48px -26px rgba(215, 169, 127, 0.22);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Nunito', 'Trebuchet MS', sans-serif;
  color: var(--fg);
  background:
    radial-gradient(1100px 700px at -10% -20%, rgba(232, 196, 164, 0.2), transparent 48%),
    radial-gradient(900px 600px at 120% 20%, rgba(168, 194, 171, 0.18), transparent 46%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23a)' opacity='0.85'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Fraunces', Georgia, serif;
}

/* ─── STICKY HEADER ─── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(235, 227, 216, 0.82);
  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(12px);
}

.navbar {
  padding: 0.95rem 0;
  background: transparent;
}

.navbar-brand {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: auto;
  height: 2.5rem;
  max-width: 9.5rem;
  display: block;
  object-fit: contain;
}

.navbar-brand:hover { color: var(--secondary); }

.navbar-toggler { border-color: rgba(93, 112, 82, 0.28); }
.navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(93, 112, 82, 0.2); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44,44,36,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: var(--fg);
  font-weight: 600;
  margin: 0 0.7rem;
  padding: 0.4rem 0.15rem;
  border-bottom: 2px solid transparent;
  transition: all 300ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.language-switcher {
  margin-top: 0.65rem;
}

.language-toggle {
  min-height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(193, 140, 93, 0.55);
  background: rgba(255, 255, 255, 0.7);
  color: #5e5549;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  box-shadow: var(--shadow-soft);
}

.language-toggle:hover,
.language-toggle:focus {
  border-color: var(--secondary);
  color: var(--secondary);
  background: #fff;
}

.language-switcher .dropdown-menu {
  min-width: 11.5rem;
  border: 1px solid rgba(222, 216, 207, 0.9);
  border-radius: 0.95rem;
  box-shadow: var(--shadow-soft);
  padding: 0.42rem;
}

.language-switcher .dropdown-item {
  border-radius: 0.65rem;
  font-size: 0.92rem;
  padding: 0.5rem 0.65rem;
}

.language-switcher .dropdown-item.active,
.language-switcher .dropdown-item:active {
  background: rgba(193, 140, 93, 0.15);
  color: #5e5549;
}

.language-switcher .dropdown-item.disabled {
  color: #9a978f;
}

.notice-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid rgba(235, 227, 216, 0.82);
  border-bottom: 1px solid rgba(235, 227, 216, 0.82);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(249, 243, 236, 0.88));
}

.notice-strip p {
  margin: 0;
  padding: 0.85rem 0;
  color: #5d5b52;
  font-size: 0.98rem;
  line-height: 1.55;
  display: inline-flex;
  align-items: flex-start;
  gap: 0.65rem;
}

@media (min-width: 576px) {
  .notice-strip p {
    align-items: center;
  }
}

@media (min-width: 992px) {
  .language-switcher {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}

.notice-strip strong {
  color: var(--fg);
  font-weight: 700;
}

.notice-icon {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.12);
  color: var(--primary);
}

.notice-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── LAYOUT ─── */

main {
  padding-top: 0;
  padding-bottom: 0;
}

main > section {
  margin-bottom: 3.5rem;
}

main > .hero-bleed,
main > .faq-section-bleed {
  margin-bottom: 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.section-head .h2,
.section-head h2 {
  margin-bottom: 0.5rem;
}

.availability-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(222, 216, 207, 0.8);
  color: var(--muted-fg);
  font-size: 0.98rem;
  line-height: 1.65;
}

.availability-note strong {
  color: var(--fg);
}

/* Full-bleed hero direct onder de header (main heeft geen boven-padding) */
main.container > .hero-bleed:first-child {
  margin-top: 0;
}

/* Eerste subpagina-header zonder extra witruimte bovenaan */
main.container > .page-hero:first-child {
  margin-top: 0;
}

/* ─── PAGE HERO (full-bleed subpage header) ─── */

.page-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 3rem 0 2.2rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(760px 340px at 12% 18%, rgba(232, 196, 164, 0.16), transparent 58%),
    radial-gradient(700px 320px at 88% 20%, rgba(168, 194, 171, 0.12), transparent 55%),
    linear-gradient(180deg, #fff8f0 0%, #fbf2e8 48%, #fffdf9 100%);
}

.page-hero--flush {
  margin-bottom: 0;
  padding-bottom: 0.8rem;
}

.page-hero h1 {
  margin-bottom: 0.6rem;
}

.page-hero .muted {
  max-width: 42rem;
}

/* ─── HERO (homepage full-bleed) ─── */

.hero-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(760px 340px at 12% 18%, rgba(232, 196, 164, 0.2), transparent 58%),
    radial-gradient(700px 320px at 88% 20%, rgba(168, 194, 171, 0.14), transparent 55%),
    linear-gradient(180deg, #fff8f0 0%, #fbf1e6 48%, #fffcf8 100%);
}

.hero-bleed > .container {
  position: relative;
  z-index: 1;
}

/* ─── IMAGES ─── */

.hero-image,
.media-blob,
.media-arch {
  width: 100%;
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-float);
}

.hero-image,
.media-blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  border: 4px solid #fff;
  aspect-ratio: 1 / 1;
}

.hero-image {
  max-height: 480px;
  object-position: center 58%;
}

.media-arch {
  border-radius: 220px 220px 26px 26px;
  border: 4px solid #fff;
  aspect-ratio: 3 / 4;
  max-height: 420px;
  margin-inline: auto;
}

.media-loop {
  background: #f6f0e7;
}

.media-slider {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.media-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 220px 220px 26px 26px;
  border: 4px solid #fff;
  box-shadow: var(--shadow-float);
  background: rgba(255, 255, 255, 0.72);
}

.media-slider__track {
  display: flex;
  transition: transform 320ms ease;
  will-change: transform;
}

.media-slider__slide {
  min-width: 100%;
}

.media-slider__slide img {
  width: 100%;
  aspect-ratio: 4 / 4;
  display: block;
  object-fit: cover;
}

.media-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.media-slider__arrow {
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(199, 173, 147, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #8e6b51;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.media-slider__arrow:hover,
.media-slider__arrow:focus {
  background: #fff;
  color: #b77c4e;
  transform: translateY(-1px);
}

.media-slider__dots {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.media-slider__dot {
  width: 0.72rem;
  height: 0.72rem;
  border: 0;
  border-radius: 999px;
  background: rgba(199, 173, 147, 0.38);
  padding: 0;
  transition: transform 180ms ease, background 180ms ease;
}

.media-slider__dot.is-active {
  background: var(--primary);
  transform: scale(1.12);
}

/* ─── CARDS (unified) ─── */

.section-card {
  background: var(--surface);
  border: 1px solid rgba(235, 227, 216, 0.78);
  box-shadow: var(--shadow-soft);
  border-radius: 1.6rem;
  backdrop-filter: blur(4px);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -10px rgba(93, 112, 82, 0.15);
}

.cta-panel {
  background: linear-gradient(140deg, rgba(243, 231, 217, 0.42), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(235, 227, 216, 0.78);
  box-shadow: var(--shadow-soft);
  border-radius: 1.6rem;
  backdrop-filter: blur(4px);
}

/* ─── TRUST STRIP ─── */

.trust-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid rgba(235, 227, 216, 0.82);
  border-bottom: 1px solid rgba(235, 227, 216, 0.82);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.95), rgba(248, 242, 234, 0.88));
  margin-bottom: 3.5rem;
}

.trust-item {
  padding: 1.4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  border-right: 1px solid rgba(222, 216, 207, 0.6);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  color: var(--fg);
  display: block;
}

.trust-item span:last-child {
  font-size: 0.82rem;
  color: var(--muted-fg);
}

.trust-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.12);
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.trust-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── FEATURE ICON (card icon) ─── */

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(93, 112, 82, 0.14), rgba(193, 140, 93, 0.12));
  color: var(--primary);
}

.feature-icon svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── CHECK ITEMS (CTA panel list) ─── */

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--muted-fg);
  line-height: 1.5;
}

.check-dot {
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.15);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 0.05rem;
}

/* ─── AVAILABILITY NOTE ─── */

.availability-note {
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.6;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(222, 216, 207, 0.7);
  margin-top: 0.25rem;
}

.availability-note strong {
  color: var(--fg);
}

/* ─── PILLS & BADGES ─── */

.pill {
  display: inline-block;
  border-radius: 999px;
  padding: 0.38rem 0.9rem;
  background: #f4eadf;
  color: #726657;
  font-weight: 700;
  font-size: 0.84rem;
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 3rem;
  padding-block: 0.55rem;
  padding-inline: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
  transition: all 300ms ease;
}

.btn-brand {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-soft);
}

.btn-brand:hover,
.btn-brand:focus {
  background: #708a73;
  border-color: #708a73;
  color: var(--primary-fg);
  transform: scale(1.03);
  box-shadow: 0 12px 28px -16px rgba(127, 155, 130, 0.35);
}

.btn-outline-brand {
  border: 2px solid #c58f63;
  color: #b77c4e;
  background: transparent;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: #c58f63;
  color: #fff;
  border-color: #c58f63;
  transform: scale(1.03);
}

/* ─── FEATURE LIST ─── */

.feature-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted-fg);
  line-height: 1.85;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

.variant-card {
  background: rgba(254, 254, 250, 0.78);
  border: 1px solid rgba(222, 216, 207, 0.7);
  border-radius: 1.35rem;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.variant-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 1.05rem;
  box-shadow: var(--shadow-soft);
  background: var(--surface);
  padding: 0.75rem;
}

.variant-card h3 {
  margin: 0.9rem 0 0.25rem;
  font-size: 1.1rem;
}

.variant-card p {
  margin: 0;
  color: var(--muted-fg);
}

/* ─── COLOR PICKER (Product Page) ─── */

.color-picker-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(135deg, rgba(243, 231, 217, 0.42), rgba(250, 244, 236, 0.92));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.color-picker-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.6rem;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.color-preview-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.15s ease-in-out;
}

.color-swatches {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.color-swatch-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 4px solid transparent;
  outline: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s ease;
  position: relative;
}

.color-swatch-btn:hover {
  transform: scale(1.1);
}

.color-swatch-btn.active {
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 24px -6px rgba(93, 112, 82, 0.3);
}

.color-swatch-btn.active::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(93, 112, 82, 0.4);
}

.color-details {
  background: var(--surface);
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(222, 216, 207, 0.6);
  box-shadow: var(--shadow-soft);
}

.color-cta {
  margin-top: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(222, 216, 207, 0.6);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.color-cta p {
  margin-bottom: 1rem !important;
}

.color-cta .d-flex {
  margin-top: 0.9rem;
}

/* ─── SPEC GRID (product page) ─── */

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.5rem;
}

@media (max-width: 575.98px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.spec-icon {
  flex: 0 0 2.2rem;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgba(93, 112, 82, 0.13), rgba(193, 140, 93, 0.1));
  color: var(--primary);
  margin-top: 0.15rem;
}

.spec-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-item strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.1rem;
}

.spec-item span {
  font-size: 0.85rem;
  color: var(--muted-fg);
  line-height: 1.45;
}


.faq-accordion .accordion-item {
  border: 1px solid rgba(222, 216, 207, 0.7);
  border-radius: 1.2rem;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-section-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #fdf9f4, #fffdfb);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--fg);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  box-shadow: none;
  padding: 1.1rem 1.25rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(230, 220, 205, 0.35);
  color: var(--fg);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.18rem rgba(93, 112, 82, 0.16);
}

.faq-accordion .accordion-body {
  padding: 1.1rem 1.25rem 1.25rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

/* ─── TYPOGRAPHY ─── */

.display-4, .display-5, .display-6, .h3, .h4 {
  letter-spacing: 0.01em;
}

.muted {
  color: var(--muted-fg);
  line-height: 1.7;
}

a { color: #4f5f46; }
a:hover { color: #c18c5d; }

/* ─── TESTIMONIALS (use cases) ─── */

.testimonial-grid .section-head {
  max-width: 38rem;
}

.testimonial-card {
  text-align: center;
  padding: 1.75rem 1.5rem 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card__photo {
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.1rem;
}

.testimonial-card__quote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  color: var(--fg);
  flex: 1;
}

.testimonial-card__name {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
}

.testimonial-card__meta {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.45;
}

.testimonial-card__note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(120, 120, 108, 0.85);
}

.quote-disclaimer {
  max-width: 40rem;
}

.contact-hero-copy {
  max-width: 42rem;
}

.mini-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.mini-trust-card {
  padding: 1rem 1.1rem;
  border-radius: 1.15rem;
  background: rgba(254, 254, 250, 0.86);
  border: 1px solid rgba(222, 216, 207, 0.75);
  box-shadow: var(--shadow-soft);
}

.mini-trust-card strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
  color: var(--fg);
}

.mini-trust-card span {
  display: block;
  font-size: 0.88rem;
  color: var(--muted-fg);
  line-height: 1.45;
}

.contact-layout {
  align-items: start;
}

.lead-form-card,
.contact-detail-card,
.purchase-card {
  background: var(--surface);
  border: 1px solid rgba(222, 216, 207, 0.7);
  border-radius: 1.6rem;
  box-shadow: var(--shadow-soft);
}

.lead-form-card,
.contact-detail-card {
  padding: 1.5rem;
}

.lead-form-card h2,
.contact-detail-card h2,
.purchase-card h3 {
  margin-bottom: 0.75rem;
}

.lead-form-card .form-label {
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.lead-form-card .form-control,
.lead-form-card .form-select {
  min-height: 3rem;
  border-radius: 1rem;
  border: 1px solid rgba(193, 140, 93, 0.35);
  background: rgba(255, 255, 255, 0.92);
  color: var(--fg);
  box-shadow: none;
}

.lead-form-card textarea.form-control {
  min-height: 8.5rem;
  resize: vertical;
}

.lead-form-card .form-control:focus,
.lead-form-card .form-select:focus {
  border-color: rgba(93, 112, 82, 0.55);
  box-shadow: 0 0 0 0.18rem rgba(93, 112, 82, 0.12);
}

.contact-meta-list,
.inline-check-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-meta-list li,
.inline-check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted-fg);
  line-height: 1.55;
}

.meta-bullet {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.12);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.quick-action-card {
  padding: 1.35rem;
  height: 100%;
}

.quick-action-card h3 {
  margin-bottom: 0.45rem;
}

.quick-action-card p {
  margin-bottom: 1rem;
}

.support-note {
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.55;
}

.purchase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.purchase-card {
  padding: 1.35rem;
  height: 100%;
}

.purchase-card p:last-child {
  margin-bottom: 0;
}

.section-note {
  font-size: 0.92rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* ─── FOOTER ─── */

.site-footer {
  border-top: 1px solid rgba(222, 216, 207, 0.8);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(243, 231, 217, 0.34));
}

.site-footer.mt-5 {
  margin-top: 0 !important;
}

.footer-ecosystem {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(222, 216, 207, 0.65);
  font-size: 0.9rem;
  color: var(--muted-fg);
  line-height: 1.55;
}

.footer-ecosystem a {
  font-weight: 700;
  text-decoration: none;
}

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

.footer-links a {
  text-decoration: none;
  color: #4f5f46;
}

.footer-links a:hover { color: #c18c5d; }

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: #4f5f46;
  line-height: 1.35;
}

.contact-link:hover { color: #c18c5d; }

.contact-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(93, 112, 82, 0.1);
  color: var(--primary);
}

.contact-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 0.7rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(222, 216, 207, 0.8);
  }

  .nav-link {
    margin: 0;
    padding: 0.55rem 0;
  }

  .page-hero {
    padding: 2.4rem 0 1.75rem;
  }

  .content-block {
    padding: 1.5rem;
  }

  main > section {
    margin-bottom: 2.5rem;
  }

  main > .hero-bleed,
  main > .faq-section-bleed {
    margin-bottom: 0;
  }

  .page-hero--flush {
    padding-bottom: 0.65rem;
  }

  .mini-trust-grid,
  .purchase-grid {
    grid-template-columns: 1fr;
  }
}
