:root {
  /* Official YouWill brand tokens */
  --yw-ink: #0B2620;
  --yw-ink-soft: #14352D;
  --yw-gold: #8E6E3A;
  --yw-gold-light: #C4A06B;
  --yw-gold-deep: #5D4520;
  --yw-gold-tint: #F1E7D2;

  /* Supporting neutrals */
  --yw-paper: #FAF7F0;
  --yw-paper-warm: #F5EFE0;
  --yw-bone: #EFE9DC;
  --yw-border: #E0D8C5;
  --yw-muted: #5F6660;
  --yw-text: #1A2620;
  --yw-white: #FFFFFF;

  /* Sentiment */
  --yw-warn: #B85C1E;
  --yw-warn-soft: #FCF1E5;

  --radius: 8px;
  --radius-lg: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--yw-text);
  background: var(--yw-paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

/* ============ NAV ============ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,38,32,0.96);
  backdrop-filter: blur(12px);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(196,160,107,0.15);
}
.logo {
  display: flex; align-items: baseline; gap: 10px;
  cursor: pointer;
}
.logo-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--yw-white);
  letter-spacing: -0.02em;
}
.logo-mark span { color: var(--yw-gold-light); }
.logo-tm {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-left: 1px;
  position: relative;
  top: -10px;
  letter-spacing: 0;
}
.nav-links {
  display: flex; gap: 2rem; align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--yw-gold-light); }
.nav-cta {
  background: var(--yw-gold);
  color: var(--yw-white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--yw-gold-deep); }

/* ============ HERO ============ */
.hero {
  background: var(--yw-ink);
  padding: 6rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--yw-gold) 0%, transparent 65%);
  opacity: 0.18;
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--yw-gold-light) 0%, transparent 65%);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 10.5px; font-weight: 600;
  color: var(--yw-gold-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(196,160,107,0.08);
  border: 1px solid rgba(196,160,107,0.25);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yw-gold-light);
}
h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1.02;
  color: var(--yw-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
h1 em {
  font-style: italic;
  color: var(--yw-gold-light);
  font-weight: 400;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex; gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.btn-primary {
  background: var(--yw-gold);
  color: var(--yw-white);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--yw-gold-deep);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--yw-white);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.28);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--yw-gold-light);
  color: var(--yw-gold-light);
}
.trust-pills {
  display: flex; gap: 1rem;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
}
.trust-pill::before {
  content: '✓';
  color: var(--yw-gold-light);
  font-weight: 700;
  font-size: 12px;
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,160,107,0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  position: relative;
}
.hero-card-tag {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--yw-gold);
  color: var(--yw-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.hero-card h3 {
  font-family: 'Fraunces', serif;
  color: var(--yw-white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
  letter-spacing: -0.01em;
}
.stat-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13.5px;
}
.stat-row:last-child { border-bottom: none; }
.stat-row .k { color: rgba(255,255,255,0.55); }
.stat-row .v { color: var(--yw-white); font-weight: 500; }
.stat-row .v.gold { color: var(--yw-gold-light); }

/* ============ TAGLINE BAR ============ */
.tagline-bar {
  background: var(--yw-gold);
  padding: 1.1rem 2.5rem;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--yw-white);
  letter-spacing: 0.01em;
  font-style: italic;
}

/* ============ SECTIONS ============ */
.section { padding: 5.5rem 2.5rem; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section.alt { background: var(--yw-paper-warm); }
.section.bone { background: var(--yw-bone); }
.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--yw-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 500;
  color: var(--yw-ink);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.022em;
}
.section-title em {
  font-style: italic;
  color: var(--yw-gold);
  font-weight: 400;
}
.section-sub {
  font-size: 16px;
  color: var(--yw-muted);
  line-height: 1.65;
  max-width: 680px;
}

/* WHY IT MATTERS */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.risk-card {
  background: var(--yw-white);
  border-left: 4px solid;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 1px 0 rgba(11,38,32,0.04);
}
.risk-card.personal { border-color: var(--yw-gold); }
.risk-card.business { border-color: var(--yw-warn); }
.risk-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.personal .risk-tag {
  background: var(--yw-gold-tint);
  color: var(--yw-gold-deep);
}
.business .risk-tag {
  background: var(--yw-warn-soft);
  color: var(--yw-warn);
}
.risk-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--yw-ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.risk-card p {
  font-size: 13.5px;
  color: var(--yw-muted);
  line-height: 1.6;
}

/* AUDIENCES */
.audiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.audience-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.audience-card.individuals {
  background: var(--yw-white);
  border: 1.5px solid var(--yw-border);
}
.audience-card.families {
  background: var(--yw-gold-tint);
  border: 1.5px solid rgba(196,160,107,0.4);
}
.audience-card.founders {
  background: var(--yw-ink);
  color: var(--yw-white);
}
.aud-header {
  padding: 1.75rem 1.75rem 1.25rem;
}
.audience-card.individuals .aud-header,
.audience-card.families .aud-header {
  border-bottom: 1px solid var(--yw-border);
}
.audience-card.founders .aud-header {
  border-bottom: 1px solid rgba(196,160,107,0.15);
}
.aud-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 0.85rem;
}
.individuals .aud-tag {
  background: var(--yw-bone);
  color: var(--yw-gold-deep);
}
.families .aud-tag {
  background: rgba(141,110,58,0.18);
  color: var(--yw-gold-deep);
}
.founders .aud-tag {
  background: rgba(196,160,107,0.18);
  color: var(--yw-gold-light);
}
.aud-hook {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.individuals .aud-hook,
.families .aud-hook { color: var(--yw-ink); }
.founders .aud-hook { color: var(--yw-white); }
.aud-sub {
  font-size: 13.5px;
  line-height: 1.6;
}
.individuals .aud-sub,
.families .aud-sub { color: var(--yw-muted); }
.founders .aud-sub { color: rgba(255,255,255,0.6); }
.aud-items {
  padding: 1.25rem 1.75rem 1.5rem;
  flex: 1;
}
.aud-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  line-height: 1.5;
}
.individuals .aud-item,
.families .aud-item {
  border-bottom: 1px solid rgba(11,38,32,0.06);
  color: var(--yw-text);
}
.founders .aud-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
}
.aud-item:last-child { border-bottom: none; }
.aud-check {
  color: var(--yw-gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1.5;
}
.founders .aud-check { color: var(--yw-gold-light); }
.aud-cta {
  margin: 0 1.75rem 1.75rem;
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.individuals .aud-cta {
  background: var(--yw-ink);
  color: var(--yw-white);
}
.individuals .aud-cta:hover { background: var(--yw-gold-deep); }
.families .aud-cta {
  background: var(--yw-gold);
  color: var(--yw-white);
}
.families .aud-cta:hover { background: var(--yw-gold-deep); }
.founders .aud-cta {
  background: var(--yw-gold);
  color: var(--yw-white);
}
.founders .aud-cta:hover { background: var(--yw-gold-light); color: var(--yw-ink); }

/* SERVICE CATALOGUE */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--yw-white);
  border: 1px solid var(--yw-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: var(--yw-gold);
  box-shadow: 0 8px 24px rgba(11,38,32,0.06);
  transform: translateY(-2px);
}
.service-card.featured {
  background: var(--yw-ink);
  color: var(--yw-white);
  border-color: var(--yw-ink);
}
.service-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--yw-gold-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 18px;
}
.service-card.featured .service-icon {
  background: rgba(196,160,107,0.2);
}
.service-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--yw-ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.service-card.featured h4 { color: var(--yw-white); }
.service-card p {
  font-size: 13.5px;
  color: var(--yw-muted);
  line-height: 1.6;
}
.service-card.featured p { color: rgba(255,255,255,0.7); }
.service-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--yw-gold);
  margin-top: 0.85rem;
  letter-spacing: 0.04em;
}
.service-card.featured .service-price { color: var(--yw-gold-light); }

/* COURTS */
.courts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.court-card {
  background: var(--yw-white);
  border: 1px solid var(--yw-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.court-card.featured {
  border-color: var(--yw-gold);
  background: var(--yw-gold-tint);
}
.court-card.note-card {
  background: var(--yw-ink);
  color: var(--yw-white);
  border-color: var(--yw-ink);
}
.court-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 0.85rem;
  background: var(--yw-ink);
  color: var(--yw-white);
}
.court-card.featured .court-badge { background: var(--yw-gold); color: var(--yw-white); }
.court-card.note-card .court-badge { background: var(--yw-gold); color: var(--yw-white); }
.court-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--yw-ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.court-card.note-card h4 { color: var(--yw-white); }
.court-coverage {
  font-size: 12px;
  font-weight: 600;
  color: var(--yw-gold);
  margin-bottom: 0.65rem;
  letter-spacing: 0.02em;
}
.court-card.note-card .court-coverage { color: var(--yw-gold-light); }
.court-card p {
  font-size: 13.5px;
  color: var(--yw-muted);
  line-height: 1.6;
}
.court-card.note-card p { color: rgba(255,255,255,0.72); }

/* WHY YOUWILL */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  background: var(--yw-white);
  border: 1px solid var(--yw-border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.why-card.featured {
  border-color: var(--yw-gold);
  background: var(--yw-gold-tint);
}
.why-icon {
  font-size: 26px;
  margin-bottom: 0.85rem;
}
.why-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--yw-ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 13.5px;
  color: var(--yw-muted);
  line-height: 1.65;
}

/* TEAM BLOCK */
.team-block {
  background: var(--yw-ink);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-top: 3.5rem;
  color: var(--yw-white);
  position: relative;
  overflow: hidden;
}
.team-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--yw-gold) 0%, transparent 65%);
  opacity: 0.12;
  border-radius: 50%;
}
.team-block > * { position: relative; }
.team-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(196,160,107,0.15);
  color: var(--yw-gold-light);
  margin-bottom: 1.25rem;
}
.team-block h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--yw-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.team-block h3 em {
  font-style: italic;
  color: var(--yw-gold-light);
  font-weight: 400;
}
.team-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 740px;
  margin-bottom: 2rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,160,107,0.18);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.team-card.gold-accent {
  background: rgba(196,160,107,0.08);
  border-color: rgba(196,160,107,0.35);
}
.team-role {
  font-size: 10px;
  font-weight: 700;
  color: var(--yw-gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.team-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--yw-white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}
.team-card p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
}
.team-disclaimer {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(196,160,107,0.15);
  line-height: 1.7;
}
.team-disclaimer strong { color: rgba(255,255,255,0.78); }

/* ESAFE SYSTEM CAROUSEL */
.esafe-carousel-section {
  background: var(--yw-ink);
  color: var(--yw-white);
  padding: 5rem 2.5rem;
  position: relative;
}
.esafe-carousel-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.esafe-carousel-section .section-label {
  color: var(--yw-gold-light);
}
.esafe-carousel-section .section-title {
  color: var(--yw-white);
  margin-bottom: 1rem;
}
.esafe-carousel-section .section-title em {
  color: var(--yw-gold-light);
  font-style: italic;
}
.esafe-carousel-section .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 700px;
}
.esafe-carousel-wrap {
  position: relative;
  margin-top: 3rem;
}
.esafe-carousel-track {
  display: flex;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}
.esafe-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: 2rem 4rem 1rem;
  scroll-snap-align: start;
}
.esafe-slide-content {
  display: flex; flex-direction: column;
  gap: 1.25rem;
}
.esafe-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yw-gold-light);
}
.esafe-eyebrow .eyebrow-icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(196,160,107,0.15);
  border: 1px solid rgba(196,160,107,0.3);
  font-size: 12px;
}
.esafe-slide h3 {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--yw-white);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.esafe-slide-desc {
  font-size: 16.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 480px;
}
.esafe-slide-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.esafe-slide-meta-item {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 8px;
}
.esafe-slide-meta-item::before {
  content: "✓";
  color: var(--yw-gold-light);
  font-weight: 700;
}

/* Mockup phone-card */
.esafe-mockup {
  display: flex; justify-content: center;
}
.esafe-phone {
  background: var(--yw-paper);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  color: var(--yw-text);
  font-family: 'Inter', sans-serif;
}
.esafe-phone-brand {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--yw-ink);
  margin-bottom: 1rem;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 8px;
}
.esafe-phone-brand .brand-mark { white-space: nowrap; }
.esafe-phone-brand small {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--yw-muted);
  font-weight: 400;
}
.esafe-phone h5 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--yw-ink);
  line-height: 1.2;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.esafe-phone-sub {
  font-size: 12.5px;
  color: var(--yw-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.esafe-doc-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: var(--yw-white);
  border: 1px solid var(--yw-border);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--yw-ink);
}
.esafe-doc-row .doc-name {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.esafe-doc-row .doc-icon {
  width: 18px; height: 18px; opacity: 0.5;
}
.esafe-doc-row .doc-date {
  font-size: 11.5px;
  color: var(--yw-muted);
}
.esafe-doc-row .doc-chev {
  color: var(--yw-muted);
  font-size: 14px;
}
.esafe-upload-zone {
  border: 1.5px dashed var(--yw-border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-size: 12.5px;
  color: var(--yw-muted);
  margin-top: 8px;
}
.esafe-upload-zone strong {
  display: block;
  color: var(--yw-ink);
  margin-bottom: 2px;
  font-size: 13px;
}
.esafe-upload-zone span { display: block; }
.esafe-status-card {
  background: var(--yw-white);
  border: 1px solid var(--yw-border);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 0.8rem;
}
.esafe-status-card h6 {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--yw-ink);
  margin-bottom: 4px;
}
.esafe-status-card p {
  font-size: 11.5px;
  color: var(--yw-muted);
  margin-bottom: 12px;
}
.esafe-status-btn {
  display: block;
  width: 100%;
  background: var(--yw-ink);
  color: var(--yw-white);
  border: none;
  padding: 9px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.esafe-status-meta {
  font-size: 10.5px;
  color: var(--yw-muted);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--yw-border);
  display: flex; justify-content: space-between;
}
.esafe-share-list {
  display: flex; flex-direction: column; gap: 7px;
  margin-top: 0.5rem;
}
.esafe-share-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  background: var(--yw-white);
  border: 1px solid var(--yw-border);
  border-radius: 7px;
  font-size: 12.5px;
}
.esafe-share-name {
  display: flex; align-items: center; gap: 8px;
  font-weight: 500; color: var(--yw-ink);
}
.esafe-share-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--yw-gold);
  color: var(--yw-white);
  font-size: 10.5px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.esafe-share-meta {
  font-size: 10.5px;
  color: var(--yw-muted);
}

/* Carousel controls */
.esafe-controls {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2.5rem;
  padding: 0 1rem;
}
.esafe-dots {
  display: flex; gap: 8px;
  flex: 1; justify-content: center;
}
.esafe-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.esafe-dot.active {
  width: 32px;
  border-radius: 999px;
  background: var(--yw-gold-light);
}
.esafe-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(196,160,107,0.15);
  border: 1px solid rgba(196,160,107,0.3);
  color: var(--yw-gold-light);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.esafe-arrow:hover {
  background: var(--yw-gold);
  color: var(--yw-white);
  border-color: var(--yw-gold);
}
.esafe-pricing-banner {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: rgba(196,160,107,0.08);
  border: 1px solid rgba(196,160,107,0.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.esafe-pricing-banner-text {
  flex: 1; min-width: 280px;
}
.esafe-pricing-banner-text strong {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--yw-white);
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.esafe-pricing-banner-text span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.esafe-pricing-cta {
  background: var(--yw-gold);
  color: var(--yw-white);
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.esafe-pricing-cta:hover { background: var(--yw-gold-deep); }

@media (max-width: 900px) {
  .esafe-slide {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 1.5rem;
  }
  .esafe-slide h3 { font-size: 38px; }
  .esafe-mockup { order: -1; }
  .esafe-phone { max-width: 320px; }
}

/* ADD-ONS */
.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.addon-card {
  background: var(--yw-white);
  border: 1px solid var(--yw-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.2s;
}
.addon-card.featured {
  border-color: var(--yw-gold);
  background: var(--yw-gold-tint);
}
.addon-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: var(--yw-gold);
  color: var(--yw-white);
}
.addon-card:not(.featured) .addon-tag {
  background: var(--yw-ink);
  color: var(--yw-white);
}
.addon-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--yw-ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.015em;
}
.addon-price {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--yw-ink);
  margin-bottom: 0.3rem;
  letter-spacing: -0.025em;
}
.addon-price span {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--yw-muted);
  letter-spacing: 0;
}
.addon-note {
  font-size: 13.5px;
  color: var(--yw-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.addon-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 9px;
  margin-bottom: 1.25rem;
}
.addon-features li {
  font-size: 13.5px;
  color: var(--yw-text);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.addon-features li::before {
  content: '→';
  color: var(--yw-gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
}
.addon-compare {
  background: var(--yw-white);
  border-left: 3px solid var(--yw-gold);
  border-radius: 0 6px 6px 0;
  padding: 0.9rem 1.1rem;
  font-size: 13px;
  color: var(--yw-ink);
  line-height: 1.55;
  margin-top: 1rem;
}
.addon-card.featured .addon-compare {
  background: rgba(255,255,255,0.7);
}
.addon-compare strong { font-weight: 700; }

/* ICC RAK BANNER */
.icc-banner {
  background: var(--yw-ink);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.icc-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -50px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--yw-gold) 0%, transparent 65%);
  opacity: 0.14;
  border-radius: 50%;
}
.icc-banner > * { position: relative; }
.icc-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 999px;
  background: rgba(196,160,107,0.18);
  color: var(--yw-gold-light);
  margin-bottom: 0.75rem;
}
.icc-banner h4 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--yw-white);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.icc-banner p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 620px;
}
.icc-cta {
  background: var(--yw-gold);
  color: var(--yw-white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.icc-cta:hover { background: var(--yw-gold-light); color: var(--yw-ink); }

/* PROCESS */
.process-steps {
  display: flex; flex-direction: column;
  margin-top: 3rem;
  max-width: 760px;
}
.process-step {
  display: flex; gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--yw-border);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yw-gold-tint);
  color: var(--yw-gold-deep);
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid var(--yw-gold);
}
.process-step.featured-step .step-num {
  background: var(--yw-gold);
  color: var(--yw-white);
}
.step-body h4 {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--yw-ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.step-body p {
  font-size: 14px;
  color: var(--yw-muted);
  line-height: 1.65;
}
.step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--yw-gold-deep);
  background: var(--yw-gold-tint);
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 0.6rem;
  letter-spacing: 0.02em;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.price-card {
  background: var(--yw-white);
  border: 1px solid var(--yw-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--yw-gold);
  background: var(--yw-gold-tint);
}
.featured-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--yw-gold);
  color: var(--yw-white);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 0 0 8px 8px;
  white-space: nowrap;
  letter-spacing: 0.12em;
}
.price-tier {
  font-size: 11px;
  font-weight: 700;
  color: var(--yw-gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  margin-top: 0.85rem;
}
.price-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--yw-ink);
  margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
}
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--yw-ink);
  margin-bottom: 0.3rem;
  letter-spacing: -0.025em;
  line-height: 1;
}
.price-amount span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--yw-muted);
}
.price-note {
  font-size: 12.5px;
  color: var(--yw-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.price-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 10px;
  margin-bottom: 1.75rem;
  flex: 1;
}
.price-features li {
  font-size: 13.5px;
  color: var(--yw-text);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.45;
}
.price-features li::before {
  content: '✓';
  color: var(--yw-gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}
.price-btn {
  width: 100%;
  padding: 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--yw-ink);
  background: var(--yw-white);
  color: var(--yw-ink);
  transition: all 0.2s;
}
.price-btn:hover {
  background: var(--yw-ink);
  color: var(--yw-white);
}
.price-card.featured .price-btn {
  background: var(--yw-gold);
  border-color: var(--yw-gold);
  color: var(--yw-white);
}
.price-card.featured .price-btn:hover {
  background: var(--yw-gold-deep);
  border-color: var(--yw-gold-deep);
}

.fees-note {
  background: var(--yw-gold-tint);
  border: 1px solid rgba(196,160,107,0.4);
  border-radius: var(--radius);
  padding: 1.15rem 1.4rem;
  margin-top: 2rem;
  font-size: 13.5px;
  color: var(--yw-gold-deep);
  line-height: 1.6;
}
.fees-note strong { color: var(--yw-ink); }

/* VS BLOCK */
.vs-block {
  background: var(--yw-ink);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}
.vs-block::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--yw-gold) 0%, transparent 65%);
  opacity: 0.10;
  border-radius: 50%;
}
.vs-block h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--yw-white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.015em;
  position: relative;
}
.vs-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  position: relative;
}
.vs-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--yw-gold-light);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.vs-item {
  display: flex; align-items: flex-start; gap: 11px;
  margin-bottom: 11px;
  font-size: 13.5px;
  line-height: 1.5;
}
.vs-item.yes { color: rgba(255,255,255,0.88); }
.vs-item.no { color: rgba(255,255,255,0.35); }
.vs-icon {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}
.vs-item.yes .vs-icon { color: var(--yw-gold-light); }

/* FAQ */
.faq-list {
  margin-top: 2.5rem;
  max-width: 820px;
}
.faq-item {
  border-bottom: 1px solid var(--yw-border);
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0;
  cursor: pointer;
  gap: 1.5rem;
}
.faq-q span:first-child {
  font-family: 'Fraunces', serif;
  font-size: 16.5px;
  font-weight: 500;
  color: var(--yw-ink);
  letter-spacing: -0.005em;
}
.faq-icon {
  font-size: 22px;
  color: var(--yw-gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-a {
  font-size: 14px;
  color: var(--yw-muted);
  line-height: 1.75;
  padding-bottom: 1.4rem;
  display: none;
  max-width: 720px;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* CTA */
.cta-section {
  background: var(--yw-ink);
  padding: 6rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--yw-gold) 0%, transparent 70%);
  opacity: 0.12;
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 46px;
  font-weight: 500;
  color: var(--yw-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
  position: relative;
}
.cta-section h2 em {
  font-style: italic;
  color: var(--yw-gold-light);
  font-weight: 400;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-btns {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.btn-gold-solid {
  background: var(--yw-gold);
  color: var(--yw-white);
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-gold-solid:hover {
  background: var(--yw-gold-light);
  color: var(--yw-ink);
}
.btn-outline-light {
  background: transparent;
  color: var(--yw-white);
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(196,160,107,0.4);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-light:hover {
  border-color: var(--yw-gold-light);
  color: var(--yw-gold-light);
}

/* FOOTER */
footer {
  background: var(--yw-ink);
  padding: 2.5rem 2.5rem;
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(196,160,107,0.15);
}
.footer-logo-block {
  display: flex; flex-direction: column;
  gap: 0.4rem;
  max-width: 320px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--yw-white);
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--yw-gold-light); }
.footer-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--yw-gold-light);
  margin-top: 0.25rem;
}
.footer-parent {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.footer-links {
  display: flex; gap: 1.75rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yw-gold-light); }
.footer-disc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  max-width: 100%;
  flex-basis: 100%;
  line-height: 1.65;
  padding-top: 1.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(196,160,107,0.12);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .audiences, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner, .audiences, .services-grid, .risk-grid, .courts-grid, .why-grid, .pricing-grid, .vs-cols, .icc-banner, .addons-grid, .team-grid { grid-template-columns: 1fr; }
  h1 { font-size: 40px; }
  .section-title { font-size: 28px; }
  .cta-section h2 { font-size: 32px; }
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .section { padding: 3.5rem 1.25rem; }
  .hero { padding: 3.5rem 1.25rem; }
  .team-block { padding: 1.75rem; }
  .vs-block { padding: 1.5rem; }
  .icc-banner { padding: 1.5rem; }
}
