/* ================================================================
   RV REPAIR TEMPLATE — MASTER STYLESHEET
   Version: 1.0 | Built for 2026
   ----------------------------------------------------------------
   QUICK CUSTOMIZATION:
   1. Update --clr-primary (main brand color)
   2. Update --clr-secondary (dark/navy color)
   3. Update --clr-accent (highlight color)
   4. Swap Google Font names in @import + --font-* vars
   5. Replace placeholder images (placehold.co) with real photos
   ================================================================ */

/* ----------------------------------------------------------------
   GOOGLE FONTS
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');


/* ================================================================
   1. DESIGN TOKENS — CHANGE THESE TO RETHEME THE SITE
   ================================================================ */
:root {
  /* ---- Brand Colors ---- */
  --clr-primary:         #E8521A;   /* Main orange */
  --clr-primary-light:   #FF6B35;
  --clr-primary-dark:    #C43E0E;
  --clr-primary-alpha:   rgba(232, 82, 26, 0.12);

  --clr-secondary:       #0F1B35;   /* Deep navy */
  --clr-secondary-light: #1A2F5E;

  --clr-accent:          #FFB347;   /* Warm amber highlight */

  /* ---- Neutral Palette ---- */
  --clr-text:            #1A1A2E;
  --clr-text-muted:      #6B7280;
  --clr-text-light:      #9CA3AF;
  --clr-bg:              #FFFFFF;
  --clr-bg-alt:          #F8F7F4;
  --clr-bg-dark:         #0F1B35;
  --clr-border:          #E5E7EB;
  --clr-border-light:    #F3F4F6;
  --clr-success:         #10B981;
  --clr-star:            #FBBF24;

  /* ---- Typography ---- */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ---- Type Scale ---- */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-6xl:  5rem;

  /* ---- Spacing ---- */
  --s-1:  0.25rem;  --s-2: 0.5rem;   --s-3: 0.75rem;
  --s-4:  1rem;     --s-5: 1.25rem;  --s-6: 1.5rem;
  --s-8:  2rem;     --s-10: 2.5rem;  --s-12: 3rem;
  --s-16: 4rem;     --s-20: 5rem;    --s-24: 6rem;
  --s-32: 8rem;

  --section-py:    clamp(4rem, 8vw, 7rem);
  --section-py-sm: clamp(3rem, 5vw, 5rem);

  /* ---- Layout ---- */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --nav-height:    80px;

  /* ---- Shape ---- */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-2xl:  48px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-xl:      0 24px 64px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-primary: 0 8px 32px rgba(232, 82, 26, 0.35);
  --shadow-card:    0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);

  /* ---- Motion ---- */
  --ease:            cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:     cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:      all 0.25s var(--ease);
  --transition-slow: all 0.4s var(--ease);
}


/* ================================================================
   2. RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-bg);
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text);
  letter-spacing: -0.02em;
}


/* ================================================================
   3. TYPOGRAPHY
   ================================================================ */
.text-xs   { font-size: var(--text-xs); }
.text-sm   { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg   { font-size: var(--text-lg); }
.text-xl   { font-size: var(--text-xl); }
.text-2xl  { font-size: var(--text-2xl); }
.text-3xl  { font-size: var(--text-3xl); }
.text-4xl  { font-size: var(--text-4xl); }

.font-light  { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semi   { font-weight: 600; }
.font-bold   { font-weight: 700; }
.font-extra  { font-weight: 800; }

.text-center { text-align: center; }
.text-muted  { color: var(--clr-text-muted); }
.text-primary { color: var(--clr-primary); }
.text-white   { color: #fff; }

.heading-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: var(--s-4);
}

.heading-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: var(--radius-full);
}

.section-heading {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  margin-bottom: var(--s-5);
}

.section-subheading {
  font-size: var(--text-lg);
  color: var(--clr-text-muted);
  max-width: 56ch;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ================================================================
   4. LAYOUT
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1440px; }

.section { padding-block: var(--section-py); }
.section--sm { padding-block: var(--section-py-sm); }
.section--alt { background: var(--clr-bg-alt); }
.section--dark {
  background: var(--clr-bg-dark);
  color: #fff;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.section-header {
  margin-bottom: var(--s-16);
}

.section-header--center { text-align: center; }
.section-header--center .section-subheading { margin-inline: auto; }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.gap-4  { gap: var(--s-4); }
.gap-6  { gap: var(--s-6); }
.gap-8  { gap: var(--s-8); }
.gap-12 { gap: var(--s-12); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}

.split--reverse > *:first-child { order: 2; }
.split--reverse > *:last-child  { order: 1; }


/* ================================================================
   5. NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition-slow);
}

.nav--transparent {
  background: transparent;
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border-light);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.nav--scrolled .nav__logo { color: var(--clr-text); }
.nav--scrolled .nav__link { color: var(--clr-text); }
.nav--transparent .nav__logo,
.nav--transparent .nav__link { color: #fff; }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: var(--transition);
}

.nav__logo span { color: var(--clr-primary); }

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--clr-primary) !important;
  background: var(--clr-primary-alpha);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}

.nav__dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

.nav__dropdown:hover .nav__dropdown-toggle svg,
.nav__dropdown--open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + var(--s-3));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 200px;
  padding: var(--s-2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown--open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.nav__dropdown-link {
  display: block;
  padding: var(--s-2) var(--s-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text) !important;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__dropdown-link:hover {
  background: var(--clr-bg-alt);
  color: var(--clr-primary) !important;
}

/* Nav CTA */
.nav__cta {
  margin-left: var(--s-4);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s-2);
  border-radius: var(--radius-md);
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--clr-border);
  padding: var(--s-6) var(--container-pad) var(--s-8);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.nav__mobile--open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__mobile-link {
  display: block;
  padding: var(--s-3) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border-light);
  transition: var(--transition);
}

.nav__mobile-link:hover { color: var(--clr-primary); }

.nav__mobile-sub {
  padding-left: var(--s-4);
}

.nav__mobile-sub-link {
  display: block;
  padding: var(--s-2) 0;
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  font-weight: 500;
}

.nav__mobile-sub-link:hover { color: var(--clr-primary); }

.nav__mobile-cta {
  margin-top: var(--s-6);
}


/* ================================================================
   6. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition);
}

.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn--primary {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,82,26,0.4);
}

.btn--secondary {
  background: var(--clr-secondary);
  color: #fff;
}

.btn--secondary:hover {
  background: var(--clr-secondary-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--clr-primary);
}

.btn--outline:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn--ghost {
  background: var(--clr-primary-alpha);
  color: var(--clr-primary);
}

.btn--ghost:hover {
  background: var(--clr-primary);
  color: #fff;
}

.btn--lg {
  font-size: var(--text-base);
  padding: 1.1rem 2.25rem;
}

.btn--sm {
  font-size: var(--text-xs);
  padding: 0.6rem 1.25rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
}


/* ================================================================
   7. BADGES & TAGS
   ================================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.badge--primary  { background: var(--clr-primary-alpha); color: var(--clr-primary); }
.badge--dark     { background: var(--clr-secondary); color: #fff; }
.badge--success  { background: rgba(16,185,129,0.12); color: var(--clr-success); }
.badge--accent   { background: rgba(255,179,71,0.18); color: #A87000; }
.badge--outline  { border: 1.5px solid var(--clr-border); color: var(--clr-text-muted); }

.tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  color: var(--clr-text-muted);
  transition: var(--transition);
}

.tag:hover {
  background: var(--clr-primary-alpha);
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}


/* ================================================================
   8. CARDS
   ================================================================ */
.card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-card);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
}

.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card__body {
  padding: var(--s-6);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: var(--clr-primary-alpha);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin-bottom: var(--s-4);
  flex-shrink: 0;
}

.card__icon svg { width: 26px; height: 26px; }

.card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--s-2);
}

.card__text {
  color: var(--clr-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--s-4);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--clr-primary);
  transition: var(--transition);
}

.card__link svg { width: 16px; height: 16px; transition: var(--transition); }
.card__link:hover svg { transform: translateX(4px); }

/* Service card variant */
.service-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-card__img { transform: scale(1.05); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,27,53,0.9) 0%, rgba(15,27,53,0.2) 60%, transparent 100%);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  transition: var(--transition);
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--s-2);
  color: #fff;
}

.service-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  gap: var(--s-1);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.service-card:hover .service-card__link {
  opacity: 1;
  transform: translateY(0);
}

/* Blog card */
.blog-card { display: flex; flex-direction: column; }
.blog-card .card__img { aspect-ratio: 16/9; }
.blog-card .card__body { flex: 1; display: flex; flex-direction: column; }
.blog-card .card__text { flex: 1; }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--s-3);
}

/* Review card */
.review-card {
  padding: var(--s-6);
  border-radius: var(--radius-lg);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
}

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

.review-card__stars { display: flex; gap: 3px; margin-bottom: var(--s-3); }
.review-card__stars svg { width: 18px; height: 18px; color: var(--clr-star); fill: currentColor; }

.review-card__text {
  font-size: var(--text-sm);
  line-height: 1.8;
  color: var(--clr-text);
  margin-bottom: var(--s-5);
  font-style: italic;
}

.review-card__author { display: flex; align-items: center; gap: var(--s-3); }
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
  background: var(--clr-border);
}

.review-card__name { font-weight: 700; font-size: var(--text-sm); }
.review-card__vehicle { font-size: var(--text-xs); color: var(--clr-text-muted); }

/* Feature card */
.feature-card {
  padding: var(--s-8);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
}

.feature-card:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Location card */
.location-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
  transition: var(--transition-slow);
}

.location-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.location-card__map {
  width: 100%;
  height: 180px;
  background: var(--clr-bg-alt);
  object-fit: cover;
}

.location-card__body {
  padding: var(--s-5);
}

.location-card__name {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--s-2);
}

.location-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

.location-card__line {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
}

.location-card__line svg { width: 16px; height: 16px; color: var(--clr-primary); flex-shrink: 0; }

/* Team card */
.team-card { text-align: center; }
.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-bottom: var(--s-4);
  background: var(--clr-bg-alt);
}

.team-card__name { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--s-1); }
.team-card__role { font-size: var(--text-sm); color: var(--clr-primary); font-weight: 600; margin-bottom: var(--s-2); }
.team-card__bio { font-size: var(--text-sm); color: var(--clr-text-muted); }


/* ================================================================
   9. HERO — HOME
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 27, 53, 0.9) 0%,
    rgba(15, 27, 53, 0.6) 60%,
    rgba(232, 82, 26, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-block: var(--s-32);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--s-6);
}

.hero__title {
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: var(--s-6);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin-bottom: var(--s-10);
  line-height: 1.7;
}

.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-6);
  margin-top: var(--s-12);
  padding-top: var(--s-10);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.hero__trust-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}

.hero__trust-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  line-height: 1.3;
}

.hero__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--s-1);
}

.hero__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--clr-star);
  color: var(--clr-star);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ================================================================
   10. PAGE HEADER (inner pages)
   ================================================================ */
.page-header {
  position: relative;
  background: var(--clr-secondary);
  color: #fff;
  padding-top: calc(var(--nav-height) + var(--s-16));
  padding-bottom: var(--s-16);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,82,26,0.2) 0%, transparent 60%);
}

.page-header--has-bg .page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header--has-bg .page-header__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.15;
}

.page-header__content { position: relative; z-index: 1; }

.page-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--s-4);
}

.page-header__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--s-5);
  max-width: 20ch;
}

.page-header__subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.7);
  max-width: 55ch;
  line-height: 1.7;
  margin-bottom: var(--s-8);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
}

.breadcrumb a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.breadcrumb a:hover { color: var(--clr-accent); }
.breadcrumb svg { width: 12px; height: 12px; }
.breadcrumb__current { color: rgba(255,255,255,0.9); }


/* ================================================================
   11. STATS BAR
   ================================================================ */
.stats-bar {
  background: var(--clr-secondary);
  padding: var(--s-10) 0;
}

.stats-bar--light {
  background: var(--clr-bg-alt);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--s-8);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.stat-item__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.stats-bar--light .stat-item__number { color: var(--clr-primary); }
.stats-bar--light .stat-item__label  { color: var(--clr-text-muted); }


/* ================================================================
   12. CTA BANNER
   ================================================================ */
.cta-banner {
  background: var(--clr-primary);
  padding: var(--s-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 50%;
  height: 200%;
  background: rgba(255,255,255,0.06);
  transform: rotate(12deg);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -5%;
  width: 40%;
  height: 200%;
  background: rgba(0,0,0,0.06);
  transform: rotate(-15deg);
}

.cta-banner__inner { position: relative; z-index: 1; }

.cta-banner__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--s-4);
}

.cta-banner__text {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s-8);
}

.cta-banner--dark {
  background: var(--clr-secondary);
}


/* ================================================================
   13. TRUST LOGOS / ICON LIST
   ================================================================ */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.icon-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}

.icon-list__icon {
  width: 40px;
  height: 40px;
  background: var(--clr-primary-alpha);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.icon-list__icon svg { width: 20px; height: 20px; }

.icon-list__title {
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--s-1);
}

.icon-list__text { font-size: var(--text-sm); color: var(--clr-text-muted); }

/* Checkmark list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-sm);
  font-weight: 500;
}

.check-list__item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--clr-primary);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}


/* ================================================================
   14. PROCESS STEPS
   ================================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-8);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--clr-border);
  z-index: 0;
}

.step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.step__number {
  width: 72px;
  height: 72px;
  background: var(--clr-bg);
  border: 2px solid var(--clr-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--clr-primary);
  margin: 0 auto var(--s-4);
}

.step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--s-2);
}

.step__text { font-size: var(--text-sm); color: var(--clr-text-muted); }


/* ================================================================
   15. FAQ ACCORDION
   ================================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  background: var(--clr-bg);
}

.faq-item--open {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px var(--clr-primary-alpha);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  background: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover { background: var(--clr-bg-alt); }

.faq-question__text {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--clr-text);
}

.faq-question__icon {
  width: 32px;
  height: 32px;
  background: var(--clr-primary-alpha);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-question__icon svg { width: 16px; height: 16px; transition: var(--transition); }
.faq-item--open .faq-question__icon { background: var(--clr-primary); color: #fff; }
.faq-item--open .faq-question__icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
}

.faq-item--open .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.faq-answer__inner {
  padding: 0 var(--s-6) var(--s-6);
  color: var(--clr-text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
}


/* ================================================================
   16. FORMS
   ================================================================ */
.form { display: flex; flex-direction: column; gap: var(--s-4); }

.form-group { display: flex; flex-direction: column; gap: var(--s-2); }
.form-group--row { flex-direction: row; align-items: center; gap: var(--s-4); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text);
}

input, select, textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--clr-text);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px var(--clr-primary-alpha);
}

input::placeholder, textarea::placeholder { color: var(--clr-text-light); }

textarea { resize: vertical; min-height: 140px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236B7280'%3E%3Cpath d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 20px;
  padding-right: 2.5rem;
}

.form-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--s-8);
  box-shadow: var(--shadow-lg);
}


/* ================================================================
   17. BLOG / ARTICLE
   ================================================================ */
.article-body {
  font-size: var(--text-lg);
  line-height: 1.85;
  color: var(--clr-text);
}

.article-body h2 {
  font-size: var(--text-3xl);
  margin-top: var(--s-12);
  margin-bottom: var(--s-5);
}

.article-body h3 {
  font-size: var(--text-2xl);
  margin-top: var(--s-8);
  margin-bottom: var(--s-4);
}

.article-body p { margin-bottom: var(--s-6); }

.article-body ul, .article-body ol {
  margin-bottom: var(--s-6);
  padding-left: var(--s-6);
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li { margin-bottom: var(--s-2); }

.article-body blockquote {
  border-left: 4px solid var(--clr-primary);
  padding: var(--s-4) var(--s-6);
  margin: var(--s-8) 0;
  background: var(--clr-bg-alt);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--clr-text-muted);
}

.article-body img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: var(--s-8) 0;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--clr-border);
  margin-bottom: var(--s-8);
  font-size: var(--text-sm);
  color: var(--clr-text-muted);
}

.article-meta__author { display: flex; align-items: center; gap: var(--s-2); }
.article-meta__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.author-bio {
  display: flex;
  gap: var(--s-6);
  padding: var(--s-8);
  background: var(--clr-bg-alt);
  border-radius: var(--radius-xl);
  margin-top: var(--s-12);
  align-items: flex-start;
}

.author-bio__photo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.author-bio__name { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--s-1); }
.author-bio__role { font-size: var(--text-sm); color: var(--clr-primary); font-weight: 600; margin-bottom: var(--s-3); }
.author-bio__text { font-size: var(--text-sm); color: var(--clr-text-muted); line-height: 1.7; }

/* Sidebar */
.layout-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--s-12);
  align-items: start;
}

.sidebar__widget {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  margin-bottom: var(--s-6);
}

.sidebar__widget:last-child { margin-bottom: 0; }

.sidebar__widget-title {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 2px solid var(--clr-primary);
  display: inline-block;
}

.sidebar__post { display: flex; gap: var(--s-3); margin-bottom: var(--s-4); }
.sidebar__post:last-child { margin-bottom: 0; }
.sidebar__post-img {
  width: 72px;
  height: 60px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--clr-bg-alt);
}

.sidebar__post-title {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--s-1);
}

.sidebar__post-date { font-size: var(--text-xs); color: var(--clr-text-muted); }

/* Category filter */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-10);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-12);
}

.pagination__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text);
  transition: var(--transition);
  cursor: pointer;
  background: var(--clr-bg);
}

.pagination__btn:hover, .pagination__btn--active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
}

.pagination__btn svg { width: 16px; height: 16px; }


/* ================================================================
   18. CONTACT / INFO
   ================================================================ */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-6);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--clr-primary);
  box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
  width: 48px;
  height: 48px;
  background: var(--clr-primary-alpha);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.contact-info-card__icon svg { width: 22px; height: 22px; }
.contact-info-card__label { font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--clr-text-muted); margin-bottom: var(--s-1); }
.contact-info-card__value { font-size: var(--text-base); font-weight: 600; color: var(--clr-text); }

.map-embed {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  color: var(--clr-text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
}

.map-placeholder svg { width: 48px; height: 48px; color: var(--clr-border); }


/* ================================================================
   19. RATINGS OVERVIEW
   ================================================================ */
.ratings-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-8);
  align-items: center;
  padding: var(--s-8);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  margin-bottom: var(--s-12);
  box-shadow: var(--shadow-card);
}

.ratings-big {
  text-align: center;
  padding-right: var(--s-8);
  border-right: 1px solid var(--clr-border);
}

.ratings-big__number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--clr-text);
  line-height: 1;
}

.ratings-big__stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin: var(--s-2) 0;
}

.ratings-big__stars svg { width: 22px; height: 22px; fill: var(--clr-star); color: var(--clr-star); }
.ratings-big__count { font-size: var(--text-sm); color: var(--clr-text-muted); }

.rating-bar { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-2); }
.rating-bar__label { font-size: var(--text-sm); font-weight: 600; min-width: 40px; }
.rating-bar__track { flex: 1; height: 8px; background: var(--clr-border); border-radius: var(--radius-full); overflow: hidden; }
.rating-bar__fill { height: 100%; background: var(--clr-star); border-radius: var(--radius-full); }
.rating-bar__pct { font-size: var(--text-xs); color: var(--clr-text-muted); min-width: 36px; text-align: right; }


/* ================================================================
   20. FOOTER
   ================================================================ */
.footer {
  background: var(--clr-secondary);
  color: rgba(255,255,255,0.7);
  padding-top: var(--s-24);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-12);
  padding-bottom: var(--s-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .nav__logo {
  font-size: var(--text-2xl);
  margin-bottom: var(--s-4);
  display: block;
  color: #fff;
}

.footer__tagline {
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: var(--s-6);
  max-width: 36ch;
}

.footer__social {
  display: flex;
  gap: var(--s-3);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--clr-primary);
  color: #fff;
}

.footer__social-link svg { width: 18px; height: 18px; }

.footer__col-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--s-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.footer__link:hover { color: var(--clr-accent); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
  font-size: var(--text-sm);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  padding: var(--s-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  gap: var(--s-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer__legal a:hover { color: rgba(255,255,255,0.8); }


/* ================================================================
   21. BACK TO TOP
   ================================================================ */
.back-to-top {
  position: fixed;
  bottom: var(--s-6);
  right: var(--s-6);
  width: 48px;
  height: 48px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-primary);
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  pointer-events: none;
}

.back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-2px);
}

.back-to-top svg { width: 20px; height: 20px; }


/* ================================================================
   22. ANIMATION CLASSES
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-left--visible, .reveal-right--visible {
  opacity: 1;
  transform: translateX(0);
}


/* ================================================================
   23. UTILITIES
   ================================================================ */
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--s-4); }
.mb-8 { margin-bottom: var(--s-8); }
.mb-12 { margin-bottom: var(--s-12); }

.w-full { width: 100%; }
.max-w-prose { max-width: 70ch; }
.max-w-xl { max-width: 600px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

.divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin-block: var(--s-8);
}

.highlight-box {
  background: var(--clr-primary-alpha);
  border-left: 4px solid var(--clr-primary);
  padding: var(--s-4) var(--s-6);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--text-sm);
  color: var(--clr-text);
}

.highlight-box strong { color: var(--clr-primary); }

/* Sticky sidebar */
.sticky-top {
  position: sticky;
  top: calc(var(--nav-height) + var(--s-6));
}


/* ================================================================
   24. RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .layout-sidebar { grid-template-columns: 1fr; }
  .layout-sidebar .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); }
  .split { gap: var(--s-10); }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
    --section-py: clamp(3rem, 8vw, 5rem);
  }

  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .nav--transparent .nav__hamburger { color: #fff; }
  .nav--scrolled .nav__hamburger  { color: var(--clr-text); }

  .split { grid-template-columns: 1fr; }
  .split--reverse > * { order: unset !important; }

  .hero__content { padding-block: var(--s-24) var(--s-16); }
  .hero__trust { gap: var(--s-5); }

  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer__bottom { flex-direction: column; text-align: center; }

  .ratings-overview { grid-template-columns: 1fr; }
  .ratings-big { padding-right: 0; border-right: none; padding-bottom: var(--s-6); border-bottom: 1px solid var(--clr-border); }

  .steps::before { display: none; }

  .layout-sidebar .sidebar { grid-template-columns: 1fr; }

  .page-header { padding-top: calc(var(--nav-height) + var(--s-8)); padding-bottom: var(--s-10); }
}

@media (max-width: 480px) {
  .btn--lg { padding: 1rem 1.5rem; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .hero__trust { flex-direction: column; gap: var(--s-4); }
}
