/* ==========================================================================
   JouwHoutenTafel Landing Page Styles
   Aligned with the refreshed JHT brand (olijf #a29974, terracotta #d5947d,
   crème #efeee3, fonts Inter + IBM Plex Sans).
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Targeted margin reset — leaves form controls (input/select/textarea) alone */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}
ul, ol {
  padding: 0;
}

:root {
  /* Brand palette */
  --color-olive: #a29974;
  --color-olive-dark: #8c8463;
  --color-olive-deep: #51461b;
  --color-coral: #d5947d;
  --color-coral-dark: #c47e66;
  --color-cream: #efeee3;
  --color-cream-soft: #f7f5ec;

  /* Neutral */
  --color-black: #111111;
  --color-button: #000000;
  --color-button-hover: #1f1f1f;
  --color-text: #222222;
  --color-text-light: #555555;
  --color-text-muted: #757575;
  --color-border: #e5e3da;
  --color-bg: #ffffff;
  --color-star: #f5a623;
  --color-white: #ffffff;

  /* Typography */
  --font-body: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --max-width: 1170px;
  --section-padding: 80px 0;

  /* Style tokens */
  --radius: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --shadow: 0 2px 10px rgba(81, 70, 27, 0.08);
  --shadow-hover: 0 12px 32px rgba(81, 70, 27, 0.14);
  --transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-olive-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-coral);
}

/* Default underline for body-copy links — paragraphs and the two known body
   contexts (FAQ answers, HPL note). Nav anchors (header/footer/topbar lists,
   product cards, .btn) sit in their own selectors and aren't affected. */
p a,
.faq-item__answer-inner a,
.hpl-colors-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-black);
}

h1 {
  font-size: 2.625rem;        /* 42px — matches site h1 */
  line-height: 1.2;
  letter-spacing: -1.1px;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;        /* 30px */
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;          /* 24px */
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.125rem;        /* 18px */
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.1px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.1;
}

.btn-primary {
  background: var(--color-button);
  color: var(--color-white);
  border: 1.5px solid var(--color-button);
}

.btn-primary:hover {
  background: var(--color-button-hover);
  border-color: var(--color-button-hover);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-black);
  border: 1.5px solid var(--color-black);
}

.btn-outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

.btn-accent {
  background: var(--color-coral);
  color: var(--color-white);
  border: 1.5px solid var(--color-coral);
}

.btn-accent:hover {
  background: var(--color-coral-dark);
  border-color: var(--color-coral-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-black);
  border: 1.5px solid var(--color-white);
}

.btn-white:hover {
  background: var(--color-cream);
  border-color: var(--color-cream);
  color: var(--color-black);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 9px 16px;
  font-size: 0.875rem;
}

/* ---------- Focus state ----------
   Visible focus ring for keyboard nav. Uses coral on a 3px offset so it stays
   visible against any of the brand backgrounds (white, cream, olive, dark).
   :focus-visible only — mouse clicks don't trigger it. */
:where(.btn, a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--color-coral);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* ---------- Top Bar ---------- */
.lp-topbar {
  background: var(--color-olive);
  color: var(--color-white);
  font-size: 0.875rem;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.1px;
}

.lp-topbar a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.lp-topbar a:hover {
  color: var(--color-cream);
}

/* ---------- Header ---------- */
.lp-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.lp-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lp-header__logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  text-decoration: none;
}

.lp-header__logo img {
  height: 110px;
  width: auto;
  display: block;
}

.lp-header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lp-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-olive-deep);
  font-size: 0.9375rem;
  letter-spacing: -0.1px;
}

.lp-header__phone:hover {
  color: var(--color-coral);
}

.lp-header__phone svg {
  width: 18px;
  height: 18px;
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-olive-deep);
  letter-spacing: -0.1px;
}

.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-coral);
  stroke-width: 2.5;
}

/* ---------- Hero ---------- */
.section-hero {
  background: var(--color-cream);
  padding: 64px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content .subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--color-coral);
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: 3rem;            /* 48px on desktop hero */
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin-bottom: 18px;
  color: var(--color-black);
}

.hero-content .hero-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.1px;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-olive);
  flex-shrink: 0;
  stroke-width: 2.5;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(81, 70, 27, 0.25);
}

.hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-image__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: var(--color-white);
  padding: 11px 18px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-black);
  box-shadow: 0 6px 16px rgba(81, 70, 27, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.1px;
}

.hero-image__badge .stars {
  color: var(--color-star);
  letter-spacing: 1px;
}

/* ---------- USPs ---------- */
.section-usps {
  padding: var(--section-padding);
  background: var(--color-white);
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2 {
  margin-bottom: 14px;
}

.section-title p {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 auto;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.usp-card {
  text-align: center;
  padding: 32px 22px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: var(--color-bg);
  border: 1px solid transparent;
}

.usp-card:hover {
  background: var(--color-cream-soft);
  border-color: var(--color-cream);
  transform: translateY(-2px);
}

.usp-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-card__icon svg {
  width: 30px;
  height: 30px;
  color: var(--color-olive-deep);
  stroke-width: 1.6;
}

.usp-card h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}

.usp-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- Products ---------- */
.section-products {
  padding: var(--section-padding);
  background: var(--color-cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.product-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
  border-color: var(--color-coral);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-cream);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 5px 12px;
  border-radius: var(--radius);
  text-transform: uppercase;
}

.product-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__category {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
  color: var(--color-olive);
  margin-bottom: 8px;
}

.product-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--color-black);
  letter-spacing: -0.2px;
}

.product-card__title a {
  color: inherit;
}

.product-card__title a:hover {
  color: var(--color-coral);
}

.product-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
}

.product-card__price {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-olive-deep);
  margin-bottom: 16px;
  margin-top: auto;
}

.product-card__price .from {
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-right: 4px;
}

.product-card__actions {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.product-card__actions .btn-sm {
  flex: 1;
  padding: 9px 12px;
  font-size: 0.8125rem;
  text-align: center;
  letter-spacing: -0.1px;
}

.products-cta {
  text-align: center;
}

/* ---------- Configurator / Op Maat ---------- */
.section-configurator {
  padding: var(--section-padding);
  background: var(--color-white);
  color: var(--color-text);
}

.configurator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.configurator-content h2 {
  color: var(--color-black);
  margin-bottom: 18px;
}

.configurator-content > p {
  color: var(--color-text-light);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.configurator-steps {
  list-style: none;
  margin-bottom: 32px;
}

.configurator-steps li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
  color: var(--color-text);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.configurator-steps li strong {
  color: var(--color-black);
  font-family: var(--font-heading);
  font-weight: 600;
}

.configurator-steps li .step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--color-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-white);
}

.configurator-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 24px 48px -16px rgba(81, 70, 27, 0.25);
}

.configurator-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- HPL Colors Grid ---------- */
.hpl-colors {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--color-border);
}

.hpl-colors-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 40px;
}

.hpl-colors-header h3 {
  color: var(--color-black);
  font-size: 1.625rem;
  margin-bottom: 14px;
  letter-spacing: -0.4px;
}

.hpl-colors-header p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.hpl-colors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.hpl-color {
  margin: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hpl-color:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--color-coral);
}

.hpl-color__sw {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url('../img/hpl-sprite.webp');
  background-repeat: no-repeat;
  background-size: 700% 600%;
  background-position: calc(var(--x, 0) * 100% / 6) calc(var(--y, 0) * 100% / 5);
}

.hpl-color figcaption {
  padding: 10px 12px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-white);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.1px;
}

.hpl-colors-note {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.hpl-colors-note a {
  color: var(--color-olive-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hpl-colors-note a:hover {
  color: var(--color-coral);
}

@media (max-width: 640px) {
  .hpl-colors-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
  }
  .hpl-color figcaption {
    font-size: 0.75rem;
    padding: 8px 6px;
  }
}

/* ---------- Reviews ---------- */
.section-reviews {
  padding: var(--section-padding);
  background: var(--color-cream-soft);
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.reviews-header .section-title {
  text-align: left;
  margin-bottom: 0;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.reviews-score__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-olive-deep);
  line-height: 1;
  letter-spacing: -1.5px;
}

.reviews-score__meta {
  display: flex;
  flex-direction: column;
}

.reviews-score__stars {
  color: var(--color-star);
  font-size: 1.25rem;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.reviews-score__count {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-cream-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-cream);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.review-card__stars {
  color: var(--color-star);
  font-size: 0.9375rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--color-text);
  margin-bottom: 18px;
  line-height: 1.65;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-coral);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
}

.review-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-black);
  letter-spacing: -0.1px;
}

.review-card__date {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-top: 1px;
}

/* ---------- Alternatives ---------- */
.section-alternatives {
  padding: var(--section-padding);
  background: var(--color-cream-soft);
}

.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.alt-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 30px;
  text-align: center;
  transition: var(--transition);
}

.alt-card:hover {
  border-color: var(--color-coral);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.alt-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
  background: var(--color-cream);
}

.alt-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alt-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.alt-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 18px;
  line-height: 1.55;
}

/* ---------- FAQ ---------- */
.section-faq {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
}

.faq-sidebar h2 {
  margin-bottom: 14px;
}

.faq-sidebar p {
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active,
.faq-item:hover {
  border-color: var(--color-olive);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-black);
  text-align: left;
  line-height: 1.45;
  letter-spacing: -0.1px;
}

.faq-item__question:hover {
  color: var(--color-olive-deep);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-left: 16px;
  color: var(--color-olive);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
  color: var(--color-coral);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-item__answer-inner a {
  color: var(--color-olive-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer-inner a:hover {
  color: var(--color-coral);
}

/* ---------- CTA Banner ---------- */
.section-cta {
  padding: 72px 0;
  background: var(--color-olive);
  text-align: center;
}

.section-cta h2 {
  color: var(--color-white);
  font-size: 2.125rem;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CTA banner outline button → light on olive */
.section-cta .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.section-cta .btn-outline:hover {
  background: var(--color-white);
  color: var(--color-olive-deep);
  border-color: var(--color-white);
}

/* ---------- Footer ---------- */
.lp-footer {
  background: var(--color-olive);
  color: rgba(255, 255, 255, 0.88);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col p {
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.14);
  padding: 7px 13px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.1px;
}

.footer-badge svg {
  color: var(--color-cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  h1 { font-size: 2rem; letter-spacing: -0.6px; }
  h2 { font-size: 1.625rem; letter-spacing: -0.3px; }
  h3 { font-size: 1.25rem; }

  .section-hero {
    padding: 48px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
    letter-spacing: -0.8px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 360px;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .configurator-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .section-cta h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 600px) {
  :root {
    --section-padding: 56px 0;
  }

  h1 { font-size: 1.75rem; letter-spacing: -0.4px; }
  h2 { font-size: 1.375rem; letter-spacing: -0.2px; }

  .lp-topbar {
    font-size: 0.8125rem;
    padding: 8px 0;
  }

  .lp-header {
    padding: 14px 0;
  }

  .lp-header .container {
    gap: 12px;
  }

  .lp-header__logo img {
    height: 64px;
  }

  .lp-header__cta .btn {
    padding: 10px 16px;
    font-size: 0.875rem;
    white-space: nowrap;
  }

  .lp-header__phone {
    display: none;
  }

  .trust-strip__inner {
    gap: 14px 22px;
  }

  .trust-item {
    font-size: 0.8125rem;
  }

  .hero-content h1 {
    font-size: 1.875rem;
    letter-spacing: -0.6px;
  }

  .hero-content .hero-description {
    font-size: 1rem;
  }

  .hero-image img {
    height: 280px;
  }

  .hero-badges {
    gap: 10px 16px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .usp-card {
    padding: 24px 20px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}
