/* ─── Reset & Variables ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --parchment: #F8F4ED;
  --sand: #EDE3D0;
  --navy: #1F2A52;
  --navy-dark: #151D3A;
  --blue: #1E40AF;
  --blue-light: #E8EDFF;
  --gold: #F0B23B;
  --gold-light: #FFF9ED;
  --slate: #4A567D;
  --muted: #828EA8;
  --border: #DCD3C1;
  --card-border: rgba(31, 42, 82, 0.08);
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ─── Utility ─── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ─── Sticky Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.3s ease;
  background-color: var(--sand);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled {
  background: rgba(237, 227, 208, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 12px rgba(31, 42, 82, 0.04);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(31, 42, 82, 0.15);
}
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ─── Hero ─── */
.hero {
  min-height: calc(100vh - 64px);
  padding: 96px 24px 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.04) 0%, rgba(30, 64, 175, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
}
.hero .container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left { text-align: left; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--slate);
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(31, 42, 82, 0.15);
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 42, 82, 0.25);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(2px); }

/* Proof Strip */
.proof-strip {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 24px 0 0;
  border-top: 1px solid var(--border);
  max-width: 580px;
}
.proof-item { text-align: left; }
.proof-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.proof-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  margin-top: 2px;
  display: block;
}

/* Outline Card */
.outline-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 48px rgba(31, 42, 82, 0.05);
}
.outline-card-top {
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.outline-card-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.outline-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.outline-features {
  list-style: none;
  display: grid;
  gap: 16px;
}
.outline-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--slate);
}
.outline-features li svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}
.outline-features li strong { color: var(--navy); font-weight: 600; }

/* ─── Section Base ─── */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 16.5px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Why Section ─── */
.why-weekend { background: var(--sand); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.why-pillar {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.why-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(31, 42, 82, 0.06);
}
.why-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
}
.why-pillar-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.why-pillar-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}
.why-pillar-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 20px;
}
.why-pillar-proof {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.why-pillar-proof strong { color: var(--navy); }

/* ─── Timeline Section ─── */
.bandwidth { background: var(--parchment); }
.day-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 24px;
  scrollbar-width: none;
}
.day-scroll::-webkit-scrollbar { display: none; }
.day-card {
  flex: 1 1 170px;
  min-width: 170px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px 20px;
  transition: all 0.3s ease;
}
.day-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(31, 42, 82, 0.05);
  border-color: var(--blue);
}
.day-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.day-task { font-size: 13.5px; color: var(--navy); font-weight: 500; }
.bandwidth-punchline {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  border-left: 4px solid var(--blue);
}
.bandwidth-punchline p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
}

/* ─── Command Center Section ─── */
.pipeline { background: var(--navy); color: #fff; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.pipeline .section-label { color: var(--gold); background: rgba(240, 178, 59, 0.12); }
.pipeline .section-title { color: #fff; }
.pipeline .section-subtitle { color: rgba(255,255,255,0.7); }
.pipeline-flow { display: flex; align-items: stretch; gap: 0; }
.pipeline-stage {
  flex: 1;
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.3s;
}
.pipeline-stage:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}
.pipeline-stage-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.pipeline-stage-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
}
.pipeline-stage:nth-child(1) .pipeline-stage-icon { background: rgba(30, 64, 175, 0.15); color: var(--blue); }
.pipeline-stage:nth-child(3) .pipeline-stage-icon { background: rgba(240, 178, 59, 0.15); color: var(--gold); }
.pipeline-stage:nth-child(5) .pipeline-stage-icon { background: rgba(255,255,255,0.1); color: #fff; }

.pipeline-stage h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.pipeline-stage p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.pipeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  color: rgba(255,255,255,0.15);
  font-size: 20px;
}

/* ─── Agenda / Accordions ─── */
.curriculum { background: var(--sand); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.curriculum-day { max-width: 840px; margin: 0 auto; }
.curriculum-day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.curriculum-day-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--navy);
  padding: 6px 14px;
  border-radius: 100px;
}
.curriculum-day-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.accordion-item {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s;
}
.accordion-item:hover { border-color: rgba(31, 42, 82, 0.15); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  gap: 16px;
}
.accordion-trigger-left { display: flex; align-items: center; gap: 16px; flex: 1; }
.accordion-time {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--slate);
  background: var(--parchment);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.accordion-title-wrap { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.accordion-title { font-family: var(--font-display); font-size: 15.5px; font-weight: 800; color: var(--navy); }
.accordion-tagline { font-size: 13px; color: var(--slate); font-style: italic; }
.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--slate);
}
.accordion-item.active .accordion-icon {
  background: var(--navy);
  color: #fff;
  transform: rotate(45deg);
}
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-content-inner { padding: 0 24px 24px 105px; }
.accordion-desc { font-size: 14.5px; color: var(--slate); margin-bottom: 16px; }
.accordion-deliverable {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 12px;
  border-radius: 6px;
}
.accordion-deliverable svg { width: 14px; height: 14px; }

/* ─── Roster Section ─── */
.deliverables { background: var(--parchment); }
.ai-team-roster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.teammate-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  transition: all 0.3s;
}
.teammate-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 42, 82, 0.05);
}
.teammate-avatar {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.teammate-avatar svg { width: 22px; height: 22px; }
.teammate-role { font-family: var(--font-display); font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.teammate-tagline { font-size: 13px; color: var(--slate); line-height: 1.45; margin-bottom: 12px; }
.teammate-ships { display: flex; flex-wrap: wrap; gap: 6px; }
.teammate-chip {
  padding: 4px 10px;
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
}

/* ─── Before/After transformation ─── */
.transformation { background: var(--sand); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  max-width: 840px;
  margin: 0 auto;
}
.transform-col-header {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 20px;
}
.transform-col-header.before-header { background: rgba(130, 142, 168, 0.1); color: var(--slate); border-radius: 8px 0 0 0; }
.transform-col-header.after-header { background: var(--blue-light); color: var(--blue); border-radius: 0 8px 0 0; }
.transform-arrow-header { display: flex; align-items: center; justify-content: center; padding-top: 16px; padding-bottom: 16px; }
.transform-row {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.5;
  min-height: 52px;
  display: flex;
  align-items: center;
}
.transform-row.before-row { color: var(--slate); background: rgba(130, 142, 168, 0.03); }
.transform-row.after-row { color: var(--navy); font-weight: 600; background: rgba(30, 64, 175, 0.02); }
.transform-arrow-cell { display: flex; align-items: center; justify-content: center; color: var(--blue); border-bottom: 1px solid transparent; }
.transform-row.before-row.last-row { border-bottom: none; border-radius: 0 0 0 12px; }
.transform-row.after-row.last-row { border-bottom: none; border-radius: 0 0 12px 0; }

/* ─── Who it is for ─── */
.personas { background: var(--parchment); }
.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}
.persona-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 42, 82, 0.05);
  border-color: var(--blue);
}
.persona-name { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.persona-revenue { font-family: var(--font-mono); font-size: 11px; color: var(--muted); margin-bottom: 12px; display: block; }
.persona-pain { font-size: 14.5px; color: var(--slate); line-height: 1.6; margin-bottom: 20px; }
.persona-gets { font-size: 14px; font-weight: 700; color: var(--blue); display: flex; align-items: center; gap: 8px; }
.persona-gets svg { width: 16px; height: 16px; flex-shrink: 0; }

.persona-criteria {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  border-left: 4px solid var(--blue);
}
.persona-criteria-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.persona-criteria-list { list-style: none; display: grid; gap: 12px; margin-bottom: 20px; }
.persona-criteria-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--navy); }
.persona-criteria-list svg { width: 18px; height: 18px; color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.persona-criteria-note { font-size: 13px; color: var(--slate); font-style: italic; border-top: 1px dashed var(--border); padding-top: 16px; }

/* ─── Comparison Table ─── */
.comparison { background: var(--sand); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.compare-table {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  overflow: hidden;
}
.compare-header { padding: 20px 16px; font-family: var(--font-display); font-size: 13.5px; font-weight: 800; text-align: center; border-bottom: 2px solid var(--border); }
.compare-header:first-child { text-align: left; background: var(--parchment); }
.compare-header.highlight { background: var(--navy); color: #fff; border-bottom-color: var(--navy-dark); }
.compare-header:not(:first-child):not(.highlight) { color: var(--slate); }
.compare-cell { padding: 16px; font-size: 13.5px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: center; text-align: center; color: var(--slate); }
.compare-cell:first-child { justify-content: flex-start; text-align: left; font-weight: 600; color: var(--navy); background: var(--parchment); }
.compare-cell.highlight { background: rgba(31, 42, 82, 0.02); font-weight: 600; color: var(--navy); }
.compare-table .compare-row:last-child .compare-cell { border-bottom: none; }

/* ─── Instructors Section ─── */
.instructors { background: var(--parchment); }
.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 840px;
  margin: 0 auto;
}
.instructor-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}
.instructor-card:hover {
  box-shadow: 0 12px 36px rgba(31, 42, 82, 0.06);
  transform: translateY(-4px);
}
.instructor-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--sand);
  border: 4px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  overflow: hidden;
}
.instructor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instructor-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.instructor-role {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 20px;
}
.instructor-bio {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  text-align: left;
}
.instructor-bio + .instructor-bio { margin-top: 12px; }
.instructor-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}
.instructor-linkedin:hover { text-decoration: underline; }

/* ─── Pricing / Waitlist Block ─── */
.pricing { background: var(--sand); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover { box-shadow: 0 16px 48px rgba(31, 42, 82, 0.08); }
.pricing-card.featured { border-color: var(--blue); box-shadow: 0 20px 48px rgba(30, 64, 175, 0.1); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
}
.pricing-tier { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; text-align: center; }
.pricing-amount { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--navy); margin-bottom: 16px; text-align: center; letter-spacing: -0.02em; }
.pricing-amount span { font-size: 15px; font-weight: 500; color: var(--slate); display: block; margin-top: 4px; }
.pricing-features {
  list-style: none;
  margin: 32px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--slate); }
.pricing-features li svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* Waitlist Form */
.waitlist-form-container {
  max-width: 480px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 16px;
  text-align: left;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background-color: var(--parchment);
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--blue); }
.pricing-btn-primary {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s;
}
.pricing-btn-primary:hover { background-color: #4566E2; }

/* ─── FAQ Section ─── */
.faq { background: var(--parchment); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  gap: 16px;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--slate);
  font-size: 16px;
}
.faq-item.active .faq-icon { background: var(--navy); color: #fff; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 14.5px; color: var(--slate); line-height: 1.65; }

/* ─── Final CTA ─── */
.final-cta { background: var(--sand); padding: 96px 0; text-align: center; border-top: 1px solid var(--border); }
.final-cta-headline { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: var(--navy); max-width: 740px; margin: 0 auto 16px; line-height: 1.2; letter-spacing: -0.02em; }
.final-cta-sub { font-size: 16px; color: var(--slate); max-width: 500px; margin: 0 auto 36px; }

/* ─── Footer ─── */
.footer { padding: 48px 0; border-top: 1px solid var(--border); text-align: center; background-color: var(--parchment); }
.footer-logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo img { height: 28px; width: auto; margin-right: 8px; }
.footer p { font-size: 13.5px; color: var(--slate); }
.footer-legal { margin-top: 12px; font-size: 12.5px; }
.footer-legal a { color: var(--slate); text-decoration: none; }
.footer-legal a:hover { color: var(--blue); }

/* ─── Mobile Sticky Bar ─── */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(31, 42, 82, 0.06);
}
.mobile-sticky-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mobile-sticky-price { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy); }
.mobile-sticky-price span { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 500; color: var(--slate); }
.mobile-sticky .btn-primary { padding: 10px 20px; font-size: 13px; border-radius: 8px; }

/* ─── Scroll Reveal ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .pipeline-flow { flex-direction: column; gap: 16px; }
  .pipeline-arrow { flex: 0 0 auto; transform: rotate(90deg); padding: 4px 0; }
  .pricing-features { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-left { text-align: center; }
  .hero h1, .hero-sub { max-width: 620px; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .proof-strip { justify-content: center; margin: 0 auto; }
  .outline-card { max-width: 480px; margin: 0 auto; }
  .instructor-grid { grid-template-columns: 1fr; max-width: 480px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(237, 227, 208, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open .nav-cta { width: 100%; text-align: center; justify-content: center; }
  .hero { min-height: 0; padding: 100px 24px 60px; display: block; }
  section { padding: 64px 0; }
  .proof-strip { gap: 24px; }
  .proof-item { flex: 0 0 calc(50% - 12px); text-align: center; }
  .why-pillars { grid-template-columns: 1fr; max-width: 480px; }
  .day-card { flex: 0 0 150px; }
  .persona-grid { grid-template-columns: 1fr; }
  .compare-table { grid-template-columns: 1fr 1fr; }
  .compare-table .compare-header:first-child, .compare-table .compare-cell:first-child { display: none; }
  .accordion-content-inner { padding-left: 24px; }
  .accordion-trigger-left { flex-direction: column; gap: 4px; }
  .mobile-sticky { display: block; }
  .footer { padding-bottom: 80px; }
  .transform-row { padding: 12px 14px; font-size: 13px; min-height: 44px; }
  .transform-col-header { padding: 12px 14px; font-size: 10px; }
}

@media (max-width: 540px) {
  .outline-card { padding: 24px 20px; }
  .outline-card-title { font-size: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
}

/* ─── Framer & Glassmorphism Aesthetics ─── */
.framer-glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(31, 42, 82, 0.03);
  border-radius: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.framer-glass:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(31, 42, 82, 0.06);
  border-color: rgba(30, 64, 175, 0.15);
}

/* Framer style spring reveals */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delay classes for direct children of grids */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.20s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.30s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.40s; }

/* Stats Bar */
.stats-bar-section {
  padding: 24px 0 60px;
  background: var(--parchment);
}
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  text-align: center;
}
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.stat-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.4;
}

/* Gap Section */
.gap-section {
  background: var(--parchment);
  padding: 60px 0 80px;
  border-top: 1px solid var(--border);
}
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto 36px;
}
.gap-card {
  padding: 32px 24px;
  text-align: center;
}
.gap-stat {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.gap-stat span {
  font-size: 24px;
  font-weight: 600;
  color: var(--slate);
}
.gap-text {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.55;
}
.gap-punch {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
}

/* Who's in the Room */
.room-section {
  background: var(--parchment);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.room-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.room-mix {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bar-row {
  display: grid;
  grid-template-columns: 200px 1fr 50px;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}
.bar {
  height: 10px;
  background: rgba(31, 42, 82, 0.05);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(31, 42, 82, 0.08);
}
.bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--navy));
  border-radius: 999px;
}
.bar-value {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--slate);
}
.room-categories {
  padding: 32px;
}
.categories-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
  margin-bottom: 16px;
}
.pills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-pill {
  padding: 6px 12px;
  background: var(--parchment);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.2s;
}
.category-pill:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

/* Voices (Feedback & Testimonials) */
.voices-section {
  background: var(--parchment);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.featured-voice {
  max-width: 960px;
  margin: 0 auto 48px;
  padding: 48px;
  text-align: center;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.06), rgba(91, 123, 255, 0.03));
}
.featured-quote-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 24px;
  font-style: italic;
  letter-spacing: -0.02em;
}
.featured-quote-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.voices-subhead {
  max-width: 960px;
  margin: 0 auto 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.voices-subnote {
  max-width: 960px;
  margin: 0 auto 24px;
  font-size: 14px;
  color: var(--slate);
}
.consented-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 48px;
}
.voice-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.voice-quote {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}
.voice-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 800;
  border: 1px solid rgba(30, 64, 175, 0.2);
}
.voice-info {
  display: flex;
  flex-direction: column;
}
.voice-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-verified {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 6px;
  border-radius: 4px;
}
.voice-desc {
  font-size: 12.5px;
  color: var(--slate);
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto 32px;
}
.goal-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.goal-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 12px;
}
.goal-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
}
.data-notice {
  max-width: 960px;
  margin: 0 auto;
  padding: 16px;
  background: rgba(31, 42, 82, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 768px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px 16px; }
  .gap-grid { grid-template-columns: 1fr; gap: 16px; }
  .room-grid { grid-template-columns: 1fr; gap: 24px; }
  .bar-row { grid-template-columns: 140px 1fr 40px; gap: 12px; font-size: 12px; }
  .consented-grid { grid-template-columns: 1fr; gap: 16px; }
  .goals-grid { grid-template-columns: 1fr; gap: 12px; }
  .featured-voice { padding: 32px 20px; }
  .featured-quote-text { font-size: 18px; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
}

/* Instructor Bio Sizing & Highlights */
.instructor-highlights {
  list-style: none;
  margin: 16px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.instructor-highlights li {
  font-size: 13px;
  color: var(--slate);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.instructor-highlights li svg {
  width: 14px;
  height: 14px;
  color: var(--blue);
  margin-top: 3px;
  flex-shrink: 0;
}
.instructor-tech-title {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 20px 0 8px;
  text-align: left;
}
.instructor-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}
.instructor-tech-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--navy);
  background: var(--parchment);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ─── Brand Showcase Section ─── */
.brand-showcase {
  background: var(--sand);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}
.brand-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 640px) {
  .brand-showcase-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
  .brand-showcase-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .brand-showcase-grid { grid-template-columns: repeat(6, 1fr); }
}
.brand-showcase-item {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 100px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.brand-showcase-item:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 12px 20px -8px rgba(30, 64, 175, 0.15);
  background: rgba(255, 255, 255, 0.95);
}
.brand-showcase-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.brand-showcase-type {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: 0.05em;
}

/* ─── AI Calling Consent Modal ─── */
.consent-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 15, 30, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.consent-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.consent-modal {
  background: #090E1F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.consent-modal-overlay.open .consent-modal {
  transform: translateY(0);
}
.consent-modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.consent-modal-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  text-align: center;
}
.consent-modal-body {
  color: #D1D5DB;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 20px;
}
.consent-modal-body p {
  margin-bottom: 12px;
}
.consent-bullets {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 16px;
}
.consent-bullets li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #E5E7EB;
}
.consent-bullets li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #10B981;
  font-weight: bold;
}
.consent-policy-link {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #9CA3AF;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 16px;
  border-radius: 8px;
  width: 100%;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.consent-policy-link a {
  color: #10B981;
  text-decoration: underline;
  margin-left: 4px;
}
.consent-policy-link a:hover {
  color: #34D399;
}
.consent-btn-accept {
  width: 100%;
  padding: 14px;
  background: #10B981;
  color: #090E1F;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.consent-btn-accept:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}


