/* ============================================================
   FIXLY — Design System (DCDC-inspired)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --primary: #2E7D32;
  --primary-dark: #1B5E20;
  --primary-light: #43A047;
  --primary-soft: #EAF6EA;
  --glass-bg: rgba(255,255,255,0.14);
  --glass-border: rgba(255,255,255,0.34);
  --glass-shadow: 0 18px 42px rgba(15,23,42,0.2);
  --accent: #E8A020;
  --accent-dark: #C8861A;
  --text: #1A2333;
  --text-light: #6B7280;
  --text-muted: #9CA3AF;
  --bg-light: #F5F7FA;
  --bg-section: #E8F5E9;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --green: #10B981;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --nav-height: 72px;
  --max-width: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; image-orientation: from-image; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── Layout Helpers ──────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--gray { background: var(--bg-light); }
.section--soft { background: linear-gradient(180deg, #f4fbf4 0%, #ffffff 100%); }
.section--blue { background: var(--primary); color: var(--white); }
.section--dark { background: var(--text); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── Typography ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.7;
}
.section--blue .section-title,
.section--dark .section-title { color: var(--white); }
.section--blue .section-sub,
.section--dark .section-sub { color: rgba(255,255,255,0.78); }
.section--blue .section-label { color: var(--accent); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s ease, backdrop-filter 0.2s ease;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.btn-primary {
  background: linear-gradient(180deg, rgba(46,125,50,0.92), rgba(27,94,32,0.92));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(46,125,50,0.35);
}
.btn-primary:hover { background: linear-gradient(180deg, rgba(67,160,71,0.95), rgba(46,125,50,0.95)); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(46,125,50,0.38); }
.btn-accent {
  background: linear-gradient(180deg, rgba(232,160,32,0.95), rgba(200,134,26,0.95));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232,160,32,0.35);
}
.btn-accent:hover { background: linear-gradient(180deg, rgba(245,178,46,0.95), rgba(216,147,34,0.95)); transform: translateY(-1px); }
.btn-outline {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.65);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-blue {
  background: rgba(46,125,50,0.08);
  color: var(--primary);
  border: 1px solid rgba(46,125,50,0.45);
}
.btn-outline-blue:hover { background: var(--primary); color: var(--white); }
.btn-ghost { color: var(--primary); font-weight: 600; padding: 0; }
.btn-ghost:hover { color: var(--primary-dark); text-decoration: underline; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  height: var(--nav-height);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.nav__logo img {
  height: 56px;
  width: auto;
}

.nav__logo-mark {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.16));
}
.nav__logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1;
}
.nav__logo-text span { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: all 0.15s;
}
.nav__link:hover, .nav__link.active { color: var(--primary); background: var(--bg-light); }
.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__phone {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__phone svg { color: var(--primary); }
.nav__cta { }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.2s; }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--white);
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border);
  z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile .nav__link { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); border-radius: 0; font-size: 16px; }
.nav__mobile .nav__actions { flex-direction: column; margin-top: 16px; align-items: stretch; }
.nav__mobile .btn { justify-content: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #1a4d1e 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,57,18,0.72) 0%, rgba(27,94,32,0.44) 45%, rgba(16,57,18,0.75) 100%);
  z-index: 1;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content { max-width: 640px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__badge .stars { color: #FFD700; letter-spacing: 1px; }
.hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.hero__pill svg { color: var(--green); flex-shrink: 0; }

/* ── Section Headers ─────────────────────────────────────── */
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── Service Cards ───────────────────────────────────────── */
.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfffd 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15,23,42,0.16);
  border-color: var(--primary);
}
.service-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.service-card__icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(180deg, #effaf0 0%, #e4f5e6 100%);
  border: 1px solid #cfe8d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}
.service-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 12px; }
.service-card p { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 22px; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.15s;
}
.service-card__link:hover { gap: 10px; }

/* ── Why Cards ───────────────────────────────────────────── */
.why-card {
  text-align: center;
  padding: 26px 18px;
  border-radius: 16px;
  border: 1px solid #e7edf4;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: #cfe8d0;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}
.why-card__icon {
  width: 64px;
  height: 64px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}
.why-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ── Process Steps ───────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.process-step__num {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(46,125,50,0.3);
}
.process-step h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ── Pricing Cards ───────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(46,125,50,0.15);
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.pricing-card__price { font-size: 42px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.pricing-card__price sup { font-size: 22px; vertical-align: super; }
.pricing-card__from { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-card p { font-size: 14px; color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }
.pricing-card ul { text-align: left; margin-bottom: 28px; }
.pricing-card ul li { font-size: 14px; color: var(--text-light); padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; border-bottom: 1px solid var(--border); }
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Review Cards ────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfefd 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}
.review-card__stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review-card__text { font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 18px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px; height: 40px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--primary);
  flex-shrink: 0;
}
.review-card__name { font-size: 14px; font-weight: 700; }
.review-card__verified { font-size: 12px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 4px; }

.review-card__source {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  background: #eef6ee;
  color: #1b5e20;
  border: 1px solid #cde8cf;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviews-explorer {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.reviews-explorer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.reviews-explorer__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reviews-filter-chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.18s ease;
}

.reviews-filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.reviews-filter-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.reviews-explorer__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reviews-explorer__category {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.reviews-explorer__count {
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  align-items: center;
  gap: 12px;
}

.reviews-carousel__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 30px;
  line-height: 1;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-carousel__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.reviews-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews-carousel__viewport {
  min-height: 330px;
}

.reviews-grid--carousel {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reviews-explorer__footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-muted);
}

.reviews-source-tag {
  color: #0f4d17;
  font-weight: 700;
}

/* ── Rating Banner ───────────────────────────────────────── */
.rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  margin-top: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(232,245,233,0.9), rgba(255,255,255,0.96));
  box-shadow: var(--shadow-sm);
}
.rating-stat { text-align: center; }
.rating-stat__num { font-size: 36px; font-weight: 800; color: var(--primary); line-height: 1; }
.rating-stat__label { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.rating-stat__stars { color: #F59E0B; font-size: 18px; }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item { border-radius: 8px; overflow: hidden; position: relative; aspect-ratio: 1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 20px 12px 10px;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--primary); }
.faq-question .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: var(--primary);
}
.faq-item.open .faq-question .icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; font-size: 15px; color: var(--text-light); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Contact Strip ───────────────────────────────────────── */
.contact-strip {
  background: var(--text);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.contact-strip a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85);
  transition: color 0.15s;
}
.contact-strip a:hover { color: var(--white); }
.contact-strip a svg { color: var(--accent); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: #0D1F0E;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.site-footer {
  background: #0D1F0E;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__container {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 44px;
  align-items: start;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer__logo-text {
  font-size: 25px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.4px;
}

.footer__logo-text span { color: #d8a458; }

.footer__tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.66);
  max-width: 340px;
  margin-bottom: 14px;
}

.footer__trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.trust-bullet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.74);
}

.trust-icon {
  color: #d8a458;
  width: 16px;
  text-align: center;
}

.footer__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}

.footer__links li a:hover { color: #fff; }
.footer__brand .nav__logo-text { font-size: 24px; margin-bottom: 16px; }
.site-footer__brand .nav__logo-text {
  font-size: 24px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.footer__brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; margin-bottom: 20px; }
.site-footer__brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 320px; margin-bottom: 20px; }
.site-footer__trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: all 0.2s;
}
.footer__social a:hover { background: var(--primary); color: var(--white); }
.footer__col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer__col ul li a:hover { color: var(--white); }
.site-footer__col h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: 0.04em; text-transform: uppercase; }
.site-footer__col ul li { margin-bottom: 10px; }
.site-footer__col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.15s; }
.site-footer__col ul li a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,0.45); }
.footer__bottom a:hover { color: rgba(255,255,255,0.75); }
.footer__bottom-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__copyright,
.footer__services-list {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__bottom a { color: rgba(255,255,255,0.45); }
.site-footer__bottom a:hover { color: rgba(255,255,255,0.75); }

/* ── Service Page Hero ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  padding: 72px 0 64px;
  color: var(--white);
}
.page-hero--video {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.page-hero--video .container {
  position: relative;
  z-index: 2;
}
.page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.page-hero__breadcrumb { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.page-hero__breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { margin: 0 6px; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.3px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 560px; margin-bottom: 28px; line-height: 1.65; }
.page-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Two-column content ──────────────────────────────────── */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.content-main h2 { font-size: 22px; font-weight: 700; margin: 32px 0 14px; color: var(--text); }
.content-main h2:first-child { margin-top: 0; }
.content-main p { font-size: 15px; line-height: 1.75; color: var(--text-light); margin-bottom: 16px; }
.content-main ul { margin: 12px 0 20px 0; }
.content-main ul li { font-size: 15px; color: var(--text-light); padding: 5px 0 5px 20px; position: relative; }
.content-main ul li::before { content: '→'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Sidebar card */
.quote-card {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  box-shadow: var(--shadow);
}
.quote-card h3 { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.quote-card__sub { font-size: 14px; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }
.quote-card .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.quote-card__meta { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 20px; }
.quote-card__divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.quote-card__detail { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.quote-card__detail svg { color: var(--primary); flex-shrink: 0; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }

/* ── Chip / Tag ──────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--bg-section);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin: 3px;
}

/* ── Inline Icons (SVG inline) ───────────────────────────── */
svg { display: inline-block; vertical-align: middle; }

/* ── Booking Form ────────────────────────────────────────── */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  max-width: 680px;
  margin: 0 auto;
}
.booking-form-wrap--wide {
  max-width: 820px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.booking-skip-banner {
  margin: 24px auto 0;
  max-width: 760px;
  padding: 18px 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking-skip-banner p {
  margin: 0 0 12px;
  color: rgba(255,255,255,0.94);
  font-size: 15px;
}

.booking-skip-banner__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.booking-pricing-panel {
  margin: 34px auto 0;
  max-width: 980px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 24px;
}

.booking-pricing-panel h3 {
  margin: 0 0 16px;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
}

.booking-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.booking-price-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}

.booking-price-card--featured {
  border: 2px solid var(--primary);
  box-shadow: 0 10px 24px rgba(46,125,50,0.12);
}

.booking-price-card h4 {
  margin: 0;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--primary);
}

.booking-price-card__meta {
  margin: 6px 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 700;
}

.booking-price-card strong {
  display: block;
  margin: 0 0 6px;
  font-size: 18px;
}

.booking-price-card span {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.booking-pricing-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}

.booking-request-shell {
  background: linear-gradient(180deg, #ffffff 0%, #fbfefc 100%);
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
}

.booking-kicker {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.booking-request-title {
  margin: 0 0 8px;
  font-size: 46px;
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.booking-request-sub {
  margin: 0 0 12px;
  color: #475569;
  font-size: 18px;
}

.booking-request-sub strong {
  color: var(--primary);
}

.booking-proof-line {
  margin: 0 0 18px;
  color: #64748b;
  font-size: 15px;
}

.booking-step-label {
  margin: 0 0 4px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.booking-progress-track {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  margin-bottom: 14px;
  overflow: hidden;
}

.booking-progress-track span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #1fa85b, #2e7d32);
}

.booking-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.booking-choice {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 9px 10px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.booking-choice input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  height: 18px !important;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  margin: 0;
  padding: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}

.booking-choice input[type="checkbox"]:checked {
  border-color: #2e7d32;
  box-shadow: inset 0 0 0 4px #2e7d32;
}

.booking-choice:has(input:checked) {
  border-color: #2e7d32;
  background: #effcf3;
}

.booking-choice--plain {
  border-radius: 10px;
}

#durationMinutes {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  border: 1px solid #d9dee5;
}

#durationMinutes::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #16a34a;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.4);
}

#durationMinutes::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #16a34a;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.4);
}

#durationMinutes::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
}

.booking-slider-labels {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.booking-slot {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #fff;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.booking-slot.is-selected {
  border-color: #2e7d32;
  color: #2e7d32;
  background: #ecfdf3;
}

.booking-slot--placeholder {
  width: 100%;
  text-align: center;
  color: #64748b;
}

.booking-review-card {
  margin-top: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
}

.booking-review-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.booking-review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking-review-grid span {
  display: block;
  font-size: 11px;
  color: #64748b;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.booking-review-grid strong {
  display: block;
  font-size: 14px;
  color: #111827;
}

.booking-review-total {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8efd4;
  background: #effcf3;
}

.booking-review-total b {
  font-size: 30px;
  color: #198754;
  line-height: 1;
}

.booking-review-total small {
  display: block;
  margin-top: 4px;
  color: #64748b;
}

.booking-suggestion-item--powered {
  font-size: 12px;
  color: #64748b;
  cursor: default;
}

.booking-steps-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.booking-steps-progress span {
  display: grid;
  place-items: center;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: #f8fafc;
  font-weight: 700;
}

.booking-steps-progress span.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.booking-step {
  display: none;
  border: 1px solid #dbe5de;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.booking-step.is-active {
  display: block;
  animation: bookingStepIn 220ms ease;
}

.booking-step h3 {
  margin: 0 0 14px;
  font-size: 19px;
}

.booking-form-actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 8px;
}

.booking-step-nav {
  display: none;
}

.booking-step-pill {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 10px;
  text-align: center;
}

.booking-step-pill.is-active {
  background: #ecfdf3;
  border-color: #2e7d32;
  color: #166534;
}

.booking-step-pill.is-locked {
  opacity: 0.45;
}

.booking-step-hint {
  min-height: 18px;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.booking-submit-status {
  min-height: 20px;
  margin-top: 12px;
  font-size: 14px;
}

.booking-area-wrap {
  position: relative;
}

.booking-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 10;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.booking-suggestion-item {
  width: 100%;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
}

.booking-suggestion-item:last-child {
  border-bottom: none;
}

.booking-suggestion-item:hover {
  background: #f8fafc;
}

.booking-photo-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.booking-photo-chip {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  padding: 8px;
}

#bookingSubmitBtn {
  display: none;
}

@keyframes bookingStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.fixed-contact-rail {
  position: fixed;
  right: 16px;
  bottom: 96px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fixed-contact-rail__btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 26px rgba(15,23,42,0.2);
}

.fixed-contact-rail__btn svg {
  width: 24px;
  height: 24px;
}

.fixed-contact-rail__btn--wa { background: #25d366; }
.fixed-contact-rail__btn--call { background: var(--primary); }

.fixed-scroll-top {
  position: fixed;
  left: 16px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary-dark);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.22);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 998;
}

.fixed-scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Notice / Proof Banner ───────────────────────────────── */
.proof-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #c8861a 100%);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.proof-banner h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.proof-banner p { font-size: 17px; opacity: 0.88; max-width: 520px; margin: 0 auto 28px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .reviews-grid--carousel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .section { padding: 56px 0; }
  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo img { height: 46px; }
  .nav__logo-text { font-size: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-grid--carousel { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .quote-card { position: static; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__container { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 520px; }
  .page-hero--video { min-height: 340px; }
  .hero__ctas { flex-direction: column; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .rating-banner { gap: 24px; }
  .contact-strip { gap: 16px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__bottom-container { flex-direction: column; text-align: center; }
  .booking-form-wrap { padding: 28px 20px; }
  .booking-request-title { font-size: 36px; }
  .booking-request-sub { font-size: 16px; }
  .booking-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-choice { font-size: 13px; }
  .booking-step-nav { grid-template-columns: 1fr; }
  .booking-review-grid { grid-template-columns: 1fr; }
  .booking-form-actions { flex-direction: column; }
  .booking-form-actions .btn { width: 100%; justify-content: center; }
  .booking-skip-banner { padding: 14px 14px 16px; }
  .booking-pricing-grid { grid-template-columns: 1fr; }
  .booking-pricing-panel h3 { font-size: 22px; }
  .fixed-contact-rail { right: 12px; bottom: 84px; }
  .fixed-contact-rail__btn { width: 48px; height: 48px; }
  .fixed-scroll-top { left: 12px; width: 44px; height: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .reviews-explorer { padding: 16px; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .reviews-carousel__btn { width: 100%; height: 38px; border-radius: 8px; font-size: 22px; }
  .reviews-carousel__viewport { min-height: 0; }
  .reviews-explorer__footer { justify-content: center; text-align: center; }
  /* Why section and pricing section stack on mobile */
  #why .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; gap: 32px !important; }
  #pricing > .container > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
  /* Neighbourhood grid */
  #areas div[style*="auto-fill"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-6 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── TOP RIBBON ──────────────────────────────────────────── */
.top-ribbon {
  background: linear-gradient(180deg, #2E7D32, #256b2a);
  color: rgba(255,255,255,0.92);
  padding: 6px 0;
  font-size: 13px;
  font-weight: 500;
}
.top-ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.top-ribbon__item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.9);
  transition: color 0.15s;
}
.top-ribbon__item:hover { color: #fff; }
.top-ribbon__item svg { flex-shrink: 0; opacity: 0.85; }

/* ── GLASS HERO BADGES ───────────────────────────────────── */
.hero__glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.hero__glass-badge .stars { color: #FFD700; letter-spacing: 1px; }
.hero__glass-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

/* ── HERO CTA BUTTONS (CALL + WHATSAPP style) ────────────── */
.btn-call {
  background: rgba(255,255,255,0.2);
  color: #1A2333;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(15px) saturate(140%);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  color: #fff;
}
.btn-call:hover { background: rgba(255,255,255,0.28); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0,0,0,0.22); }
.btn-whatsapp {
  background: linear-gradient(180deg, rgba(37,211,102,0.92), rgba(28,168,81,0.94));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,0.45); }

/* ── DCDC-like Homepage Header/Hero Overrides ───────────── */
.top-ribbon {
  min-height: 40px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.top-ribbon__inner {
  gap: 14px;
  justify-content: center;
}

.top-ribbon__item + .top-ribbon__item::before {
  content: "•";
  opacity: 0.45;
  margin-right: 12px;
}

.nav {
  position: relative;
  min-height: 74px;
  height: 74px;
  box-shadow: 0 1px 0 var(--border), 0 8px 28px rgba(15,23,42,0.05);
}

.nav__logo img {
  height: 54px;
}

.nav__logo-text {
  font-size: 28px;
  line-height: 0.95;
  letter-spacing: -0.5px;
}

.nav__links {
  gap: 8px;
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  padding: 8px 12px;
  letter-spacing: 0.01em;
}

.nav__item {
  position: relative;
}

.nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav__link--dropdown svg {
  width: 13px;
  height: 13px;
  opacity: 0.7;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav__item--dropdown:hover .nav__link--dropdown svg,
.nav__item--dropdown.open .nav__link--dropdown svg {
  transform: rotate(180deg);
  opacity: 1;
}

.nav__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 268px;
  background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.9));
  border: 1px solid rgba(207, 223, 214, 0.92);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(15,23,42,0.16);
  padding: 9px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px) scale(0.985);
  transition: opacity 0.22s cubic-bezier(.2,.72,.2,1), transform 0.22s cubic-bezier(.2,.72,.2,1);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  z-index: 50;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.open .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.nav__dropdown-link:hover {
  background: linear-gradient(180deg, #f4faf5, #eef7f0);
  color: var(--primary);
  transform: translateX(1px);
}

.nav__dropdown-icon {
  width: 20px;
  height: 20px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #ebf7ee;
  border: 1px solid #cae8d2;
  color: var(--primary);
  flex: 0 0 auto;
}

.nav__dropdown-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 2;
}

.nav__dropdown-link.is-current {
  background: linear-gradient(180deg, #edf8ef, #e7f5ea);
  color: var(--primary-dark);
  border: 1px solid #cae8d2;
}

.nav__dropdown-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1f6b33;
  background: #dff3e4;
  border: 1px solid #bfe5c8;
  border-radius: 999px;
  padding: 3px 7px;
}

.hero {
  min-height: min(82vh, 790px);
}

.hero__bg {
  background:
    linear-gradient(90deg, rgba(5, 12, 18, 0.72) 0%, rgba(5, 12, 18, 0.56) 34%, rgba(5, 12, 18, 0.36) 58%, rgba(5, 12, 18, 0.5) 100%),
    linear-gradient(180deg, rgba(6, 14, 20, 0.12) 0%, rgba(6, 14, 20, 0.46) 100%);
}

.hero__video {
  opacity: 0.56;
}

.hero__content {
  max-width: 760px;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 4.9vw, 72px);
  line-height: 1.02;
  letter-spacing: -1px;
  margin-bottom: 18px;
  max-width: 900px;
}

.hero__sub {
  max-width: 650px;
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.hero__badge {
  background: rgba(34, 45, 58, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
}

.hero__metric-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  background: rgba(66, 73, 84, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 12px 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__metric-pill--served svg {
  color: #6ee787;
}

.hero__metric-stars {
  color: #facc15;
  letter-spacing: 2px;
  font-size: 17px;
}

.hero__metric-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero__metric-copy strong {
  font-size: 20px;
  font-weight: 700;
}

.hero__metric-copy span {
  font-size: 15px;
  opacity: 0.9;
}

.hero__ctas {
  gap: 14px;
  margin-bottom: 20px;
}

.btn {
  border-radius: 10px;
}

.btn-call,
.btn-whatsapp {
  min-width: 196px;
  justify-content: center;
  border-radius: 10px;
  box-shadow: var(--glass-shadow);
}

.btn-call {
  color: #fff;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
}

.btn-call:hover {
  background: rgba(255,255,255,0.24);
  color: #fff;
}

.pricing-model-copy {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 18px;
}

.pricing-model-copy strong {
  color: var(--text);
}

/* ── Clinic-inspired content blocks ─────────────────────── */
.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: center;
}

.about-panel__media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
  min-height: 420px;
  background: var(--primary-soft);
}

.about-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-panel__copy {
  max-width: 620px;
}

.about-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 32px;
}

.about-list__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.about-list__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-soft);
  border: 1px solid #cfe8d0;
}

.service-card__icon svg,
.why-card__icon svg,
.about-list__icon svg {
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-list__item strong {
  display: block;
  font-size: 16px;
  margin-bottom: 3px;
}

.about-list__item span {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.blog-preview-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.blog-grid,
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.blog-card {
  background: var(--white);
  border: 1px solid rgba(46, 125, 50, 0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.08);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  border-color: rgba(46, 125, 50, 0.5);
}

.blog-card__img {
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  background: var(--primary-soft);
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 30px 28px 26px;
}

.blog-card__cat,
.blog-post__cat {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.blog-card h3 {
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.blog-card h3 a {
  color: var(--text);
}

.blog-card h3 a:hover {
  color: var(--primary);
}

.blog-card p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.68;
  margin-bottom: 22px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-muted);
  font-size: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 800;
  white-space: nowrap;
}

.blog-card__readmore:hover {
  gap: 12px;
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 58px;
  max-width: 1060px;
}

.blog-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid #dde7df;
  background: #fff;
  color: #374151;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 3px 14px rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.blog-filter-chip:hover {
  border-color: rgba(46, 125, 50, 0.45);
  color: var(--primary);
  box-shadow: 0 8px 18px rgba(46, 125, 50, 0.12);
}

.blog-filter-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(46, 125, 50, 0.22);
}

.blog-hero-soft {
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--primary-soft);
  color: var(--text);
  padding: 92px 0;
}

.blog-hero-soft h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--text);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.blog-hero-soft p {
  max-width: 760px;
  margin: 0 auto;
  color: #4b5563;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.article-shell {
  max-width: 1340px;
  margin: 0 auto;
}

.article-shell .blog-post {
  max-width: none;
}

.article-header {
  max-width: 980px;
  margin: 0 auto 46px;
}

.blog-post h1 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 18px 0 18px;
}

.blog-post__meta {
  color: var(--text-muted);
  font-size: 16px;
}

.blog-post__hero {
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.16);
}

.article-body {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 118px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  max-height: calc(100vh - 142px);
  overflow: auto;
}

.article-toc h2 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}

.blog-post .article-toc h2 {
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}

.article-toc a {
  display: block;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
  padding: 9px 0 9px 14px;
  border-left: 2px solid #e2e8f0;
}

.article-toc a:hover {
  color: var(--primary);
  border-left-color: var(--primary);
}
.article-toc a.is-active {
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 700;
}

.article-main {
  min-width: 0;
}

.reviewed-card {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e6a3f;
  background: linear-gradient(180deg, rgba(239,251,243,0.9), rgba(233,248,237,0.92));
  border: 1px solid #b9ebc8;
  border-radius: 12px;
  padding: 15px 18px;
  margin-bottom: 34px;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(46,125,50,0.08);
}

.reviewed-card svg {
  color: var(--primary);
}

.takeaways {
  background: linear-gradient(135deg, #f1fbf2 0%, #e9f8ed 100%);
  border: 1px solid #c7e8cd;
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  margin: 34px 0;
  box-shadow: 0 8px 22px rgba(46, 125, 50, 0.06);
}

.takeaways h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 22px;
}

.takeaways h3::before {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: var(--primary);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2l1.9 5.8L20 10l-6.1 2.2L12 18l-1.9-5.8L4 10l6.1-2.2L12 2zm7 11l.9 2.7L23 17l-3.1 1.3L19 21l-.9-2.7L15 17l3.1-1.3L19 13zM5 13l1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2l1.9 5.8L20 10l-6.1 2.2L12 18l-1.9-5.8L4 10l6.1-2.2L12 2zm7 11l.9 2.7L23 17l-3.1 1.3L19 21l-.9-2.7L15 17l3.1-1.3L19 13zM5 13l1 3 3 1-3 1-1 3-1-3-3-1 3-1 1-3z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.takeaways h3::after {
  content: "Key points";
  margin-left: auto;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5a6a62;
}

.takeaways ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.takeaways li {
  position: relative;
  padding-left: 42px;
  color: #3f464d;
  font-size: 18px;
  line-height: 1.58;
}

.takeaways li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-weight: 900;
  line-height: 1;
  background: rgba(255,255,255,0.72);
}

.blog-reference-block {
  margin: 24px 0 38px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid #dbe7de;
  background: linear-gradient(180deg, #fbfefc 0%, #f4faf5 100%);
}

.blog-reference-block h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
}

.blog-reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-reference-card {
  display: block;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #dce8df;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}

.blog-reference-card:hover {
  border-color: #bfe0c6;
  box-shadow: 0 12px 26px rgba(15,23,42,0.1);
}

.blog-reference-card__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a6f3a;
  background: #eaf6ed;
  border: 1px solid #cfe8d4;
  border-radius: 999px;
  padding: 4px 8px;
  margin-bottom: 10px;
}

.blog-reference-card h3 {
  font-size: 17px;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--text);
}

.blog-reference-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

@media (max-width: 1200px) {
  .nav__link {
    font-size: 16px;
  }
  .hero h1 {
    font-size: clamp(40px, 5vw, 68px);
  }
}

@media (max-width: 900px) {
  .top-ribbon {
    display: none;
  }
  .nav {
    height: 74px;
    min-height: 74px;
  }
  .nav__logo img {
    height: 50px;
  }
  .nav__logo-text {
    font-size: 27px;
  }
  .nav__links {
    display: none;
  }
  .hero {
    min-height: 73vh;
    align-items: flex-end;
    padding-bottom: 28px;
  }
  .hero h1 {
    font-size: clamp(38px, 10vw, 56px);
    line-height: 1.04;
  }
  .hero__sub {
    font-size: 17px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .top-ribbon {
    display: none;
  }
  .nav__actions {
    display: none;
  }
  .nav__inner {
    justify-content: space-between;
  }
  .nav__logo {
    gap: 8px;
  }
  .nav__logo img {
    height: 48px;
  }
  .nav__logo-text {
    font-size: 25px;
  }
  .nav__dropdown {
    display: none;
  }
  .hero {
    min-height: 68vh;
    padding-top: 14px;
    padding-bottom: 20px;
  }
  .hero h1 {
    font-size: clamp(30px, 10.5vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.5px;
  }
  .hero__sub {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .hero__ctas {
    flex-direction: row;
    width: 100%;
    gap: 10px;
  }
  .hero__ctas .btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    padding: 13px 14px;
    font-size: 14px;
  }
  .hero__metric-row {
    gap: 10px;
  }
  .hero__metric-pill {
    padding: 10px 14px;
  }
  .hero__metric-copy strong {
    font-size: 17px;
  }
  .hero__metric-copy span {
    font-size: 12px;
  }
  .about-panel,
  .article-body {
    grid-template-columns: 1fr;
  }
  .about-panel__media,
  .about-panel__media img {
    min-height: 280px;
  }
  .blog-preview-header {
    display: block;
  }
  .blog-preview-header .btn {
    margin-top: 18px;
  }
  .blog-grid,
  .blog-preview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-hero-soft {
    min-height: 300px;
    padding: 64px 0;
  }
  .blog-filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 36px;
  }
  .blog-filter-chip {
    flex: 0 0 auto;
    min-height: 46px;
    font-size: 14px;
    padding: 10px 18px;
  }
  .article-toc {
    position: static;
    max-height: none;
    padding: 22px 18px;
  }
  .blog-post h1 {
    font-size: clamp(32px, 10vw, 48px);
  }
  .blog-reference-grid {
    grid-template-columns: 1fr;
  }
  .takeaways {
    padding: 24px 20px;
  }
  .takeaways h3::after {
    display: none;
  }
  .takeaways li {
    font-size: 16px;
  }
}

/* ── Unified Brand Layer (Final Authority) ───────────────── */
:root {
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  font-family: var(--font-body);
  color: #1e293b;
  line-height: 1.65;
}

h1, h2, .hero h1, .page-hero h1, .blog-post h1 {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
  font-weight: 700;
}

h3, h4, .section-label, .booking-step-label {
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
}

.section-sub,
.content-main p,
.blog-card p,
.review-card__text {
  color: #475569;
}

.top-ribbon {
  min-height: 30px;
  padding: 5px 0;
  font-size: 12px;
  background: linear-gradient(180deg, #3f9a3e, #328a33);
}

.nav {
  height: 76px;
  box-shadow: 0 1px 0 #e5e7eb, 0 8px 24px rgba(15, 23, 42, 0.06);
}

.nav__logo img {
  height: 52px;
}

.nav__logo-text {
  font-size: 34px;
  letter-spacing: -0.03em;
}

.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.nav__actions .btn {
  font-size: 14px;
  padding: 11px 22px;
}

.hero {
  min-height: 72vh;
}

.hero .container {
  padding-left: clamp(30px, 6vw, 76px);
}

.hero__content {
  max-width: 700px;
  margin-left: 0;
}

.hero h1 {
  text-align: left;
  font-size: clamp(44px, 5.1vw, 70px);
  line-height: 1.03;
  margin-bottom: 16px;
}

.hero__sub {
  text-align: left;
  font-size: 21px;
  max-width: 640px;
}

.hero__ctas {
  justify-content: flex-start;
}

.page-hero h1 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
}

.btn {
  border-radius: 10px;
}

.service-card,
.review-card,
.blog-card,
.booking-form-wrap,
.booking-pricing-panel,
.quote-card {
  border-radius: 14px;
}

@media (max-width: 768px) {
  .nav {
    height: 64px;
  }
  .nav__logo img {
    height: 42px;
  }
  .nav__logo-text {
    font-size: 28px;
  }
  .hero .container {
    padding-left: 20px;
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 46px);
  }
  .hero__sub {
    font-size: 16px;
  }
}
