@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --fg:          #141414;
  --fg-muted:    #666666;
  --fg-subtle:   #999999;
  --border:      #e3e3e3;
  --muted:       #f5f5f5;
  --card:        #ffffff;

  --gold:        hsl(45, 100%, 51%);
  --gold-dark:   hsl(38, 92%, 45%);
  --gold-light:  hsl(48, 100%, 70%);

  --grad-primary:  linear-gradient(135deg, #141414 0%, #2a2a2a 100%);
  --grad-gold:     linear-gradient(135deg, hsl(45,100%,51%), hsl(38,92%,50%));
  --grad-hero:     linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 0 40px hsl(45,100%,51%,0.3);

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;

  --nav-h:       96px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: 'DM Sans', sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

p { color: var(--fg-muted); line-height: 1.75; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

/* ─── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav__logo img { height: 72px; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--fg); }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--fg);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 1rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:last-of-type { border-bottom: none; }

@media (max-width: 768px) {
  .nav__links, .nav__actions .btn:not(.btn--icon) { display: none; }
  .nav__burger { display: flex; }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn--gold {
  background: var(--grad-gold);
  color: var(--fg);
  box-shadow: 0 2px 8px rgba(255,180,0,0.3);
}
.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255,180,0,0.4);
}
.btn--dark {
  background: var(--grad-primary);
  color: #fff;
}
.btn--dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--fg);
}
.btn--outline:hover { border-color: var(--fg); }
.btn--ghost {
  background: transparent;
  color: var(--fg-muted);
}
.btn--ghost:hover { color: var(--fg); background: var(--muted); }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn--full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.62);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 3rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero__title {
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero__title .gold { color: var(--gold); }
.hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero__demo {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.hero__demo video { width: 100%; display: block; transform: scale(1.11); transform-origin: top; }
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero__stat-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}

/* ─── TRUST STRIP ─────────────────────────────────────────── */
.trust {
  padding: 2.5rem 0;
  background: var(--muted);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.trust__label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 1.5rem;
}
.trust__scroll { display: flex; overflow: hidden; }
.trust__track {
  display: flex;
  gap: 3rem;
  animation: scroll-logos 40s linear infinite;
  align-items: center;
}
.trust__track img { height: 32px; width: auto; opacity: 0.55; object-fit: contain; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FEATURES ─────────────────────────────────────────────── */
.features { padding: 6rem 0; background: var(--bg); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.1rem; }

.features__highlight {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 3rem;
  text-align: center;
  transition: box-shadow var(--transition);
}
.features__highlight:hover { box-shadow: var(--shadow-gold); }
.features__highlight-icon {
  width: 56px; height: 56px;
  background: rgba(255,180,0,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}
.features__highlight h3 { color: #fff; font-size: 1.8rem; margin-bottom: 1rem; }
.features__highlight p { color: rgba(255,255,255,0.82); max-width: 700px; margin: 0 auto; font-size: 1.05rem; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-card__icon {
  width: 52px; height: 52px;
  background: rgba(255,180,0,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  transition: background var(--transition);
}
.feature-card:hover .feature-card__icon { background: rgba(255,180,0,0.18); }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--fg); }
.feature-card p { font-size: 0.95rem; }

@media (max-width: 900px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--grad-primary);
  padding: 6rem 1.5rem;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.1rem; }
.cta-section__benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}
.cta-benefit::before { content: '✓'; color: var(--gold); font-weight: 600; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--fg);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer__logo img {
  height: 72px;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  margin: 0 auto 1.25rem;
}
.footer__tagline { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.footer__links a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color var(--transition); }
.footer__links a:hover { color: #fff; }
.footer__links span { color: rgba(255,255,255,0.25); }
.footer__copy { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ─── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 1.5rem 4rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--muted) 100%);
  text-align: center;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; max-width: 580px; margin: 0 auto; }

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.about-mission { padding: 5rem 0; }
.about-mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-mission__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--muted);
}
.about-mission__img img { width: 100%; height: 100%; object-fit: cover; }
.about-mission h2 { margin-bottom: 1.25rem; }
.about-mission p { font-size: 1.05rem; line-height: 1.8; }

.values { padding: 5rem 0; background: var(--muted); }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.value-card__icon {
  width: 52px; height: 52px;
  background: rgba(20,20,20,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.value-card p  { font-size: 0.9rem; }

.team { padding: 5rem 0; }
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.team-card {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.team-card img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--border);
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.team-card p  { color: var(--gold-dark); font-size: 0.9rem; font-weight: 500; }

@media (max-width: 900px) {
  .about-mission__grid { grid-template-columns: 1fr; }
  .values__grid, .team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .values__grid, .team__grid { grid-template-columns: 1fr; }
}

/* ─── PRICING PAGE ────────────────────────────────────────── */
.pricing { padding: 4rem 0 6rem; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.plan {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.plan:hover { box-shadow: var(--shadow-lg); }
.plan--highlight {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.plan--highlight:hover { box-shadow: var(--shadow-gold); }
.plan__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  width: fit-content;
}
.plan__name { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.4rem; }
.plan--highlight .plan__name { color: #fff; }
.plan__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.plan--highlight .plan__price { color: #fff; }
.plan__period { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.plan--highlight .plan__period { color: rgba(255,255,255,0.65); }
.plan__desc { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.plan--highlight .plan__desc { color: rgba(255,255,255,0.72); }
.plan__features { list-style: none; margin-bottom: 2rem; flex: 1; }
.plan__features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.9rem; color: var(--fg-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}
.plan--highlight .plan__features li { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.1); }
.plan__features li:last-child { border-bottom: none; }
.plan__features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan--highlight .plan__features li::before { color: var(--gold-light); }

.pricing__faq {
  background: var(--muted);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.pricing__faq h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.pricing__faq p  { margin-bottom: 1.5rem; }

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 500px; }
  .plan--highlight { transform: none; }
}

/* ─── FAQ PAGE ────────────────────────────────────────────── */
.faq { padding: 4rem 0 6rem; }
.faq__category { margin-bottom: 3rem; }
.faq__category-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}
.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--fg); }
.accordion-trigger svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--fg-muted);
}
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-content p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.accordion-item.open .accordion-content { max-height: 400px; }

.faq__cta {
  background: rgba(255,180,0,0.06);
  border: 1px solid rgba(255,180,0,0.2);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.faq__cta h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.faq__cta p  { margin-bottom: 1.5rem; }

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.contact { padding: 4rem 0 6rem; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact__form-card h2 { font-size: 1.75rem; margin-bottom: 1.5rem; }

.contact__info h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.contact__info > p { margin-bottom: 2rem; }
.contact__items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact__item { display: flex; align-items: flex-start; gap: 1rem; }
.contact__item-icon {
  width: 48px; height: 48px;
  background: rgba(255,180,0,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact__item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact__item a, .contact__item p { font-size: 0.95rem; color: var(--fg-muted); }
.contact__item a:hover { color: var(--gold-dark); }
.contact__hours {
  background: var(--muted);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.contact__hours h3 { font-size: 1rem; margin-bottom: 1rem; }
.contact__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.contact__hours-row:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ─── FORMS ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
input, textarea, select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--fg);
  box-shadow: 0 0 0 3px rgba(20,20,20,0.06);
}
textarea { resize: vertical; min-height: 120px; }
.honeypot { position: absolute; opacity: 0; height: 0; overflow: hidden; pointer-events: none; }

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ─── MODAL ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  cursor: pointer; font-size: 1.25rem;
  color: var(--fg-muted); line-height: 1;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.modal__close:hover { background: var(--muted); color: var(--fg); }
.modal__icon {
  width: 52px; height: 52px;
  background: rgba(20,20,20,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
}
.modal h2 { text-align: center; font-size: 1.8rem; margin-bottom: 0.5rem; }
.modal__desc { text-align: center; font-size: 0.95rem; margin-bottom: 1.75rem; }
.modal__note { text-align: center; font-size: 0.78rem; color: var(--fg-subtle); margin-top: 1rem; }
.modal__actions { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 1rem; }

/* ─── LEGAL PAGES ──────────────────────────────────────────── */
.legal { padding: 4rem 0 6rem; }
.legal__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}
.legal__card > * + * { margin-top: 2.5rem; }
.legal__card section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}
.legal__card p, .legal__card li { font-size: 0.95rem; color: rgba(20,20,20,0.75); line-height: 1.8; }
.legal__card ul { padding-left: 1.5rem; }
.legal__card ul li { margin-bottom: 0.4rem; }
.legal__card a { color: var(--fg); text-decoration: underline; }

/* ─── 404 PAGE ──────────────────────────────────────────────── */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.not-found__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.not-found h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.not-found p  { margin-bottom: 2rem; }

/* ─── UTILITIES ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.section { padding: 5rem 0; }

/* ─── SPINNER ───────────────────────────────────────────────── */
.spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(20,20,20,0.2);
  border-top-color: var(--fg);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
.btn--gold .spinner { border-color: rgba(20,20,20,0.25); border-top-color: var(--fg); }

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SOCIAL PROOF ───────────────────────────────────────────── */
.social-proof {
  background: var(--bg);
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.social-proof__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1.5rem;
}
.social-proof__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.social-proof__logos img {
  height: 36px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}
.social-proof__testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  max-width: 380px;
  text-align: left;
}
.testimonial p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}
.testimonial cite {
  font-size: 0.8rem;
  opacity: 0.55;
  font-style: normal;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works {
  padding: 5rem 0;
  background: rgba(255,255,255,0.02);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step {
  text-align: center;
  padding: 2rem;
}
.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold, hsl(45,100%,51%));
  color: #141414;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.step p {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* ─── TEAM CARD LINKEDIN ─────────────────────────────────────── */
.team-card__linkedin {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--gold, hsl(45,100%,51%));
  text-decoration: none;
  opacity: 0.8;
}
.team-card__linkedin:hover { opacity: 1; text-decoration: underline; }
