/* ============================================================
   TRUST EDGE — MAIN STYLESHEET
   Theme: Dark luxury, gold accents, editorial serif headlines
   ============================================================ */

:root {
  --black: #07041a;
  --black-2: #0e0926;
  --black-3: #170f35;
  --border: rgba(140,100,230,0.14);
  --border-mid: rgba(140,100,230,0.28);
  --purple: #7c5cbf;
  --purple-light: #a07ee0;
  --purple-dim: rgba(124,92,191,0.14);
  --purple-glow: rgba(124,92,191,0.08);
  --gold: #c9a96e;
  --gold-light: #dbbf8a;
  --gold-dim: rgba(201,169,110,0.12);
  --white: #ede9ff;
  --white-60: rgba(237,233,255,0.6);
  --white-40: rgba(237,233,255,0.4);
  --white-20: rgba(237,233,255,0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --max-w: 1100px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ======================== UTILITIES ======================== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 48px;
}
.section-h2.no-br { margin-bottom: 20px; }
.section-h2.light { color: var(--white); }

/* ======================== BUTTONS ======================== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary.full-w { width: 100%; text-align: center; display: block; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  padding: 13px 26px;
  border-radius: 5px;
  border: 0.5px solid var(--border-mid);
  cursor: pointer;
  transition: border-color var(--transition);
  text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(240,237,230,0.4); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-nav {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-nav:hover { background: var(--gold-light); }

/* ======================== NAV ======================== */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7,4,26,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--border);
  transition: background var(--transition);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo span { color: var(--gold); }
.logo-mark {
  width: auto;
  height: 34px;
  flex-shrink: 0;
}
.footer-logo { font-size: 28px; margin-bottom: 12px; }
.footer-logo .logo-mark { height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--white-60);
  font-weight: 400;
  transition: color var(--transition);
  letter-spacing: 0.2px;
}
.nav-links a:hover { color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ======================== HERO ======================== */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(140,100,230,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,100,230,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-bg-grid::after {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(124,92,191,0.18) 0%, rgba(80,40,160,0.08) 45%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 16px;
  color: var(--white-60);
  margin-bottom: 36px;
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 0.5px solid var(--border);
}
.proof-item { display: flex; flex-direction: column; }
.proof-item strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.proof-item span {
  font-size: 11px;
  color: var(--white-40);
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: var(--border-mid);
}

/* AUDIT CARD */
.audit-card {
  background: var(--black-3);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.audit-card-header {
  background: var(--black-2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 0.5px solid var(--border);
  font-size: 13px;
  color: var(--white-60);
  font-weight: 400;
}
.audit-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.audit-dot.green { background: #3dd68c; }
.audit-form {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.audit-form label {
  font-size: 11px;
  color: var(--white-40);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.audit-form input,
.audit-form select {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid var(--border-mid);
  border-radius: 5px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.audit-form input::placeholder { color: var(--white-40); }
.audit-form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.audit-form input:focus,
.audit-form select:focus { border-color: rgba(160,126,224,0.6); box-shadow: 0 0 0 3px rgba(124,92,191,0.1); }
.micro-copy {
  font-size: 11px;
  color: var(--white-40);
  text-align: center;
}

/* ======================== TRUST BAR ======================== */
.trust-bar {
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--black-2);
  padding: 16px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-bar-inner span {
  font-size: 12px;
  color: var(--white-40);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 400;
}
.trust-bar-inner .dot {
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}

/* ======================== PROBLEM ======================== */
.problem-section { background: var(--black-2); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.problem-card {
  background: var(--black);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.problem-card:hover {
  border-color: rgba(160,126,224,0.35);
  box-shadow: 0 8px 32px rgba(124,92,191,0.12);
  transform: translateY(-3px);
}
.problem-icon { font-size: 28px; margin-bottom: 16px; }
.problem-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.problem-card p { font-size: 13.5px; color: var(--white-60); line-height: 1.7; font-weight: 300; }

/* ======================== SERVICES ======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--black-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: block;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  cursor: pointer;
}
.service-card:hover {
  border-color: rgba(160,126,224,0.4);
  background: rgba(124,92,191,0.06);
  box-shadow: 0 12px 40px rgba(124,92,191,0.14);
  transform: translateY(-3px);
}
.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(201,169,110,0.45);
  margin-bottom: 18px;
  font-weight: 600;
}
.service-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 13.5px;
  color: var(--white-60);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}
.service-link {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  transition: color var(--transition);
}
.service-card:hover .service-link { color: var(--gold-light); }

/* ======================== HOW IT WORKS ======================== */
.how-section { background: var(--black-2); }
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 48px;
}
.step { flex: 1; text-align: center; }
.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 0.5px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 auto 18px;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}
.step p { font-size: 13.5px; color: var(--white-60); line-height: 1.65; font-weight: 300; }
.step-arrow {
  font-size: 20px;
  color: rgba(201,169,110,0.3);
  margin-top: 14px;
  flex-shrink: 0;
}
.center-cta { text-align: center; }

/* ======================== TESTIMONIALS ======================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--black-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-quote {
  font-size: 14px;
  color: rgba(240,237,230,0.72);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 300;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 0.5px solid var(--border);
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 0.5px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 13px; font-weight: 600; }
.testi-author span { font-size: 11.5px; color: var(--white-40); }

/* ======================== LEAD MAGNET ======================== */
.lead-section { background: rgba(201,169,110,0.05); border-top: 0.5px solid rgba(201,169,110,0.12); border-bottom: 0.5px solid rgba(201,169,110,0.12); }
.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lead-left p {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}
.lead-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-list li {
  font-size: 14px;
  color: var(--white-60);
  display: flex;
  gap: 8px;
}
.lead-list li::before { content: none; }
.lead-form {
  background: var(--black-3);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lead-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.lead-form input {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid var(--border-mid);
  border-radius: 5px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.lead-form input::placeholder { color: var(--white-40); }
.lead-form input:focus { border-color: rgba(201,169,110,0.45); }
.lead-success {
  background: var(--black-3);
  border: 0.5px solid rgba(61,214,140,0.3);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
}
.success-icon {
  width: 56px;
  height: 56px;
  background: rgba(61,214,140,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3dd68c;
  margin: 0 auto 20px;
}
.lead-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.lead-success p { font-size: 14px; color: var(--white-60); }

/* ======================== BLOG PREVIEW ======================== */
.blog-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.blog-header-row .section-h2 { margin-bottom: 0; }
.blog-preview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}
.blog-card {
  background: var(--black-2);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: block;
  transition: border-color var(--transition), transform var(--transition);
}
.blog-card:hover {
  border-color: rgba(201,169,110,0.2);
  transform: translateY(-2px);
}
.blog-card.featured { padding: 36px; }
.blog-tag {
  display: inline-block;
  background: var(--gold-dim);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.35;
}
.blog-card.featured h3 { font-size: 22px; }
.blog-card p {
  font-size: 13.5px;
  color: var(--white-60);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 11.5px;
  color: var(--white-40);
  padding-top: 14px;
  border-top: 0.5px solid var(--border);
}

/* ======================== BOOKING CTA ======================== */
.booking-cta-section {
  background: var(--black-3);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.booking-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.booking-sub {
  font-size: 15px;
  color: var(--white-60);
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 300;
}
.booking-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--white-60);
  font-weight: 300;
}
.booking-feature span {
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
}

/* ======================== FOOTER ======================== */
.footer { background: var(--black-2); border-top: 0.5px solid var(--border); padding-top: 72px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 0.5px solid var(--border);
}
.footer-brand p {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.7;
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-social a {
  font-size: 12.5px;
  color: var(--white-40);
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--gold); }
.footer-links-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  font-size: 13.5px;
  color: var(--white-40);
  transition: color var(--transition);
  font-weight: 300;
}
.footer-links-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { font-size: 12px; color: var(--white-40); }

/* ======================== ANIMATIONS ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ======================== INNER PAGES ======================== */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  border-bottom: 0.5px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 16px;
  color: var(--white-60);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* BOOKING PAGE */
.booking-page-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
}
.booking-embed-placeholder {
  background: var(--black-2);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 16px;
}
.booking-embed-placeholder p {
  font-size: 14px;
  color: var(--white-40);
  max-width: 280px;
  line-height: 1.65;
}
.booking-embed-placeholder strong { font-size: 16px; color: var(--white); }

/* CONTACT FORM */
.contact-form {
  background: var(--black-2);
  border: 0.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.input-row { display: flex; gap: 12px; }
.input-row input { flex: 1; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border-mid);
  border-radius: 5px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  -webkit-appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--white-40); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: rgba(160,126,224,0.6); box-shadow: 0 0 0 3px rgba(124,92,191,0.1); }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 64px 0;
}
.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px;
}
.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 16px;
  line-height: 1.3;
}
.blog-post-body p {
  font-size: 16px;
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}
.blog-post-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.blog-post-body li {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 8px;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-preview-grid { grid-template-columns: 1fr 1fr; }
  .blog-preview-grid .blog-card.featured { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .booking-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .booking-page-inner { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links { display: none; flex-direction: column; gap: 20px; position: fixed; top: 68px; left: 0; right: 0; background: var(--black); padding: 24px; border-bottom: 0.5px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .trust-bar-inner .dot { display: none; }
  .blog-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}
