/* ============================================================
   MOCHA PROPERTY — Global Stylesheet
   Brand: Mocha Brown (#3B1F0E), Warm Gold (#C9A96E), Cream (#FAF7F2)
   ============================================================ */

:root {
  --mocha:      #3B1F0E;
  --mocha-mid:  #5C3317;
  --gold:       #C9A96E;
  --gold-light: #E8D5B0;
  --cream:      #FAF7F2;
  --off-white:  #F4EFE8;
  --dark:       #1A1108;
  --text:       #2C1A0E;
  --text-muted: #7A6655;
  --white:      #FFFFFF;
  --border:     #E0D5C8;
  --shadow-sm:  0 2px 8px rgba(59,31,14,.08);
  --shadow-md:  0 8px 32px rgba(59,31,14,.12);
  --shadow-lg:  0 20px 60px rgba(59,31,14,.18);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all 0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.2;
  color: var(--mocha);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }
.lead { font-size: 1.15rem; }

/* ---- Utilities ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.bg-cream    { background-color: var(--cream); }
.bg-mocha    { background-color: var(--mocha); }
.bg-off      { background-color: var(--off-white); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--mocha);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #b8924d;
  border-color: #b8924d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,169,110,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-dark {
  background: var(--mocha);
  color: var(--white);
  border-color: var(--mocha);
}
.btn-dark:hover {
  background: var(--mocha-mid);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--mocha);
}

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}
.badge-gold    { background: var(--gold-light); color: var(--mocha); }
.badge-mocha   { background: var(--mocha); color: var(--white); }
.badge-green   { background: #D4EDDA; color: #155724; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 36px; width: auto; transition: var(--transition); }
.nav__logo .logo-dark { display: none; }
.nav__logo .logo-light { display: block; }
.nav.scrolled .nav__logo .logo-dark { display: block; }
.nav.scrolled .nav__logo .logo-light { display: none; }
.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav__logo-text { color: var(--mocha); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active { color: var(--mocha); }
.nav__cta { margin-left: 16px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--mocha); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1A0E06 0%, #3B1F0E 50%, #5C3317 100%);
}
.hero__bg-image {
  position: absolute; inset: 0;
  background-image: url('https://mochaproperty.co.uk/wp-content/uploads/2025/12/mocha_let_me.webp');
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,14,6,.95) 0%, rgba(26,14,6,.6) 60%, rgba(26,14,6,.2) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.hero__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero__heading em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}
.hero__stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--radius);
  padding: 24px 20px;
  backdrop-filter: blur(8px);
}
.hero__stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card-stack {
  position: relative;
  width: 340px;
  height: 400px;
}
.hero__card {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  padding: 28px;
  color: var(--white);
}
.hero__card--main {
  width: 300px; top: 40px; left: 20px;
  background: linear-gradient(145deg, rgba(201,169,110,.15), rgba(255,255,255,.06));
}
.hero__card--accent {
  width: 220px; bottom: 20px; right: 0;
  background: rgba(26,14,6,.7);
  border-color: rgba(201,169,110,.4);
  padding: 20px;
}
.hero__card-stat {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}
.hero__card-label {
  font-size: .82rem;
  opacity: .7;
  margin-top: 4px;
}
.hero__card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
}
.hero__card-text { font-size: .8rem; opacity: .75; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
}
.trust-bar__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-bar__item img {
  height: 36px; width: auto;
  filter: grayscale(30%) opacity(.9);
  transition: var(--transition);
}
.trust-bar__item:hover img { filter: none; }
.trust-bar__item-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 80px;
  line-height: 1.3;
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured {
  background: var(--mocha);
  border-color: var(--mocha);
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p,
.service-card--featured li { color: rgba(255,255,255,.7); }
.service-card--featured .service-card__price { color: var(--gold); }
.service-card--featured::before { background: var(--gold); transform: scaleX(1); }
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.service-card--featured .service-card__icon {
  background: rgba(255,255,255,.1);
}
.service-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--mocha);
  margin: 16px 0 8px;
  line-height: 1;
}
.service-card__price-note {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
}
.service-card__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 48px;
}
.compare-table th {
  background: var(--mocha);
  color: var(--white);
  padding: 18px 24px;
  text-align: left;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.compare-table th.gold { background: var(--gold); color: var(--mocha); }
.compare-table td {
  padding: 16px 24px;
  font-size: .92rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--cream); }
.compare-table .icon-check { color: #2E7D32; font-weight: 700; }
.compare-table .icon-cross { color: #C62828; }
.compare-table .highlight { color: var(--mocha); font-weight: 700; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--mocha) 0%, var(--mocha-mid) 100%);
  padding: 72px 24px;
}
.stats-strip__grid {
  max-width: 1000px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stats-strip__value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stats-strip__label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card__text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--mocha);
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-card__name { font-size: .9rem; font-weight: 600; color: var(--text); }
.testimonial-card__role { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   ABOUT / TEAM
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.about-split__image img { width: 100%; height: 100%; object-fit: cover; }
.about-split__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.about-split__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-split__item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-split__item-title { font-size: .95rem; font-weight: 600; margin-bottom: 4px; color: var(--mocha); }
.about-split__item-text  { font-size: .88rem; color: var(--text-muted); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-info__icon {
  font-size: 1.2rem;
  width: 44px; height: 44px;
  background: var(--mocha);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info__label { font-size: .78rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.contact-info__value { font-size: .95rem; color: var(--text); font-weight: 500; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}
.footer__grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 260px;
}
.footer__col h4 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}
.footer__col ul a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer__social a:hover { background: var(--gold); color: var(--mocha); border-color: var(--gold); }
.footer__bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer__bottom a:hover { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--mocha) 0%, var(--mocha-mid) 100%);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('https://mochaproperty.co.uk/wp-content/uploads/2025/12/mocha_let_me.webp');
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8924d 100%);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 { color: var(--mocha); margin-bottom: 16px; }
.cta-banner p  { color: rgba(59,31,14,.75); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-ghost {
  color: var(--mocha);
  border-color: var(--mocha);
  font-weight: 700;
}
.cta-banner .btn-ghost:hover {
  background: var(--mocha);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual  { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-split   { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section    { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; }
  .form-row          { grid-template-columns: 1fr; }
  .footer__grid      { grid-template-columns: 1fr; }
  .footer__bottom    { flex-direction: column; text-align: center; }
  .hero__stats       { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger    { display: flex; }
  .compare-table     { font-size: .82rem; }
  .compare-table td,
  .compare-table th  { padding: 12px 16px; }
  .trust-bar__inner  { gap: 24px; }
  .page-hero         { padding: 120px 24px 60px; }

  /* Hero buttons — smaller, centered */
  .hero__heading  { font-size: 2rem; text-align: center; }
  .hero__label    { text-align: center; }
  .hero__sub      { text-align: center; max-width: 100%; }
  .hero__actions  { justify-content: center; }
  .hero__actions .btn {
    padding: 12px 22px;
    font-size: .85rem;
  }
  .hero__content { padding: 100px 20px 60px; }
  .cta-banner__actions .btn {
    padding: 12px 22px;
    font-size: .85rem;
  }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 20px;
    font-size: .88rem;
  }
  .hero__stats   { grid-template-columns: 1fr; }
  .stats-strip__grid { grid-template-columns: 1fr 1fr; }
  .contact-form  { padding: 24px; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ============================================================
   MOBILE NAV OPEN STATE
   ============================================================ */
.nav.open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 24px;
  gap: 20px;
  box-shadow: var(--shadow-md);
  border-top: 1px solid var(--border);
}
.nav.open .nav__links a { color: var(--text-muted); font-size: 1rem; }
.nav.open .nav__cta { display: block; margin-top: 8px; }
