/* ===== CUSTOM PROPERTIES ===== */
:root {
  --gold: #C1882D;
  --gold-light: rgba(193, 136, 45, 0.14);
  --gold-border: rgba(193, 136, 45, 0.45);
  --teal: #00A79D;
  --teal-light: rgba(0, 167, 157, 0.14);
  --teal-focus: rgba(0, 167, 157, 0.45);
  --ink: #0e1211;
  --muted: #58606b;
  --bg: #ffffff;
  --bg-alt: #f9f8f6;
  --bg-dark: #0e1211;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --max-width: 1140px;
}

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

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--bg-dark);
  color: #fff;
}
.section--dark h2, .section--dark h3 { color: #fff; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.grid { display: grid; gap: 2rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 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)); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #d4982f; color: #fff; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: #00bfb3; color: #fff; }
.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover { background: var(--gold); color: #fff; }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: #f0f0f0; color: var(--ink); }
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
}
.header--scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo:hover { color: var(--ink); }
.header__logo svg { width: 36px; height: 36px; }
.header__logo-img { height: 56px; width: auto; }

.nav { display: flex; align-items: center; gap: 0.1rem; }
.nav__link {
  padding: 0.4rem 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__link:hover, .nav__link--active { color: var(--teal); background: var(--teal-light); }
.nav__cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.6rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--sm { min-height: 40vh; }

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ink) 0%, #1a2a28 100%);
  z-index: 0;
}
.hero__bg--img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg--img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 17, 17, 0.55);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--gold-light) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, var(--teal-light) 0%, transparent 60%);
  animation: drift 26s ease-in-out infinite alternate;
}

@keyframes drift {
  0% { opacity: 0.6; transform: scale(1) translate(0, 0); }
  33% { opacity: 0.9; transform: scale(1.1) translate(2%, -1%); }
  66% { opacity: 0.7; transform: scale(0.95) translate(-2%, 1%); }
  100% { opacity: 0.8; transform: scale(1.05) translate(1%, -2%); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: #fff;
  padding: 2rem 0;
}
.hero__content h1 { color: #fff; margin-bottom: 1rem; }
.hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero--center .hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero--center .hero__actions { justify-content: center; }

/* ===== TRUST BAR ===== */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.trust-bar--center { justify-content: center; }

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0;
  background: none;
  border: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}
.trust-badge svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }
.trust-bar--separator .trust-badge + .trust-badge::before {
  content: '·';
  margin-right: 0.4rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.2em;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.card__icon--gold { background: var(--gold-light); color: var(--gold); }
.card__icon--teal { background: var(--teal-light); color: var(--teal); }
.card__icon svg { width: 28px; height: 28px; }
.card__icon img { width: 100%; height: 100%; object-fit: cover; }
.card__icon--lg { width: 80px; height: 80px; border-radius: 16px; }

/* Step cards with images */
.step__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-sm);
}

/* Report card showcase */
.report-showcase {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.report-showcase__img {
  max-width: 240px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Founder photo */
.founder-photo {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

/* Gallery strip */
.gallery-strip {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip::-webkit-scrollbar { height: 6px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--bg-alt); border-radius: 3px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
.gallery-strip img {
  flex: 0 0 auto;
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
}

/* Footer logo image */
.footer__logo-img { height: 48px; width: auto; filter: drop-shadow(0 0 0 #fff) brightness(1.5) contrast(0.8); }

.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--muted); }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== STEP CARDS ===== */
.step { text-align: center; }
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--muted); max-width: 320px; margin: 0 auto; }

/* ===== SECTION HEADERS ===== */
.section__header {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section__header p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
}
.section__label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ===== PRICING TABLE ===== */
.pricing-tier {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.pricing-tier:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-tier--featured { border: 2px solid var(--gold); }
.pricing-tier--featured .pricing-tier__badge {
  background: var(--gold);
  color: #fff;
  text-align: center;
  padding: 0.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-tier__body { padding: 2rem; }
.pricing-tier__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-light);
}
.pricing-tier__duration { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.25rem; }
.pricing-tier__prices { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; }
.pricing-tier__price-item { display: flex; flex-direction: column; }
.pricing-tier__price-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); }
.pricing-tier__price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
}
.pricing-tier__price--recurring { color: var(--teal); }
.pricing-tier__desc { color: var(--muted); font-size: 0.9rem; }
.pricing-tier__savings {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
}
.faq-question:hover { color: var(--teal); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer__inner {
  padding: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.testimonial--with-photo {
  display: flex;
  flex-direction: column;
}
.testimonial__photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}
.testimonial__stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial__text {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
}
.testimonial__avatar--img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial__avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
img.testimonial__avatar--img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: 0.95rem; }
.testimonial__source { font-size: 0.8rem; color: var(--muted); }

/* ===== CLIENT STORIES ===== */
.story {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
}
.story__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.story__icon svg { width: 24px; height: 24px; }
.story h4 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.story p { color: var(--muted); font-size: 0.95rem; }

/* ===== REFERRAL SECTION ===== */
.referral-box {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--teal-light) 100%);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--gold-border);
}
.referral-box h3 { margin-bottom: 1rem; }
.referral-box p { color: var(--muted); margin-bottom: 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== TEAM ===== */
.team-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-card__photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  background: var(--bg-alt);
}
.team-card__info { padding: 1.5rem; }
.team-card__name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.15rem; margin-bottom: 0.25rem; }
.team-card__role { color: var(--teal); font-weight: 500; font-size: 0.9rem; margin-bottom: 0.75rem; }
.team-card__bio { color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== SERVICE AREA ===== */
.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.area-item svg { width: 16px; height: 16px; color: var(--teal); flex-shrink: 0; }
.area-item span { color: var(--muted); font-size: 0.85rem; margin-left: auto; }

/* ===== ONBOARDING STEPS ===== */
.onboarding-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.onboarding-step__num {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.onboarding-step h3 { margin-bottom: 0.35rem; font-size: 1.05rem; }
.onboarding-step p { color: var(--muted); font-size: 0.95rem; }

/* ===== ADD-ONS TABLE ===== */
.addon-list { display: flex; flex-direction: column; gap: 0.5rem; }
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.addon-item__name { font-weight: 500; }
.addon-item__price { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--gold); }
.addon-item--included .addon-item__price { color: var(--teal); }

/* ===== INFO BLOCK ===== */
.info-block {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--teal-light);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 167, 157, 0.2);
}
.info-block svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--teal); margin-top: 0.1rem; }
.info-block p { color: var(--ink); font-size: 0.95rem; }

/* ===== CONTACT BLOCK ===== */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon--gold { background: var(--gold-light); color: var(--gold); }
.contact-card__icon--teal { background: var(--teal-light); color: var(--teal); }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-card__value { font-weight: 600; font-size: 1.05rem; color: var(--ink); }

/* ===== BOOKING EMBED ===== */
.booking-embed {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.booking-embed iframe {
  width: 100%;
  border: none;
  min-height: 600px;
}

/* ===== APP DOWNLOAD ===== */
.app-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}
.app-badge:hover { background: #1a2a28; color: #fff; transform: translateY(-2px); }
.app-badge svg { width: 28px; height: 28px; }
.app-badge__text { display: flex; flex-direction: column; }
.app-badge__label { font-size: 0.7rem; opacity: 0.8; }
.app-badge__store { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; }

/* ===== SOCIAL LINKS ===== */
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: #fff; }
.social-link svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
}
.footer__brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.7; }
.footer__links a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* ===== POLICY LIST ===== */
.policy-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CAROUSEL ===== */
.carousel {
  position: relative;
  overflow: hidden;
  padding: 0 0 2.5rem;
}
.carousel__track {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel__slide {
  padding: 0 0.75rem;
  box-sizing: border-box;
}
.carousel__slide .testimonial,
.carousel__slide .story {
  height: 100%;
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.carousel__prev,
.carousel__next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.carousel__prev:hover,
.carousel__next:hover {
  background: var(--gold);
  color: #fff;
}
.carousel__prev svg,
.carousel__next svg {
  width: 20px;
  height: 20px;
}
.carousel__dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.carousel__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ===== PACKAGE ACCORDION ===== */
.pkg-accordion {
  max-width: 720px;
  margin: 0 auto;
}
.pkg-item {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.pkg-item:hover { box-shadow: var(--shadow-md); }
.pkg-item.active { box-shadow: var(--shadow-md); border-left: 4px solid var(--gold); }

.pkg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  text-align: left;
}
.pkg-header__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.pkg-header__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
.pkg-header__meta {
  font-size: 0.85rem;
  color: var(--muted);
}
.pkg-header__price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  white-space: nowrap;
}
.pkg-header__chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--transition);
}
.pkg-item.active .pkg-header__chevron { transform: rotate(180deg); }

.pkg-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.pkg-body__inner {
  padding: 0 1.5rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 1.25rem;
}
.pkg-body__inner p { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.pkg-body__prices {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.pkg-body__price-item {
  display: flex;
  flex-direction: column;
}
.pkg-body__price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.pkg-body__price-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--gold);
}
.pkg-body__price-value--recurring { color: var(--teal); }

/* ===== CENTERED CARD GRID ===== */
.card--centered {
  text-align: center;
}
.card--centered .card__icon {
  margin: 0 auto 1.25rem;
}

/* ===== PROMISE PILLS ===== */
.promise-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.promise-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.promise-pill svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ===== PHOTO GRID ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.photo-grid img:hover { transform: scale(1.03); }

/* ===== SERVICES SUB-NAV ===== */
.subnav {
  position: sticky;
  top: 60px;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.subnav__link {
  padding: 0.85rem 1.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.subnav__link:hover { color: var(--ink); }
.subnav__link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ===== SERVICE SECTION ACCORDION ===== */
.svc-section {
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.svc-section--alt { background: var(--bg-alt); }
.svc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 2rem;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  background: linear-gradient(135deg, var(--ink) 0%, #1a2a28 100%);
  border-radius: var(--radius) var(--radius) 0 0;
}
.svc-section:not(.active) .svc-header {
  border-radius: var(--radius);
}
.svc-header__info { display: flex; flex-direction: column; gap: 0.15rem; }
.svc-header__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
}
.svc-header__sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
.svc-header__chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.svc-section.active .svc-header__chevron { transform: rotate(180deg); }
.svc-section.active .svc-header { border-bottom: none; }

.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.svc-body__inner {
  padding: 2rem;
}

/* ===== INSTAGRAM FEED ===== */
.insta-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.insta-header svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}
.insta-header__handle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.insta-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
}
.insta-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.insta-grid__item:hover img {
  transform: scale(1.08);
}
.insta-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
}
.insta-grid__item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}
.insta-follow {
  margin-top: 1.5rem;
  text-align: center;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .header__logo-img { height: 44px; }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s ease;
    gap: 0.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { right: 0; }
  .nav__link {
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav__cta {
    margin-left: 0;
    margin-top: 1rem;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hamburger { display: flex; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
  }
  .nav-overlay.open { display: block; }
  .nav { z-index: 1001; }
  .btn { min-height: 44px; }
  .btn--sm { min-height: 44px; padding: 0.6rem 1.4rem; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header__logo-img { height: 40px; }
  .section { padding: 3.5rem 0; }
  .hero { min-height: 70vh; }
  .hero--sm { min-height: 30vh; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
  .trust-bar { gap: 0.75rem; justify-content: center; }
  .trust-badge { font-size: 0.75rem; padding: 0.25rem 0; }
  .pricing-tier__prices { flex-direction: column; gap: 0.5rem; }
  .story { flex-direction: column; }
  .onboarding-step { flex-direction: column; }
  .contact-card { flex-direction: column; text-align: center; }
  .referral-box { padding: 2rem 1.5rem; }
  .report-showcase { flex-direction: column; align-items: center; }
  .report-showcase__img { max-width: 200px; }
  .gallery-strip img { width: 260px; height: 170px; }
  .founder-photo { max-width: 100%; }
  .social-link { width: 44px; height: 44px; }
  .faq-question { padding: 1rem 0; min-height: 44px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-grid img { height: 180px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .subnav__inner { justify-content: flex-start; }
  .subnav__link { padding: 0.75rem 1rem; font-size: 0.82rem; }
  .svc-header { padding: 1.25rem 1.5rem; }
  .svc-header__title { font-size: 1.15rem; }
  .svc-body__inner { padding: 1.5rem; }
  .pkg-header { padding: 1rem 1.25rem; }
  .pkg-header__name { font-size: 1.05rem; }
  .pkg-header__price { font-size: 1.1rem; }
  .pkg-body__inner { padding: 0 1.25rem 1.25rem; }
  .promise-pill { font-size: 0.82rem; padding: 0.5rem 1rem; }
}

@media (max-width: 480px) {
  .header__inner { padding: 0.4rem 0.75rem; }
  .header__logo-img { height: 36px; }
  .hero { min-height: 60vh; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .app-badges { flex-direction: column; }
  .container { padding: 0 1rem; }
  .step__img { width: 80px; height: 80px; }
  .trust-bar { flex-direction: column; align-items: center; }
  .area-list { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .photo-grid img { height: 140px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-header__meta { display: none; }
  .promise-bar { gap: 0.5rem; }
  .promise-pill { font-size: 0.78rem; padding: 0.45rem 0.85rem; }
}

/* ===== MOBILE STICKY CTA ===== */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 998;
}
.mobile-cta .btn { width: 100%; min-height: 48px; font-size: 0.95rem; }

@media (max-width: 900px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 66px; }
}
