/* AHANSA Legal & Mediation Services — Design System */

:root {
  --navy: #111111;
  --navy-light: #1a1a1a;
  --teal: #C9A227;
  --teal-soft: #D4AF37;
  --teal-muted: rgba(201, 162, 39, 0.14);
  --cream: #FFFFFF;
  --cream-dark: #F5F5F5;
  --white: #FFFFFF;
  --gold: #C9A227;
  --gold-dark: #A8871C;
  --black: #111111;
  --gray-100: #F7F7F7;
  --gray-200: #E8E8E8;
  --gray-400: #9B9B9B;
  --gray-600: #5C5C5C;
  --gray-800: #2D2D2D;
  --text: #111111;
  --text-muted: #555555;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --header-height: 76px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--black);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--white { background: var(--white); }
.section--cream { background: var(--gray-100); }
.section--navy { background: var(--black); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy .lead, .section--navy .text-muted { color: rgba(255,255,255,0.75); }

.section-header {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--gold);
}

.btn--white {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--white:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  background: rgba(201, 162, 39, 0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header--scrolled {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 6px;
}

.logo__text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 180px;
}

.logo__text span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav__link {
  padding: 0.45rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 0;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav__link:hover {
  color: var(--black);
  background: transparent;
}

.nav__link--active {
  color: var(--black);
  background: transparent;
  font-weight: 600;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.1rem;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header__phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

.header__phone:hover { color: var(--gold); }

.header__actions .btn--sm {
  padding: 0.6rem 1.15rem;
  font-size: 0.8125rem;
  border-width: 1.5px;
  border-radius: 8px;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 1002;
  transition: border-color var(--transition), background var(--transition);
}

.menu-toggle:hover {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}

.menu-toggle--open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle--open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle--open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  padding: calc(var(--header-height) + 5rem) 0 5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__title {
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-badge__stars {
  color: #F5A623;
  letter-spacing: 1px;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.08) 0%, transparent 60%);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-muted);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.2);
  flex-shrink: 0;
}

.card__icon svg {
  width: 26px;
  height: 26px;
}

.card--featured {
  border-color: var(--gold);
  background: var(--teal-muted);
}

.card--featured .card__icon {
  background: var(--white);
}

/* Service overview pictograms */
.services-overview {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.service-pictogram {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.service-pictogram:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
}

.service-pictogram__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-muted);
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.service-pictogram__icon svg {
  width: 40px;
  height: 40px;
}

.service-pictogram__title {
  font-size: 1.05rem;
  margin: 0;
  color: var(--black);
}

.service-pictogram__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.section-header__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-muted);
  border-radius: 12px;
  color: var(--gold);
  margin-bottom: 1rem;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.section-header__icon svg {
  width: 24px;
  height: 24px;
}

.section-header--center .section-header__icon {
  margin-left: auto;
  margin-right: auto;
}

.tab-btn__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.tab-btn__icon svg {
  width: 100%;
  height: 100%;
}

.benefit-list__check svg {
  width: 12px;
  height: 12px;
  display: block;
}

.card__title {
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.card__link {
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* Service tabs */
.tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.625rem 1.25rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover,
.tab-btn--active {
  background: var(--black);
  color: var(--gold);
  border-color: var(--black);
}

.tab-panel {
  display: none;
}

.tab-panel--active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Timeline / Process */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}

.process__step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process__number {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
}

.process__title {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.process__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Testimonials */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial__stars {
  color: #F5A623;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial__quote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--teal);
}

.testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.testimonial__date {
  font-size: 0.75rem;
  color: var(--gray-400);
}

/* Credentials */
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.credential {
  padding: 0.5rem 1rem;
  background: var(--teal-muted);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

/* FAQ Accordion */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--gold); }

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-muted);
  color: var(--teal);
  font-size: 1.125rem;
  transition: transform var(--transition);
}

.faq__item--open .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-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq__item--open .faq__answer {
  max-height: 400px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-muted);
  border-radius: 10px;
  color: var(--teal);
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.contact-info__value {
  font-size: 0.9375rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-info__value a {
  color: var(--navy);
}

.contact-info__value a:hover { color: var(--gold); }

.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.form__title {
  margin-bottom: 0.5rem;
}

.form__subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--teal-muted);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__check {
  margin-bottom: 1rem;
}

.form__check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  cursor: pointer;
}

.form__check-label input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold);
}

.form__check-label a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.form__legal-note {
  font-size: 0.75rem;
  color: var(--gray-400);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.form__legal-note a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-top: 2rem;
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* CTA Banner */
.cta-banner {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.22) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  position: relative;
}

.cta-banner .btn { position: relative; }

/* Page Hero */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.page-hero__title {
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* Founder */
.founder-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.founder-card__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.founder-card__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  pointer-events: none;
}

.sticky-cta--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}

.footer .logo__text {
  color: var(--white);
  font-size: 0.875rem;
  max-width: 180px;
}

.footer .logo__text span {
  color: var(--gold);
  font-size: 0.6875rem;
}

.footer .logo img {
  filter: none;
  height: 40px;
  width: 40px;
}

.footer .logo {
  gap: 0.75rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 0.375rem 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__contact-item {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.75);
}

.footer__contact-item a:hover { color: var(--gold); }

.footer__bottom {
  padding-top: 2rem;
  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.8125rem;
}

.footer__credentials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer__credential {
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Benefit list */
.benefit-list {
  display: grid;
  gap: 1rem;
}

.benefit-list__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9375rem;
}

.benefit-list__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-muted);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 2px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-nav--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100%;
  height: 100dvh;
  background: var(--white);
  padding: 0;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav--open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  min-height: var(--header-height);
}

.mobile-nav__top .logo img {
  height: 32px;
  width: 32px;
}

.mobile-nav__top .logo__text {
  font-size: 0.7rem;
  max-width: 130px;
}

.mobile-nav__top .logo__text span {
  font-size: 0.5rem;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1rem 0.5rem;
  flex: 1;
}

.mobile-nav__link {
  display: block;
  padding: 0.8rem 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  border-left: 2px solid transparent;
}

.mobile-nav__link:hover {
  background: var(--gray-100);
  color: var(--black);
}

.mobile-nav__link--active {
  background: var(--teal-muted);
  color: var(--black);
  font-weight: 600;
  border-left-color: var(--gold);
}

.mobile-nav__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.mobile-nav__phone {
  display: block;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
  padding: 0.5rem;
}

.mobile-nav__phone:hover {
  color: var(--gold);
}

.mobile-nav__footer .btn {
  width: 100%;
}

.mobile-nav__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: var(--black);
  padding: 0;
  transition: background var(--transition), border-color var(--transition);
}

.mobile-nav__close:hover {
  background: var(--teal-muted);
  border-color: var(--gold);
}

/* Responsive */
@media (max-width: 1100px) {
  .header__phone { display: none; }
  .nav__link { padding: 0.35rem 0.4rem; font-size: 0.75rem; }
  .logo__text { max-width: 120px; }
}

@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(3, 1fr); }
  .process::before { display: none; }
  .split, .hero__grid, .contact-grid, .founder-card { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet & mobile: logo image + text + hamburger only (no buttons) */
@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .nav {
    display: none !important;
  }

  /* Hide all header buttons / phone on mobile */
  .header__phone,
  .header__actions .btn,
  .header .btn,
  .header a.btn {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }

  .header__inner {
    gap: 0.75rem;
    justify-content: space-between;
  }

  .header__actions {
    gap: 0;
    margin-left: auto;
  }

  /* Logo image + brand text */
  .header .logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    flex: 1;
  }

  .header .logo img {
    height: 48px;
    width: 48px;
    flex-shrink: 0;
  }

  .header .logo__text {
    display: block;
    max-width: none;
    font-size: 0.875rem;
    white-space: normal;
  }

  .header .logo__text span {
    display: block;
    font-size: 0.625rem;
  }

  .mobile-nav__top {
    min-height: var(--header-height);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding-top: calc(var(--header-height) + 2.5rem); padding-bottom: 3rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__image img { height: 260px; }
  .page-hero { padding: calc(var(--header-height) + 2.5rem) 0 2.5rem; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.25rem; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-card__image img { height: 280px; }
  .sticky-cta { bottom: 1rem; right: 1rem; left: 1rem; }
  .sticky-cta .btn { width: 100%; }
  .container { padding: 0 1.125rem; }
  .tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 0.25rem; }
  .tab-btn { flex-shrink: 0; }

  .header .logo img {
    height: 44px;
    width: 44px;
  }

  .header .logo__text {
    font-size: 0.8125rem;
  }

  .header .logo__text span {
    font-size: 0.5625rem;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 68px;
  }

  .header .logo {
    gap: 0.55rem;
  }

  .header .logo img {
    height: 42px;
    width: 42px;
  }

  .header .logo__text {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .header .logo__text span {
    font-size: 0.5rem;
    letter-spacing: 0.02em;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero__title { font-size: 1.75rem; }
  .section { padding: 2.75rem 0; }
}

/* Legal / policy pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-callout {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 2rem;
}

.legal-callout h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

.legal-content code {
  font-size: 0.85em;
  background: var(--gray-100);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9990;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.35rem;
  display: none;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
}

.cookie-banner--visible {
  display: flex;
}

.cookie-banner__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 0.35rem;
}

.cookie-banner__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.cookie-banner__text a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.cookie-banner__actions .btn {
  flex: 1 1 auto;
  min-width: 140px;
}

.cookie-banner__settings {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 9980;
  display: none;
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.cookie-banner__settings--visible {
  display: inline-flex;
}

.cookie-banner__settings:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 1rem;
  }

  .cookie-banner__actions .btn {
    width: 100%;
  }
}

.legal-content .legal-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--black);
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.25rem 1.25rem;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 0.45rem;
  padding-left: 0.25rem;
}

.legal-content a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--black);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.legal-nav a {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--black);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
}

.legal-nav a:hover,
.legal-nav a.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--gold);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: center;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: var(--gold);
}

.footer__bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

/* Disclaimer gate */
body.disclaimer-locked {
  overflow: hidden;
}

body.disclaimer-locked > *:not(.disclaimer-overlay) {
  pointer-events: none;
  user-select: none;
}

.disclaimer-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.disclaimer-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.disclaimer-modal {
  width: 100%;
  max-width: 560px;
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 2rem 2rem 1.75rem;
  position: relative;
  animation: disclaimerIn 0.35s ease;
}

@keyframes disclaimerIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.disclaimer-modal__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.disclaimer-modal__brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
}

.disclaimer-modal__brand-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}

.disclaimer-modal__brand-text span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.disclaimer-modal__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.disclaimer-modal__intro {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.disclaimer-modal__list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.disclaimer-modal__list p {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
}

.disclaimer-modal__list strong {
  color: var(--black);
  font-weight: 600;
}

.disclaimer-modal__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.disclaimer-modal__note a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  pointer-events: auto;
}

.disclaimer-modal__note a:hover {
  color: var(--black);
}

.disclaimer-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-modal__actions .btn {
  width: 100%;
}

.disclaimer-modal__decline {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  transition: color var(--transition);
}

.disclaimer-modal__decline:hover {
  color: var(--black);
}

.disclaimer-declined {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.disclaimer-declined--visible {
  display: flex;
}

.disclaimer-declined__box {
  max-width: 420px;
}

.disclaimer-declined__box h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.disclaimer-declined__box p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.disclaimer-declined__box .btn {
  min-width: 160px;
}

@media (max-width: 480px) {
  .disclaimer-modal {
    padding: 1.5rem 1.25rem 1.25rem;
    max-height: 92vh;
  }

  .disclaimer-modal__title {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .disclaimer-modal { animation: none; }
}