@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg: #0B1220;
  --surface: #111B2E;
  --surface-2: #152238;
  --primary: #C9A961;
  --primary-hover: #E4CF8C;
  --secondary: #4A6FA5;
  --accent: #5EEAD4;
  --text: #F4F6FA;
  --text-muted: #9AA8BC;
  --text-subtle: #6B7C93;
  --line: rgba(201, 169, 97, 0.22);
  --radius: 4px;
  --font-heading: 'Fraunces', serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .25s; }
a:hover { color: var(--primary-hover); }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

.section-tag {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--primary);
  margin: 16px 0;
}

/* ─── COOKIE BANNER ──────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 20px 0;
  transform: translateY(0);
  transition: transform .4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); pointer-events: none; }
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: .875rem; color: var(--text-muted); flex: 1; min-width: 280px; }
.cookie-banner p a { color: var(--primary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; }
.cookie-btns .btn-primary,
.cookie-btns .btn-outline { padding: 10px 24px; font-size: .875rem; }

/* ─── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius);
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--primary-hover); color: var(--bg); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  transition: background .25s, color .25s, transform .2s;
}
.btn-outline:hover { background: rgba(201,169,97,.1); color: var(--primary-hover); transform: translateY(-1px); }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.navbar.scrolled { border-bottom-color: var(--line); background: rgba(11,18,32,.97); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand svg { width: 36px; height: 36px; }
.nav-brand span { font-family: var(--font-body); font-weight: 600; font-size: 1.1rem; color: var(--text); letter-spacing: .5px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-muted); font-size: .875rem; font-weight: 500; transition: color .25s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--primary); transition: width .25s; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 16px; }
.nav-cta .btn-primary { padding: 10px 24px; font-size: .85rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: transform .3s, opacity .3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 40px 24px;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .3s, transform .3s;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a {
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn-primary { margin-top: 16px; text-align: center; justify-content: center; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 10vw;
  font-weight: 700;
  color: rgba(201,169,97,.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero-dot-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(201,169,97,.12) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  padding-right: 32px;
  border-right: 1px solid var(--line);
}
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}
.hero-stat-label { font-size: .75rem; color: var(--text-subtle); margin-top: 2px; }

.hero-image-wrap { position: relative; }
.hero-image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-image-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  z-index: -1;
}
.hero-image-frame::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid rgba(201,169,97,.3);
  border-radius: var(--radius);
  z-index: -2;
}
.hero-image-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ─── ABOUT ──────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.about-image { border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.about-content { display: flex; flex-direction: column; justify-content: center; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--text-muted); margin-bottom: 16px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  background: var(--surface-2);
  border: 1px solid var(--line);
  padding: 20px;
  border-radius: var(--radius);
  position: relative;
}
.about-feature::before, .about-feature::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--primary);
  border-style: solid;
}
.about-feature::before { top: 6px; left: 6px; border-width: 2px 0 0 2px; }
.about-feature::after { bottom: 6px; right: 6px; border-width: 0 2px 2px 0; }
.about-feature h4 { font-family: var(--font-body); font-size: .875rem; font-weight: 600; color: var(--text); }

/* ─── BENEFITS ───────────────────────────────── */
.benefits { padding: 100px 0; }
.benefits-header { text-align: center; margin-bottom: 56px; }
.benefits-header h2 { margin-bottom: 12px; }
.benefits-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform .3s, border-color .3s;
}
.benefit-card:hover { transform: translateY(-6px); border-color: var(--primary); }
.benefit-numeral {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  line-height: 1;
  margin-bottom: 24px;
}
.benefit-card h3 { margin-bottom: 12px; }
.benefit-card p { color: var(--text-muted); font-size: .9rem; }

/* ─── MARQUEE ────────────────────────────────── */
.marquee-section {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  padding: 0 48px;
  position: relative;
}
.marquee-item::after {
  content: '\2666';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: .5rem;
  color: var(--primary);
  opacity: .5;
}

/* ─── SERVICES ───────────────────────────────── */
.services { padding: 100px 0; }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header h2 { margin-bottom: 12px; }
.services-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.services-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color .3s, transform .3s;
}
.service-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  color: var(--primary);
}
.service-icon svg { width: 100%; height: 100%; stroke: var(--primary); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: .875rem; }

/* ─── HOW IT WORKS (TABS) ────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hiw-header { margin-bottom: 56px; }
.hiw-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
.hiw-tabs { display: flex; flex-direction: column; gap: 0; }
.hiw-tab {
  padding: 18px 24px;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  text-align: left;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
  cursor: pointer;
  transition: color .25s, border-color .25s, background .25s;
}
.hiw-tab:hover { color: var(--text); background: rgba(201,169,97,.04); }
.hiw-tab.active {
  border-left-color: var(--primary);
  color: var(--text);
  background: rgba(201,169,97,.06);
  font-weight: 600;
}
.hiw-tab-number {
  font-family: var(--font-heading);
  font-size: .75rem;
  color: var(--primary);
  margin-right: 8px;
}
.hiw-panel {
  display: none;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
}
.hiw-panel.active { display: block; }
.hiw-panel h3 { font-size: 1.5rem; margin-bottom: 16px; }
.hiw-panel p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }

/* ─── APPROACH ───────────────────────────────── */
.approach { padding: 100px 0; }
.approach-header { text-align: center; margin-bottom: 56px; }
.approach-header h2 { margin-bottom: 12px; }
.approach-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.approach-checkpoints {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.approach-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.approach-check svg { width: 14px; height: 14px; stroke: var(--primary); fill: none; stroke-width: 2.5; }
.approach-item p { color: var(--text-muted); font-size: .9rem; }
.approach-item h4 { font-family: var(--font-body); font-weight: 600; font-size: .95rem; margin-bottom: 4px; }

.pricing-block {
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 48px;
}
.pricing-block h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 32px;
}
.pricing-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-col {
  text-align: center;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
}
.pricing-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.pricing-col p { color: var(--text-muted); font-size: .875rem; }

/* ─── TESTIMONIALS ───────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonials-header { margin-bottom: 56px; }
.testimonials-track-wrap { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}
.testimonial-card {
  min-width: calc(50% - 12px);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  flex-shrink: 0;
}
.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 8px;
}
.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-stars { margin-bottom: 16px; }
.testimonial-stars svg { width: 18px; height: 18px; fill: var(--primary); }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
  background: var(--surface);
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-role { font-size: .8rem; color: var(--text-subtle); }
.testimonials-controls {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.testimonials-controls button {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, color .25s;
}
.testimonials-controls button:hover { border-color: var(--primary); color: var(--primary); }
.testimonials-controls svg { width: 20px; height: 20px; }

/* ─── GETTING STARTED ────────────────────────── */
.getting-started { padding: 100px 0; }
.getting-started-header { text-align: center; margin-bottom: 56px; }
.getting-started-header h2 { margin-bottom: 12px; }
.getting-started-header p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
}
.timeline-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 32px;
  height: 2px;
  background: var(--primary);
  transform: rotate(15deg);
}
.timeline-card:last-child::after { display: none; }
.timeline-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.timeline-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.timeline-card p { color: var(--text-muted); font-size: .875rem; }

/* ─── FAQ ────────────────────────────────────── */
.faq {
  padding: 100px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-title-col { position: sticky; top: 100px; }
.faq-title-col h2 { margin-bottom: 12px; }
.faq-title-col p { color: var(--text-muted); }
.faq-accordion { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  padding: 20px 0;
  padding-left: 16px;
  background: none;
  border: none;
  border-left: 0px solid var(--primary);
  text-align: left;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-left-width .3s, padding-left .3s, color .25s;
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question {
  border-left-width: 3px;
  padding-left: 16px;
  color: var(--primary);
}
.faq-question svg {
  width: 18px;
  height: 18px;
  stroke: var(--text-subtle);
  fill: none;
  flex-shrink: 0;
  transition: transform .3s, stroke .3s;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); stroke: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-left: 19px;
}
.faq-answer-inner { padding: 0 0 20px; color: var(--text-muted); font-size: .9rem; line-height: 1.8; }

/* ─── CONTACT ────────────────────────────────── */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }
.contact-bullets { margin-bottom: 32px; }
.contact-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: .9rem;
}
.contact-bullets li svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; flex-shrink: 0; }
.contact-details { margin-top: 24px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: .9rem;
}
.contact-detail svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; flex-shrink: 0; }

.contact-form-wrap {
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  background: var(--surface);
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color .25s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .error-msg { font-size: .75rem; color: #e74c3c; margin-top: 4px; display: none; }
.form-group.has-error input,
.form-group.has-error textarea { border-color: #e74c3c; }
.form-group.has-error .error-msg { display: block; }
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  padding: 64px 0 32px;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--primary), transparent) 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-muted); font-size: .875rem; margin-top: 16px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 20px;
}
.footer-col a { display: block; color: var(--text-muted); font-size: .875rem; padding: 4px 0; transition: color .25s; }
.footer-col a:hover { color: var(--text); }
.footer-col p { color: var(--text-muted); font-size: .875rem; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: var(--text-subtle); }

/* ─── LEGAL PAGES ────────────────────────────── */
.legal-page { padding: 120px 0 80px; }
.legal-page .container { max-width: 800px; }
.legal-page h1 { font-size: 2rem; margin-bottom: 8px; }
.legal-page .legal-date { font-size: .875rem; color: var(--text-subtle); margin-bottom: 40px; }
.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--primary);
}
.legal-page p, .legal-page li {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal-page ul { margin-left: 20px; margin-bottom: 12px; }
.legal-page ul li { list-style: disc; padding-left: 4px; }

/* ─── SCROLL REVEAL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image img { min-height: 300px; }
  .services-mosaic { grid-template-columns: repeat(2, 1fr); }
  .hiw-layout { grid-template-columns: 1fr; gap: 24px; }
  .hiw-tabs { flex-direction: row; overflow-x: auto; }
  .hiw-tab { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
  .hiw-tab.active { border-left: none; border-bottom-color: var(--primary); }
  .approach-checkpoints { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-title-col { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(100% - 0px); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-stats { gap: 20px; }
  .hero-stat { padding-right: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .services-mosaic { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-card::after { display: none; }
  .pricing-columns { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hero-stat { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
  .hero-stat:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .pricing-block { padding: 24px; }
}
