:root {
  --bg: #f4efe9;
  --bg-strong: #efe4d7;
  --panel: #fffaf3;
  --panel-strong: #f6ecd8;
  --text: #1c1b1a;
  --muted: #5a5147;
  --line: rgba(28, 27, 26, 0.12);
  --primary: #D4B50F;
  --primary-dark: #B79B0D;
  --accent: #d66b2f;
  --forest: #3a4635;
  --sand: #e7d5b5;
  --shadow: 0 20px 40px rgba(28, 27, 26, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button, input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 239, 233, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-weight: 800;
  letter-spacing: 0.04em;
  transform: translateY(2px);
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 88px;
  height: auto;
  padding: 10px 0;
  color: var(--text);
  line-height: 0;
}

.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 0.75;
  letter-spacing: -0.095em;
}

.brand-name {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.09em;
}

.brand-name.alt {
  font-size: clamp(2.1rem, 5.2vw, 4.2rem);
}

.peak, .cutout {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding-bottom: 6px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  border-radius: 10px;
}

.hero {
  position: relative;
  background: linear-gradient(120deg, rgba(17, 18, 16, 0.45), rgba(17, 18, 16, 0.2)),
    url('Lazyjackvrijstaand.jpg') center/cover no-repeat;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  align-items: center;
  gap: 42px;
}

.hero-copy {
  max-width: 620px;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sand);
  margin-bottom: 18px;
}

.eyebrow-dark {
  color: var(--primary-dark);
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero-copy p,
.page-hero p {
  margin: 0;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
}

.page-hero p {
  color: rgba(28, 27, 26, 0.75);
}

.hero-usp-box {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  max-width: 470px;
  display: grid;
  gap: 10px;
}

.usp-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  text-transform: lowercase;
  padding-left: 28px;
  line-height: 1.4;
}

.usp-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3bb273;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 32px rgba(212, 181, 15, 0.28);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.hero-trust li {
  position: relative;
  padding-left: 20px;
}

.hero-trust li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.hero-card {
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--text);
}

.card-label {
  margin: 0 0 20px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.mini-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.model-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mini-metric strong {
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  line-height: 1.1;
}

.model-row strong {
  font-size: clamp(1.6rem, 1.8vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.google-logo {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
  vertical-align: middle;
  filter: drop-shadow(0 2px 4px rgba(28, 27, 26, 0.08));
}

.mini-metric span {
  color: var(--muted);
}

.trust-strip {
  background: var(--forest);
  color: #fff;
  padding: 20px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.trust-grid strong {
  font-size: 1.6rem;
}

.section {
  padding: 96px 0;
}

.section {
  padding: 96px 0;
}

.accent-band {
  padding: 10px 0 0;
}

.accent-panel {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  align-items: center;
  background: linear-gradient(135deg, rgba(214, 107, 47, 0.98), rgba(185, 82, 32, 0.94));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 16px 34px rgba(214, 107, 47, 0.14);
}

.accent-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.accent-panel p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
}

.alt-section {
  background: rgba(255, 255, 255, 0.42);
}

.feeling-section {
  padding-top: 48px;
}

@media (max-width: 760px) {
  .accent-panel {
    grid-template-columns: 1fr;
  }
}

.section-heading {
  max-width: 1000px;
  margin-bottom: 32px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered h2 {
  white-space: nowrap;
}

.section-heading h2,
.content-panel h2,
.comparison-card h3,
.price-card h3,
.booking-panel h3 {
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-size: clamp(2rem, 3vw, 3rem);
}

.feature-grid,
.process-grid,
.pricing-layout,
.comparison-grid,
.feature-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.step-card,
.price-card,
.comparison-card,
.spec-card,
.booking-panel {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(28, 27, 26, 0.03);
}

.feature-card,
.step-card,
.comparison-card,
.spec-card,
.booking-panel,
.icon-tile,
.info-block {
  padding: 28px 24px;
}

.icon-badge,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--panel-strong);
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-card h3,
.step-card h3,
.icon-tile h3,
.info-block h3,
.story-copy h2,
.about-copy h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.feature-card p,
.step-card p,
.content-panel p,
.comparison-card li,
.spec-card dd,
.booking-form label {
  color: var(--muted);
}

.split-layout,
.specs-layout,
.two-col-copy,
.pricing-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.content-panel {
  padding-right: 12px;
}

.media-panel {
  min-height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(58, 70, 53, 0.25), rgba(58, 70, 53, 0.65)),
    url('https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.panel-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 250, 243, 0.92);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.check-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(214, 107, 47, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card {
  position: relative;
}

.detail-process .large-step {
  min-height: 150px;
}

.detail-process .step-number {
  background: var(--accent);
  color: #fff;
}

.process-steps-section {
  padding-top: 24px;
}

.process-photo-section {
  padding: 0 0 48px;
}

.process-photo {
  width: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.process-faq-section {
  padding-top: 32px;
}

.process-cta-section {
  padding-top: 40px;
}

.process-cta-section .cta-box {
  background: var(--forest);
  border-color: rgba(255, 255, 255, 0.18);
  padding-top: 18px;
  padding-bottom: 18px;
}

.process-cta-section .cta-box h2 {
  color: #fff;
}

.process-cta-section .cta-box .eyebrow {
  color: var(--sand);
}

.comparison-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-card.good {
  background: var(--accent);
  color: #fff;
}

.comparison-card.good li {
  color: rgba(255, 255, 255, 0.94);
}

.comparison-card.good li::before {
  color: #fff;
}

.comparison-card.caution {
  background: rgba(214, 107, 47, 0.06);
}

.comparison-image {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.comparison-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
}

.comparison-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.comparison-card li {
  padding-left: 20px;
  position: relative;
}

.comparison-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
}

.spec-card h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
}

.spec-list {
  margin: 0;
  display: grid;
  gap: 16px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  font-weight: 700;
  color: var(--text);
}

.spec-list dd {
  margin: 0;
  text-align: right;
}

.product-intro {
  max-width: 860px;
  margin-bottom: 28px;
}

.product-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.product-intro p {
  margin: 0;
  color: var(--muted);
}

.product-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 8px;
}

.product-intro + .product-image-grid {
  margin-bottom: 32px;
}

.product-image-grid img,
.product-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 30px rgba(28, 27, 26, 0.08);
}

.product-image-grid img {
  object-fit: cover;
}

.product-image-placeholder {
  background: var(--panel-strong);
  border: 1px dashed rgba(28, 27, 26, 0.22);
}

.product-spec-card {
  max-width: 860px;
}

.product-specs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 32px;
}

.product-specs-layout .product-spec-card {
  max-width: none;
}

.floorplan-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(28, 27, 26, 0.03);
  padding: 24px;
}

.floorplan-tile img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-hero {
  padding: 104px 0 72px;
  background: linear-gradient(180deg, rgba(236, 223, 210, 0.7), rgba(244, 239, 233, 0.94));
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero .eyebrow {
  color: var(--primary-dark);
}

.page-hero h1 {
  color: var(--text);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.compact-hero {
  background: linear-gradient(180deg, rgba(236, 223, 210, 0.7), rgba(244, 239, 233, 0.94));
}

.process-hero {
  background: linear-gradient(180deg, rgba(214, 107, 47, 0.22), rgba(244, 239, 233, 0.94));
}

.booking-hero {
  background: linear-gradient(180deg, rgba(223, 221, 210, 0.7), rgba(244, 239, 233, 0.94));
}

.about-hero {
  background: linear-gradient(180deg, rgba(235, 223, 201, 0.7), rgba(244, 239, 233, 0.94));
}

.cta-box, .showcase-box {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(28, 27, 26, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px 28px;
}

.product-cta-box {
  background: var(--forest);
  border-color: rgba(255, 255, 255, 0.18);
  padding-top: 12px;
  padding-bottom: 12px;
}

.product-cta-box .eyebrow {
  margin-bottom: 8px;
  color: var(--sand);
}

.product-cta-box h2 {
  color: #fff;
}

.spec-quickview {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.spec-quickview div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 120px;
}

.spec-quickview strong {
  font-size: 1.7rem;
}

.booking-section {
  padding: 20px 0 0;
}

.booking-widget {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
}

.booking-panel {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 28px;
  align-items: center;
  padding: 18px 20px;
  background: var(--forest);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.booking-copy {
  min-width: 0;
}

.booking-copy .eyebrow {
  color: var(--sand);
}

.booking-copy h2 {
  margin: 12px 0 10px;
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #fff;
}

.booking-copy p {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(28, 27, 26, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
}

.booking-actions {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.booking-actions .button {
  width: 100%;
  min-height: 50px;
  cursor: pointer;
  border: 0;
}

@media (max-width: 900px) {
  .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    justify-content: stretch;
  }
}

.feature-icons {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-tile {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(214, 107, 47, 0.12);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.icon-tile h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin: 0;
}

.story-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.about-grid {
  grid-template-columns: 0.7fr 1.3fr;
}

.story-copy,
.about-copy {
  max-width: 760px;
}

.story-copy h2,
.about-copy h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.story-copy p,
.about-copy p,
.info-block p {
  color: var(--muted);
  margin: 0 0 18px;
}

.story-copy a,
.about-copy a,
.info-block a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.story-visual {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(58, 70, 53, 0.25), rgba(58, 70, 53, 0.6)),
    url('allroader-vouwwagen.webp') center/cover no-repeat;
  position: relative;
  box-shadow: var(--shadow);
}

.story-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 250, 243, 0.9);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.about-photo-wrap {
  display: flex;
  justify-content: center;
}

.about-photo {
  width: min(100%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.12)),
    url('michel.jpg') center 18% / 110% no-repeat;
  box-shadow: var(--shadow);
  border: 6px solid rgba(214, 107, 47, 0.18);
}

.signature {
  font-weight: 800;
  color: var(--text);
  margin-top: 10px;
}

.drone-section {
  padding-top: 0;
  padding-bottom: 32px;
}

.help-section {
  padding-top: 32px;
}

.drone-shot {
  min-height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24, 30, 28, 0.08), rgba(24, 30, 28, 0.18)),
    url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}

.info-stack {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.info-block {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: #fff;
  font: inherit;
}

.contact-form button {
  width: fit-content;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-category + .faq-category {
  margin-top: 40px;
}

.faq-category h3 {
  margin: 0 0 16px;
  font-size: 1.35rem;
}

.process-faq-section .faq-category h3 {
  color: var(--accent);
}

.faq-list details {
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-list ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.faq-list li + li {
  margin-top: 4px;
}

.faq-map {
  width: 100%;
  height: 280px;
  margin-top: 16px;
  border: 0;
  border-radius: var(--radius-sm);
}

.price-card {
  padding: 28px 24px;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(214, 107, 47, 0.12), rgba(255, 250, 243, 0.97));
  border-color: rgba(214, 107, 47, 0.25);
}

.price-tag {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  font-weight: 700;
}

.price-amount {
  margin: 20px 0 18px;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.price-amount span {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.price-card ul {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

.booking-form input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  min-height: 46px;
  padding: 0.8rem 0.95rem;
}

.full-width {
  width: 100%;
}

.site-footer {
  background: #1c1b1a;
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: rgba(255,255,255,0.75);
}

@media (max-width: 980px) {
  .hero-inner,
  .split-layout,
  .specs-layout,
  .comparison-grid,
  .pricing-layout,
  .process-grid,
  .feature-grid,
  .trust-grid,
  .feature-icons,
  .story-grid,
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .feature-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 16px;
    right: 16px;
    background: rgba(255, 250, 243, 0.98);
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 700px) {
  .section-heading.centered h2 {
    white-space: normal;
  }

  .product-image-grid {
    grid-template-columns: 1fr;
  }

  .product-specs-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .process-grid,
  .comparison-grid,
  .pricing-layout,
  .split-layout,
  .specs-layout,
  .trust-grid,
  .two-col-copy,
  .feature-icons,
  .story-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .cta-box,
  .showcase-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 640px;
  }

  .site-header {
    position: sticky;
  }

  .brand-text {
    font-size: 0.62rem;
  }
}
