/* ========================================
   Beyond Advisory — Website Styles
   ======================================== */

:root {
  --navy: #0A1628;
  --navy-light: #0f2038;
  --navy-card: #111f35;
  --teal: #3A8E8C;
  --white: #FAFAFA;
  --gray-bg: #f5f5f7;
  --text-muted: #94a3b8;
  --text-body: #cbd5e1;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  text-decoration: none;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-tree {
  height: 80px;
  width: auto;
}

.footer-tree {
  height: 60px;
  width: auto;
}

.nav-contact {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.nav-contact a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-contact a:hover {
  color: var(--teal);
}

.nav-cta-link {
  color: var(--teal) !important;
  font-weight: 600;
}

.nav-sep {
  margin: 0 8px;
}

/* ---- Section Labels ---- */
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label-light {
  color: var(--teal);
}

.section-label-center {
  text-align: center;
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--navy);
}

.section-heading-light {
  color: #fff;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
}

.btn-primary:hover {
  background: #3dbdb5;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn-large {
  padding: 20px 48px;
  font-size: 1.1rem;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--teal);
  color: var(--navy);
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(58, 142, 140, 0.4);
}

.teal {
  color: var(--teal);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(58,142,140,0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.hero-headline {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  text-transform: uppercase;
}

/* ========================================
   VSL
   ======================================== */
.vsl-section {
  padding: 80px 0;
  background: var(--gray-bg);
}

.vsl-embed {
  max-width: 800px;
  margin: 0 auto;
}

.vsl-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--navy);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid rgba(58,142,140,0.2);
}

.vsl-placeholder:hover {
  background: var(--navy-light);
}

.vsl-play-icon {
  transition: transform 0.2s;
}

.vsl-placeholder:hover .vsl-play-icon {
  transform: scale(1.1);
}

.vsl-placeholder-text {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  padding: 0 40px;
}

/* ========================================
   PAIN POINTS (reusing .problem styles)
   ======================================== */
.problem {
  padding: 120px 0 100px;
  background: rgba(58, 142, 140, 0.06);
}

.stat-callout {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 64px;
}

.stat-number {
  font-size: 6rem;
  font-weight: 900;
  font-style: italic;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
}

.stat-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
}

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

.stat-source {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 12px;
}

.problem .section-heading {
  margin-bottom: 48px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-card {
  display: flex;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(58, 142, 140, 0.15);
  background: rgba(58, 142, 140, 0.06);
  padding: 40px 48px;
  gap: 32px;
}

.problem-card-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: rgba(58, 142, 140, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-card-body {
  flex: 1;
}

.problem-card-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--navy);
}

.problem-card-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #64748b;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.problem-card.scroll-reveal {
  transform: translateY(30px);
}

.problem-card.scroll-reveal.visible {
  transform: translateY(0);
}

/* ========================================
   SOLUTION (reusing .company-brain styles)
   ======================================== */
.company-brain {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.brain-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.company-brain .container {
  position: relative;
  z-index: 1;
}

.brain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.brain-card {
  background: var(--navy-card);
  border-top: 3px solid var(--teal);
  border-radius: 12px;
  padding: 36px;
}

.brain-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(58, 142, 140, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.brain-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.brain-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
}

.brain-closer {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.6;
}

/* ========================================
   HOW IT WORKS (reusing .approach styles)
   ======================================== */
.approach {
  padding: 120px 0;
  background: var(--gray-bg);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.approach-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.approach-points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.15rem;
  line-height: 1.5;
  color: #475569;
  font-weight: 500;
  padding: 16px 0;
  border-top: 1px solid #e2e8f0;
}

.approach-points li:last-child {
  border-bottom: 1px solid #e2e8f0;
}

.approach-points .bullet {
  margin-top: 8px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}

.step:first-child {
  border-top: none;
}

.step:last-child {
  padding-bottom: 0;
}

.step-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
  flex-shrink: 0;
  padding-top: 2px;
}

.step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-body);
}

.why-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
}

.bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ========================================
   STATS
   ======================================== */
.stats-section {
  padding: 120px 0;
  background: rgba(58, 142, 140, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  background: #fff;
  border-top: 3px solid var(--teal);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(58,142,140,0.1);
}

.stat-card-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-card-label {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #64748b;
  font-weight: 500;
}

.stats-source {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 32px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-section {
  padding: 120px 0;
  background: var(--navy);
}

.pricing-card {
  max-width: 640px;
  margin: 48px auto 0;
  background: var(--navy-card);
  border-radius: 16px;
  border: 1px solid rgba(58,142,140,0.2);
  overflow: hidden;
}

.pricing-header {
  padding: 40px 40px 24px;
  text-align: center;
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.pricing-tagline {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-features {
  padding: 0 40px 32px;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.4;
}

.pricing-features li svg {
  flex-shrink: 0;
}

.pricing-cta {
  padding: 32px 40px 40px;
  text-align: center;
  background: rgba(58,142,140,0.06);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
  padding: 120px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(78,205,196,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.calendly-inline-widget {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-heading {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-email {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-email a {
  color: var(--teal);
  text-decoration: none;
}

.cta-email a:hover {
  text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #060d18;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 1.1rem;
  color: #fff;
}

.footer-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.6;
}

.footer-info a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-info a:hover {
  color: var(--teal);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .hero-eyebrow {
    font-size: 3.5rem;
  }

  .hero-headline {
    font-size: 3rem;
  }

  .section-heading {
    font-size: 2.2rem;
  }

  .cta-heading {
    font-size: 2.8rem;
  }

  .brain-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-callout {
    flex-direction: column;
    text-align: center;
    padding: 36px;
  }

  .stat-number {
    font-size: 4.5rem;
  }

  .problem-card {
    flex-direction: column;
    padding: 32px 24px;
  }

  .problem-card-icon {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .problem {
    padding: 72px 0 64px;
  }

  .company-brain,
  .approach,
  .stats-section {
    padding: 72px 0;
  }

  .pricing-section {
    padding: 72px 0;
  }

  .cta-section {
    padding: 60px 0;
  }

  .faq {
    padding: 72px 0;
  }

  .faq-question {
    font-size: 1rem;
    padding: 20px 0;
  }

  .nav-tree {
    height: 48px;
  }

  .nav-contact {
    display: none;
  }

  .hero {
    padding-bottom: 60px;
  }

  .hero-eyebrow {
    font-size: 2.8rem;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .cta-heading {
    font-size: 2.2rem;
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .stat-callout {
    padding: 28px 24px;
    gap: 20px;
  }

  .stat-text {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 28px 20px;
  }

  .stat-card-number {
    font-size: 2rem;
  }

  .brain-card {
    padding: 28px;
  }

  .brain-closer {
    font-size: 1rem;
  }

  .approach-points li {
    font-size: 1rem;
    padding: 14px 0;
  }

  .why-card {
    padding: 28px;
  }

  .pricing-header {
    padding: 32px 24px 20px;
  }

  .pricing-features {
    padding: 0 24px 24px;
  }

  .pricing-cta {
    padding: 24px;
  }

  .pricing-header h3 {
    font-size: 1.5rem;
  }

  .vsl-section {
    padding: 48px 0;
  }

  .vsl-placeholder-text {
    font-size: 0.9rem;
    padding: 0 24px;
  }

  .footer {
    padding: 24px 0;
  }

  .footer-tree {
    height: 40px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-info {
    text-align: center;
  }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-reveal, .fade-in {
    opacity: 1 !important;
    transform: none !important;
  }
}
