:root {
  --bg-dark: #0a0f1c;
  --bg-card: #111827;
  --bg-card-hover: #1a2236;
  --fg: #e8eaf0;
  --fg-muted: #8b92a8;
  --accent: #f0a500;
  --accent-light: #ffd166;
  --accent-glow: rgba(240, 165, 0, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --max-width: 1100px;
}

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

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240, 165, 0, 0.08), transparent 60%),
    linear-gradient(180deg, #0a0f1c 0%, #0d1326 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.hero-container {
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(240, 165, 0, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 24px;
  background: var(--bg-dark);
}

.problem-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  margin-bottom: 48px;
  text-align: center;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background 0.2s, border-color 0.2s;
}

.problem-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(240, 165, 0, 0.15);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(240, 165, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.problem-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1326 100%);
}

.services-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--fg-muted);
  text-align: center;
  max-width: 560px;
  margin: -28px auto 56px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-item {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  background: var(--bg-card);
  transition: background 0.2s;
}

.service-item:hover {
  background: var(--bg-card-hover);
}

.service-marker {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 2px;
}

.service-content h3 {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 100px 24px;
  background: var(--bg-dark);
}

.industries-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.industry-card:hover {
  border-color: rgba(240, 165, 0, 0.2);
  transform: translateY(-2px);
}

.industry-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.industry-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 24px;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(240, 165, 0, 0.06), transparent 60%),
    linear-gradient(180deg, #0d1326 0%, var(--bg-dark) 100%);
  text-align: center;
}

.closing-container {
  max-width: 720px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-values {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.value-tag {
  padding: 8px 20px;
  background: var(--accent-glow);
  border: 1px solid rgba(240, 165, 0, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.02em;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--fg-muted);
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 60px 20px 48px;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .closing-values {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #0a0f1c;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
}

.btn-full {
  display: block;
  text-align: center;
  width: 100%;
}

/* ===== HERO ACTIONS (homepage) ===== */
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  display: inline-block;
  padding: 9px 20px;
  background: var(--accent);
  color: #0a0f1c;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 7px;
  text-decoration: none;
  margin-left: 8px;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--accent-light);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
  user-select: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: var(--bg-card-hover);
  color: var(--fg);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  padding: 100px 24px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240, 165, 0, 0.07), transparent 60%),
    linear-gradient(180deg, #0a0f1c 0%, #0d1326 100%);
  position: relative;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.page-hero-sm {
  padding: 80px 24px 60px;
}

.page-hero-container {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(240, 165, 0, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}

.page-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ===== SERVICE DETAIL LAYOUT ===== */
.service-detail {
  padding: 80px 24px 100px;
  background: var(--bg-dark);
}

.service-detail-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.service-detail-main h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin: 48px 0 16px;
}

.service-detail-main h2:first-child {
  margin-top: 0;
}

.service-detail-main p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  padding-left: 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Stat blocks inside detail pages */
.stat-blocks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.stat-block {
  flex: 1;
  min-width: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.stat-block-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-block-label {
  display: block;
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Integration tags */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.integration-tag {
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ===== SIDEBAR ===== */
.service-detail-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid rgba(240, 165, 0, 0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.sidebar-card-muted {
  border-color: var(--border);
}

.sidebar-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 16px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--accent);
}

.price-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.price-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 12px 0 20px;
}

.sidebar-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.sidebar-link:hover {
  color: var(--accent);
}

.sidebar-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
}

.inline-link:hover {
  text-decoration: underline;
}

.best-for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.best-for-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}

.best-for-list li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--accent);
}

/* ===== PAGE CTA ===== */
.page-cta {
  padding: 100px 24px;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(240, 165, 0, 0.06), transparent 70%),
    var(--bg-dark);
  text-align: center;
  border-top: 1px solid var(--border);
}

.page-cta-container {
  max-width: 640px;
  margin: 0 auto;
}

.page-cta h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-cta p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 36px;
}

/* ===== PACKAGE PAGES ===== */
.included-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.included-item {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.included-item:last-child {
  border-bottom: none;
}

.included-item:hover {
  background: var(--bg-card-hover);
}

.included-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 24px;
}

.included-content h3 {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
}

.included-content p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 6px;
}

/* ===== PRICING PAGE ===== */
.pricing-section {
  padding: 80px 24px 100px;
  background: var(--bg-dark);
}

.pricing-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pricing-subhead {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.pricing-badge-save {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 0;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover {
  border-color: rgba(240,165,0,0.2);
  transform: translateY(-2px);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.6;
}

.pricing-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}

.pricing-amounts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.pricing-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--accent);
}

.pricing-mo {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.pricing-includes {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-includes li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding-left: 18px;
  position: relative;
}

.pricing-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.package-card-featured {
  border-color: rgba(240,165,0,0.2);
}

.package-card:hover {
  transform: translateY(-2px);
  border-color: rgba(240,165,0,0.35);
}

.package-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.package-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ===== FAQ ===== */
.pricing-faq {
  margin-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.faq-item h4 {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===== BOOK PAGE ===== */
.book-section {
  padding: 60px 24px 100px;
  background: var(--bg-dark);
}

.book-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.book-left h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 32px;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.expect-item {
  display: flex;
  gap: 20px;
}

.expect-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
  padding-top: 2px;
}

.expect-item h4 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.expect-item p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.book-facts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.book-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.book-fact-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
}

.book-fact-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.book-right {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 8px;
}

.calendly-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

/* ===== RESPONSIVE: INTERIOR PAGES ===== */
@media (max-width: 900px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-sidebar {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    margin: 8px 0 0;
    text-align: center;
    border-radius: 8px;
    padding: 12px 20px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: transparent;
    padding-left: 12px;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .stat-blocks {
    flex-direction: column;
  }

  .pricing-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 70px 20px 60px;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 2rem;
  }

  .pricing-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}