/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0F1C2E;
  --navy-light: #1B2B4B;
  --amber: #E8933B;
  --amber-light: #F5B870;
  --cream: #F7F5F0;
  --cream-dark: #EDE9E0;
  --ink: #1A1A1A;
  --ink-mid: #4A4A4A;
  --ink-light: #7A7A7A;
  --white: #FFFFFF;
  --border: rgba(232,147,59,0.2);
}

html { font-size: 16px; }
body {
  font-family: 'Source Sans 3', 'Helvetica Neue', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--white); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

/* === NAV === */
.nav {
  background: var(--navy);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 24px;
}
.nav-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}
.nav-book-btn {
  background: var(--amber);
  color: var(--white);
  padding: 7px 18px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-book-btn:hover { background: var(--amber-light); }

/* === SECTION COMMONS === */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 20px;
  max-width: 700px;
}
.section-body {
  font-size: 1.125rem;
  color: var(--ink-mid);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* === HERO === */
.hero {
  background: var(--navy);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,147,59,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,147,59,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-lede {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  background: rgba(232,147,59,0.12);
  border: 1px solid rgba(232,147,59,0.3);
  color: var(--amber-light);
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* === DASHBOARD MOCK === */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dashboard-mock {
  background: #162232;
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,147,59,0.15);
  overflow: hidden;
}
.mock-header {
  background: #1a2c42;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }
.mock-title {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-left: 8px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,147,59,0.15);
  border-radius: 8px;
  padding: 12px 10px;
  text-align: center;
}
.metric-label {
  display: block;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
}
.metric-delta {
  display: block;
  font-size: 0.6rem;
  color: var(--amber);
  margin-top: 3px;
}

.workflow-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  padding: 12px 16px;
}
.workflow-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  flex: 1;
  text-align: center;
}
.workflow-step.active {
  background: rgba(232,147,59,0.2);
  border-color: var(--amber);
  color: var(--amber-light);
  font-weight: 600;
}
.flow-arrow {
  color: rgba(232,147,59,0.4);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.mock-bar-row { display: flex; flex-direction: column; gap: 10px; }
.bar-item { display: flex; flex-direction: column; gap: 5px; }
.bar-label { font-size: 0.6rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.bar-track { height: 5px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, var(--amber), #F5B870); border-radius: 3px; }

/* === PROBLEM === */
.problem { padding: 100px 0; background: var(--cream); }
.problem-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 1px solid var(--cream-dark);
}
.stat {}
.stat-number {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.5;
}

/* === SERVICES === */
.services { padding: 100px 0; background: var(--white); }
.services-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  transition: box-shadow 0.2s ease;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(15,28,46,0.08); }
.service-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-card.featured .service-price { color: var(--amber-light); }
.service-card.featured .service-desc { color: rgba(255,255,255,0.65); }
.service-card.featured .service-list li { color: rgba(255,255,255,0.6); }
.service-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-icon { margin-bottom: 20px; }
.service-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'Libre Baskerville', serif;
}
.service-card.featured h3 { color: var(--white); }
.service-price {
  font-size: 0.875rem;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 0.9375rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 0.875rem;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

/* === APPROACH === */
.approach { padding: 100px 0; background: var(--cream); }
.approach-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.approach-step {
  position: relative;
  padding-left: 0;
}
.step-num {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.approach-step h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.approach-step p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  line-height: 1.6;
}
.approach-aside {
  margin-top: 64px;
  padding: 40px 48px;
  background: var(--navy);
  border-radius: 12px;
  max-width: 700px;
}
.aside-quote {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 12px;
}
.aside-credit {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* === CLOSING === */
.closing { padding: 100px 0 120px; background: var(--navy); }
.closing-inner { max-width: 800px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing-headline {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.closing-body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.closing-body:last-of-type { margin-bottom: 0; }
.closing-cta { margin-top: 48px; }
.cta-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  color: var(--amber-light);
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
}
.book-call-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.book-call-cta-btn:hover { background: var(--amber-light); }

/* === FOOTER === */
.footer { background: #0A1421; padding: 48px 0 32px; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.125rem;
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.3); }
.footer-meta { text-align: right; }
.footer-meta p { font-size: 0.8125rem; color: rgba(255,255,255,0.3); line-height: 1.8; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 32px 0;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .problem-stats { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-tagline { display: none; }
  .problem-stats { grid-template-columns: 1fr; gap: 24px; }
  .approach-steps { grid-template-columns: 1fr; }
  .approach-aside { padding: 28px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-meta { text-align: left; }
}