/* ================================================================
   InsightSerenity — Main Stylesheet
   Light mode default · Auto dark mode by time (7pm–7am)
   Primary: #ffc451 · Font: Inter + Space Grotesk
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #ffffff;
  --bg-card:     #f9fafb;
  --bg-muted:    #f3f4f6;
  --bg-dark-alt: #f0f0f0;
  --border:      #e5e7eb;
  --border-soft: #f0f0f0;
  --text:        #0a0a0a;
  --text-muted:  #6b7280;
  --text-soft:   #9ca3af;
  --primary:     #ffc451;
  --primary-dim: rgba(255,196,81,0.12);
  --primary-border: rgba(255,196,81,0.3);
  --shadow:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-gold: 0 4px 24px rgba(255,196,81,0.18);
  --nav-bg:      rgba(255,255,255,0.85);
  --radius:      0.75rem;
  --radius-lg:   1.25rem;
  --radius-xl:   1.5rem;
}

.dark {
  --bg:          #0a0a0a;
  --bg-card:     #111111;
  --bg-muted:    #1a1a1a;
  --bg-dark-alt: #0f0f0f;
  --border:      #1f1f1f;
  --border-soft: #2a2a2a;
  --text:        #f0f0f0;
  --text-muted:  #888888;
  --text-soft:   #555555;
  --primary:     #ffc451;
  --primary-dim: rgba(255,196,81,0.10);
  --primary-border: rgba(255,196,81,0.25);
  --shadow:      0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.6);
  --shadow-gold: 0 4px 24px rgba(255,196,81,0.12);
  --nav-bg:      rgba(10,10,10,0.92);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Typography ────────────────────────────────────────────────── */
.font-display { font-family: 'Space Grotesk', sans-serif; }
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--text); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); letter-spacing: -0.02em; }
h3 { font-size: 1rem; }
p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ── Layout Utilities ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.text-center { text-align: center; }

/* ── Background Variants ───────────────────────────────────────── */
.bg-default { background: var(--bg); }
.bg-muted   { background: var(--bg-muted); }
.bg-card    { background: var(--bg-card); }
.bg-grid {
  background-image:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(to right, var(--border-soft) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* ── Badge ─────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--primary-dim);
  border: 1px solid var(--primary-border);
  color: var(--primary);
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.875rem 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.625rem 0;
  box-shadow: var(--shadow);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 800;
}
.nav-monogram {
  width: 2rem; height: 2rem;
  background: var(--primary);
  color: #000;
  border-radius: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo .gold { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-size: 0.8125rem; font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--primary); background: transparent; }
.nav-link.active { color: var(--primary); background: transparent; }

/* ── Nav Dropdown ───────────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  transition: color 0.2s;
  cursor: pointer;
  background: none; border: none; font-family: inherit;
}
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--primary); }
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-trigger.active { color: var(--primary); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.375rem;
  padding-top: calc(0.375rem + 0.5rem);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
  /* Invisible bridge so mouse travel doesn't close the menu */
  margin-top: 0;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem; font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-item:hover { color: var(--primary); background: var(--primary-dim); }
.nav-dropdown-item.active { color: var(--primary); background: var(--primary-dim); }
.nav-dropdown-icon {
  width: 1.875rem; height: 1.875rem;
  border-radius: 0.4rem;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.nav-dropdown-icon svg { width: 0.8125rem; height: 0.8125rem; color: var(--text-soft); transition: color 0.2s; }
.nav-dropdown-item:hover .nav-dropdown-icon { background: var(--primary-dim); border-color: var(--primary-border); }
.nav-dropdown-item:hover .nav-dropdown-icon svg { color: var(--primary); }
.nav-dropdown-item.active .nav-dropdown-icon { background: var(--primary-dim); border-color: var(--primary-border); }
.nav-dropdown-item.active .nav-dropdown-icon svg { color: var(--primary); }
.nav-dd-label { font-weight: 600; font-size: 0.8rem; color: var(--text); line-height: 1.2; }
.nav-dd-sub { font-size: 0.7rem; color: var(--text-soft); margin-top: 0.1rem; }
.nav-dropdown-item:hover .nav-dd-label,
.nav-dropdown-item.active .nav-dd-label { color: var(--primary); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 0.3rem 0.375rem; }


.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8rem; color: var(--text-muted); }
.nav-phone svg { color: var(--primary); }
.btn-book {
  background: var(--primary); color: #000;
  font-size: 0.8rem; font-weight: 700;
  padding: 0.5rem 1.125rem;
  border-radius: 0.625rem;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-book:hover { opacity: 0.88; transform: translateY(-1px); }
.theme-toggle {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--primary); color: var(--primary); }
.mobile-toggle {
  display: none;
  width: 2rem; height: 2rem;
  align-items: center; justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { display: block; padding: 0.625rem 0.875rem; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: var(--radius);
  font-size: 0.8125rem; font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #000; }
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-outline {
  border: 1.5px solid var(--primary-border);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary-dim); }
.btn-ghost {
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-card);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 0.875rem 2rem; font-size: 0.9rem; }
.btn-sm { padding: 0.4rem 0.875rem; font-size: 0.75rem; }

/* ── Cards ──────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--primary-border);
  box-shadow: 0 0 0 1px var(--primary-border), var(--shadow-md);
  transform: none;
}
.card-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--primary-dim);
  border-radius: 0.625rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.card-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.card h3 { font-size: 0.9rem; margin-bottom: 0.375rem; color: var(--text); }
.card p  { font-size: 0.8rem; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  background: var(--bg);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 900px; margin: 0 auto; text-align: center; }
.hero h1 { margin-bottom: 1.5rem; line-height: 1.1; font-size: clamp(2.25rem, 4.5vw, 4rem); }
.hero h1 .hero-line-1 { display: block; font-weight: 900; color: var(--text); white-space: nowrap; }
.hero h1 .hero-line-2 { display: block; color: #ffc451; font-weight: 900; white-space: nowrap; }
.hero > .container > .hero-content > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 2.25rem; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.75rem; }
.hero-note { font-size: 0.72rem; color: var(--text-soft); }
.hero .btn-ghost {
  border-color: var(--border);
  color: var(--text-muted);
  background: var(--bg-card);
}
.hero .btn-ghost:hover {
  border-color: #ffc451;
  color: #ffc451;
  background: rgba(255,196,81,0.1);
}

/* Typewriter */
.typewriter-wrap { display: inline-block; position: relative; }
.typewriter-text { color: var(--primary); }
.typewriter-cursor {
  display: inline-block;
  width: 3px; height: 0.85em;
  background: var(--primary);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: blink-cursor 1s step-end infinite;
}
@keyframes blink-cursor { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(255,196,81,0.07); top: -5%; left: -8%; }
.hero-orb-2 { width: 450px; height: 450px; background: rgba(255,196,81,0.05); bottom: 0%; right: -5%; }
.hero-orb-3 { width: 250px; height: 250px; background: rgba(255,196,81,0.04); top: 40%; left: 50%; transform: translateX(-50%); }

/* ── Stats Row ──────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}
.stat-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s;
}
.stat-item:hover { border-color: var(--primary-border); }
.stat-value { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.7rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* ── Section Header ─────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 0.625rem; }
.section-header p { max-width: 480px; margin: 0 auto; font-size: 0.875rem; }

/* ── Services Grid ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  cursor: pointer;
  transition: all 0.25s;
}
.service-card:hover {
  border-color: var(--primary-border);
  box-shadow: 0 0 0 1px var(--primary-border), var(--shadow-gold);
  transform: translateY(-2px);
}
.service-card .card-icon { margin-bottom: 0.875rem; }
.service-card h3 { font-size: 0.8375rem; font-weight: 700; margin-bottom: 0.375rem; color: var(--text); }
.service-card p  { font-size: 0.775rem; line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.775rem; font-weight: 600; color: var(--primary);
  margin-top: 0.875rem;
}
.service-link svg { width: 0.875rem; height: 0.875rem; transition: transform 0.2s; }
.service-card:hover .service-link svg { transform: translateX(3px); }

/* ── About Split ─────────────────────────────────────────────────── */
.about-img-wrap {
  position: relative;
  display: inline-block;
}
.about-img-wrap img {
  border-radius: var(--radius-xl);
  width: 100%; max-width: 440px;
  aspect-ratio: 4/5; object-fit: cover;
  border: 1px solid var(--border);
}
.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--bg-card);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow-md);
}
.about-badge svg { width: 1.125rem; height: 1.125rem; color: var(--primary); }
.about-badge .badge-title { font-size: 0.75rem; font-weight: 700; color: var(--text); }
.about-badge .badge-sub   { font-size: 0.675rem; color: var(--text-muted); }
.skill-tag {
  display: inline-block;
  background: var(--bg-muted);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7375rem; font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.skill-tag:hover { border-color: var(--primary); color: var(--primary); }
.skill-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ── Process Steps ───────────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  top: 2.25rem; left: 12%; right: 12%;
  height: 1px;
  background: var(--border);
}
.process-step { text-align: center; }
.step-icon-wrap {
  width: 4.5rem; height: 4.5rem;
  margin: 0 auto 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: border-color 0.2s;
}
.step-icon-wrap svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.step-num {
  position: absolute; top: -0.625rem; right: -0.625rem;
  width: 1.375rem; height: 1.375rem;
  background: var(--primary); color: #000;
  font-size: 0.65rem; font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process-step:hover .step-icon-wrap { border-color: var(--primary); box-shadow: var(--shadow-gold); }
.process-step h3 { font-size: 0.875rem; margin-bottom: 0.375rem; }
.process-step p  { font-size: 0.775rem; }

/* ── Testimonials ────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex; flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.testimonial-card:hover { border-color: var(--primary-border); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.stars svg { width: 0.875rem; height: 0.875rem; color: var(--primary); fill: var(--primary); }
.testimonial-quote { font-size: 0.8125rem; line-height: 1.75; font-style: italic; color: var(--text-muted); flex: 1; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.625rem; }
.testimonial-avatar { width: 2.25rem; height: 2.25rem; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary-border); }
.testimonial-name { font-size: 0.8rem; font-weight: 700; color: var(--text); }
.testimonial-role { font-size: 0.7rem; color: var(--text-soft); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.625rem; max-width: 680px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--primary-border); }
.faq-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  background: transparent;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--primary); }
.faq-chevron { width: 1rem; height: 1rem; flex-shrink: 0; color: var(--text-soft); transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
.faq-item.open .faq-body { max-height: 300px; }
.faq-body p { font-size: 0.8rem; padding: 0 1.25rem 1rem; border-top: 1px solid var(--border); padding-top: 0.875rem; }

/* ── CTA Banner ──────────────────────────────────────────────────── */
.cta-banner {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), inset 0 -1px 0 rgba(0,0,0,0.1);
}
.cta-banner h2 { color: #000; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(0,0,0,0.65); font-size: 0.875rem; margin-bottom: 1.75rem; max-width: 460px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-dark { background: #000; color: #fff; }
.cta-banner .btn-dark:hover { background: #1a1a1a; }
.cta-banner .btn-clear { border: 1.5px solid rgba(0,0,0,0.25); color: #000; background: transparent; }
.cta-banner .btn-clear:hover { background: rgba(0,0,0,0.08); }
.cta-orb-1 { position: absolute; width: 220px; height: 220px; background: rgba(0,0,0,0.06); border-radius: 50%; top: -60px; left: -60px; }
.cta-orb-2 { position: absolute; width: 180px; height: 180px; background: rgba(0,0,0,0.06); border-radius: 50%; bottom: -50px; right: -50px; }

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
  background: var(--bg-dark-alt);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand-desc { font-size: 0.775rem; color: var(--text-muted); line-height: 1.7; margin: 0.875rem 0 1.25rem; max-width: 280px; }
.footer-socials { display: flex; gap: 0.5rem; }
.social-btn {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-btn svg { width: 0.875rem; height: 0.875rem; }
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: #000; }
.footer-heading { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.875rem;
}
.footer-bottom p { font-size: 0.75rem; }

/* ── Divider / Section alternate ────────────────────────────────── */
.section-alt {
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Trusted bar ─────────────────────────────────────────────────── */
.trusted-bar {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--text-soft);
  margin-top: 2.5rem;
}
.trusted-highlight { font-weight: 700; color: var(--text); }

/* ── Inline Highlight list ───────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 0.625rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8rem; color: var(--text); }
.check-item svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 0.1rem; }

/* ── Service Detail Card (decorative) ────────────────────────────── */
.feature-mini-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  transition: border-color 0.2s;
}
.feature-mini-card:hover { border-color: var(--primary-border); }
.mini-icon {
  width: 2rem; height: 2rem;
  background: var(--primary-dim);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mini-icon svg { width: 0.875rem; height: 0.875rem; color: var(--primary); }
.mini-title { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.mini-sub   { font-size: 0.7rem; color: var(--text-muted); }

/* ── Service deco box ────────────────────────────────────────────── */
.service-deco {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.deco-icon-center {
  width: 5rem; height: 5rem;
  background: var(--primary-dim);
  border: 2px solid var(--primary-border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.deco-icon-center svg { width: 2.5rem; height: 2.5rem; color: var(--primary); }

/* ── Pricing ─────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; align-items: stretch; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pricing-card.popular { border-color: var(--primary); box-shadow: var(--shadow-gold); }
.pricing-popular-bar { background: var(--primary); color: #000; font-size: 0.7rem; font-weight: 800; text-align: center; padding: 0.375rem; letter-spacing: 0.05em; text-transform: uppercase; }
.pricing-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pricing-name { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.25rem; }
.pricing-price { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-price span { font-size: 0.875rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.775rem; color: var(--text-muted); margin: 0.5rem 0 1.25rem; }
.pricing-features { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.pricing-feat { display: flex; align-items: center; gap: 0.5rem; font-size: 0.775rem; color: var(--text); }
.pricing-feat svg { width: 0.875rem; height: 0.875rem; color: var(--primary); flex-shrink: 0; }

/* ── Contact Form ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.775rem; font-weight: 600; color: var(--text); margin-bottom: 0.375rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-muted);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  font-size: 0.825rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,196,81,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-soft); }
.form-select option { background: var(--bg-card); color: var(--text); }
.form-textarea { resize: vertical; min-height: 110px; }

/* ── Calendly embed ───────────────────────────────────────────────── */
.calendly-inline-widget { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); min-height: 680px; }

/* ── Page hero (inner pages) ─────────────────────────────────────── */
.page-hero {
  padding: 9rem 0 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero h1 { margin-bottom: 0.875rem; }
.page-hero p  { font-size: 0.9375rem; max-width: 500px; margin: 0 auto; }

/* ── Scroll Reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.4} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes spin-slow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.pulse-dot { animation: pulse-dot 2s infinite; }
.float { animation: float 3s ease-in-out infinite; }
.spin-slow { animation: spin-slow 20s linear infinite; }

/* ── Chip indicator ──────────────────────────────────────────────── */
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

/* ── Quick jump pills (service page) ────────────────────────────── */
.jump-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
.jump-pill {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.875rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 500;
  transition: all 0.2s;
}
.jump-pill:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-dim); }
.jump-pill svg { width: 0.8rem; height: 0.8rem; }

/* ── Service detail section ──────────────────────────────────────── */
.service-detail { padding: 5rem 0; }
.service-detail:nth-child(even) { background: var(--bg-muted); }

/* ── Tech stack grid ─────────────────────────────────────────────── */
.tech-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ── Contact cards ───────────────────────────────────────────────── */
.contact-method {
  background: var(--bg-card); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.375rem;
  text-align: center; cursor: pointer;
  transition: all 0.25s;
}
.contact-method:hover { border-color: var(--primary); box-shadow: var(--shadow-gold); }
.contact-method .cm-icon {
  width: 3rem; height: 3rem;
  background: var(--primary-dim); border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.contact-method .cm-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.contact-method h3 { font-size: 0.85rem; margin-bottom: 0.25rem; }
.contact-method p  { font-size: 0.775rem; }

/* ── Availability badge ──────────────────────────────────────────── */
.avail-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: #16a34a;
  padding: 0.3rem 0.875rem; border-radius: 999px;
  font-size: 0.7rem; font-weight: 600;
}
.dark .avail-badge { color: #4ade80; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  html { font-size: 14px; }
  .section { padding: 3.5rem 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-toggle { display: flex !important; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(1.5rem, 7vw, 2.5rem); white-space: normal; }
  .hero h1 .hero-line-1, .hero h1 .hero-line-2 { white-space: normal; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── ✝️ Word of God Preview Section ───────────────────────────────────── */
.scripture-preview-section { background: var(--bg); }
.scripture-preview-card {
  background: #0a0a12;
  border: 1px solid rgba(255,196,81,0.18);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.scripture-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.scripture-preview-left {
  padding: 3rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.scripture-preview-right {
  padding: 2.5rem;
}
.scripture-pill {
  display: inline-flex; align-items: center; gap: .25rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #aaa;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .75rem; font-weight: 500;
  transition: border-color .2s, color .2s;
  cursor: default;
}
.scripture-pill:hover { border-color: rgba(255,196,81,.35); color: #ffc451; }
@media (max-width: 768px) {
  .scripture-preview-inner { grid-template-columns: 1fr; }
  .scripture-preview-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); padding: 2rem; }
  .scripture-preview-right { padding: 2rem; }
}

/* ── Floating Action Button ──────────────────────────────────────── */
.fab-container {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.625rem;
}
.fab-btn {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,196,81,0.45);
  transition: transform 0.3s cubic-bezier(.175,.885,.32,1.275), box-shadow 0.2s;
  flex-shrink: 0;
}
.fab-btn:hover { box-shadow: 0 6px 28px rgba(255,196,81,0.6); }
.fab-btn.open { transform: rotate(45deg); }
.fab-btn svg { pointer-events: none; }
.fab-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.fab-actions.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.fab-action {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--primary-border);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.775rem; font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.fab-action:hover { background: var(--primary); color: #000; border-color: var(--primary); }
.fab-action svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }
