:root {
  --bg: #0a0a0a;
  --panel: rgba(255,255,255,0.03);
  --panel-strong: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --muted: #a3a3a3;
  --muted-2: #737373;
  --white: #ffffff;
  --black: #0a0a0a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--white);
}
a { color: inherit; text-decoration: none; }
button, .btn { font: inherit; }
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: #fff;
  color: #0a0a0a;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}
.brand-title { display: block; font-weight: 800; letter-spacing: .04em; font-size: 18px; }
.brand-subtitle { display: block; color: var(--muted); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 30px; color: #d4d4d4; font-size: 14px; }
.nav-links a:hover { color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 20px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-large { padding: 14px 28px; }
.btn-light { background: #fff; color: #0a0a0a; }
.btn-light:hover { background: #e5e5e5; }
.btn-dark { background: #0a0a0a; color: #fff; }
.btn-dark:hover { background: #262626; }
.btn-outline { border-color: rgba(255,255,255,0.22); background: transparent; color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.10); }
.btn-outline-dark { border-color: #d4d4d4; background: transparent; color: #0a0a0a; }
.btn-outline-dark:hover { background: #f5f5f5; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-large { padding: 96px 0 112px; }
.hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 35%), radial-gradient(circle at bottom left, rgba(120,120,120,.22), transparent 30%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: #d4d4d4;
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 14px;
  margin-bottom: 24px;
}
h1 { font-size: clamp(44px, 7vw, 78px); line-height: .98; letter-spacing: -0.055em; margin: 0; font-weight: 950; }
h2 { font-size: clamp(32px, 4vw, 44px); line-height: 1.05; letter-spacing: -0.035em; margin: 0; font-weight: 850; }
h3 { margin: 0; font-size: 20px; }
.lead { margin: 24px 0 0; max-width: 620px; color: #d4d4d4; font-size: 18px; line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: var(--muted); font-size: 14px; }
.hero-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 16px;
  background: linear-gradient(135deg, #262626, #000);
  box-shadow: 0 24px 80px rgba(0,0,0,.48);
}
.hero-image {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background-image: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.02)), url('https://images.unsplash.com/photo-1620891549027-942fdc95d3f5?q=80&w=1400&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.image-caption {
  position: absolute;
  left: 32px; right: 32px; bottom: 32px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.70);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 20px;
}
.image-caption p { margin: 0; font-size: 12px; color: var(--muted); letter-spacing: .28em; text-transform: uppercase; }
.image-caption h2 { margin-top: 8px; font-size: 25px; letter-spacing: -0.02em; }
.section-heading { margin-bottom: 40px; max-width: 680px; }
.eyebrow { margin: 0 0 12px; color: var(--muted-2); font-size: 13px; text-transform: uppercase; letter-spacing: .32em; font-weight: 800; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: #fff;
  color: #0a0a0a;
  margin-bottom: 20px;
  font-size: 22px;
}
.service-card p { color: var(--muted); line-height: 1.65; font-size: 14px; margin: 12px 0 0; }
.packages-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255,255,255,.03); }
.packages-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.muted { color: var(--muted); line-height: 1.7; }
.narrow { max-width: 420px; margin: 0; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.package-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 18px 55px rgba(0,0,0,.34);
}
.dark-card { border: 1px solid var(--border); background: #0a0a0a; color: #fff; }
.featured-card { border: 1px solid #fff; background: #fff; color: #0a0a0a; }
.package-name { color: var(--muted-2); text-transform: uppercase; letter-spacing: .28em; font-weight: 900; font-size: 13px; margin: 0; }
.price { font-size: 52px; line-height: 1; font-weight: 950; margin: 20px 0 0; letter-spacing: -0.05em; }
.package-details { color: var(--muted); line-height: 1.75; margin: 22px 0 0; }
.featured-card .package-details { color: #525252; }
.package-btn { width: 100%; margin-top: auto; }
.steps-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  padding: 48px;
}
.step-number { font-size: 40px; font-weight: 950; margin: 0 0 12px; }
.steps-card p:not(.step-number) { color: var(--muted); line-height: 1.6; }

.centered-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.results-heading {
  max-width: 820px;
}
.results-intro {
  margin: 18px auto 0;
  max-width: 700px;
}
.results-section {
  border-top: 1px solid var(--border);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.comparison-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255,255,255,.03);
  padding: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.comparison-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.comparison-image {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  border: 1px solid var(--border);
}
.comparison-image img,
.result-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comparison-image img {
  aspect-ratio: 4/5;
}
.comparison-image figcaption {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.74);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.comparison-copy {
  padding: 20px 4px 4px;
}
.comparison-copy p {
  color: var(--muted);
  line-height: 1.7;
  margin: 12px 0 0;
}
.results-gallery-wrap {
  margin-top: 34px;
}
.results-gallery-copy {
  margin-bottom: 18px;
  max-width: 700px;
}
.results-gallery-copy h3 {
  font-size: 28px;
  margin-top: 10px;
}
.results-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.result-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.result-shot img {
  aspect-ratio: 4 / 5;
}

.book-section { padding-top: 0; }
.book-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  border-radius: 32px;
  background: #fff;
  color: #0a0a0a;
  padding: 48px;
}
.book-card p { color: #525252; line-height: 1.7; }
.book-card a:not(.btn) { text-decoration: underline; text-underline-offset: 3px; }
.dark-eyebrow { color: #737373; }
.small-muted { font-size: 14px; color: #737373 !important; }
.book-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
.footer {
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  text-align: center;
  padding: 32px 24px;
  font-size: 14px;
}
.footer a { color: var(--muted); }
.footer-contact { margin-top: 10px; }
.terms-button, .back-button {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.terms-button { margin-top: 12px; }
.terms-button:hover, .back-button:hover { color: #fff; }
.terms-page { min-height: 100vh; background: #0a0a0a; color: #fff; padding: 64px 24px; }
.terms-card {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--panel);
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,.44);
}
.terms-card h1 { font-size: clamp(36px, 6vw, 52px); margin-top: 16px; }
.terms-list { margin-top: 32px; display: grid; gap: 18px; color: #d4d4d4; line-height: 1.75; font-size: 15px; }
.terms-list p { margin: 0; }
.terms-list strong { color: #fff; }
.hidden { display: none; }
.reveal { animation: fadeUp .75s ease both; }
.delay { animation-delay: .1s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-grid, .book-card { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; margin: 0 auto; width: 100%; }
  .service-grid, .package-grid, .steps-card { grid-template-columns: 1fr; }
  .results-gallery { grid-template-columns: repeat(2, 1fr); }
  .comparison-images { grid-template-columns: 1fr; }
  .packages-heading { align-items: start; flex-direction: column; }
  .book-buttons { justify-content: stretch; }
  .book-buttons .btn { width: 100%; }
}
@media (max-width: 560px) {
  .nav-wrap { padding: 14px 16px; }
  .brand-subtitle { letter-spacing: .18em; }
  .nav-cta { padding: 10px 14px; font-size: 14px; }
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-large { padding: 72px 0 80px; }
  .button-row .btn { width: 100%; }
  .results-gallery { grid-template-columns: 1fr; }
  .hero-notes { flex-direction: column; gap: 10px; }
  .image-caption { left: 24px; right: 24px; bottom: 24px; }
  .image-caption h2 { font-size: 21px; }
  .package-card, .book-card, .steps-card, .terms-card { padding: 28px; }
  .price { font-size: 46px; }
  .footer-contact { line-height: 1.7; }
}
