:root {
  --navy: #0f172a;      /* Deep Slate/Navy */
  --navy-light: #1e293b;
  --cream: #f8fafc;     /* Very light gray/cream */
  --white: #ffffff;
  --amber: #d97706;     /* Practical warm accent */
  --amber-hover: #b45309;
  
  --text-dark: #334155;
  --text-main: #475569;
  --text-light: #94a3b8;
  --text-white: #f1f5f9;
  
  --border-light: #e2e8f0;
  --border-dark: #334155;
  
  --font-main: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-main); line-height: 1.6; background: var(--cream); overflow-x: hidden; }

/* Typography */
h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 1rem; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-light { color: var(--text-light); }

/* Layout & Backgrounds */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 6rem 0; }
.section-header { max-width: 700px; margin: 0 auto 4rem; }
.section-header p { font-size: 1.15rem; color: var(--text-main); }

.bg-navy { background-color: var(--navy); color: var(--text-light); }
.bg-cream { background-color: var(--cream); }
.bg-white { background-color: var(--white); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 1.75rem; border-radius: 6px; font-weight: 600; font-size: 1rem;
  text-decoration: none; cursor: pointer; transition: all 0.2s; border: none; font-family: var(--font-main);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.95rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); }
.btn-accent { background: var(--amber); color: var(--white); }
.btn-accent:hover { background: var(--amber-hover); }
.btn-outline-light { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* Navbar */
.navbar { background: var(--white); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 100; padding: 1rem 0; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; color: var(--navy); text-decoration: none; }
.logo svg { color: var(--amber); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.mobile-toggle { display: none; background: none; border: none; color: var(--navy); cursor: pointer; }

/* Hero */
.hero { padding: 8rem 0; }
.hero-content { max-width: 850px; margin: 0 auto; }
.hero p.lead { font-size: clamp(1.1rem, 2vw, 1.25rem); color: var(--text-light); margin: 1.5rem auto 2.5rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.trust-note { margin-top: 2rem; font-size: 0.9rem; color: var(--text-light); font-style: italic; opacity: 0.8; }

/* Split Cards (Which One Are You) */
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.persona-card { padding: 3rem; border-radius: 12px; display: flex; flex-direction: column; }
.card-light { background: var(--white); border: 1px solid var(--border-light); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); }
.card-dark { background: var(--navy-light); color: var(--text-white); border: 1px solid var(--border-dark); }
.card-dark h3 { color: var(--white); }
.persona-icon { margin-bottom: 1.5rem; color: var(--amber); }
.bullet-list { list-style: none; margin-top: 1rem; }
.bullet-list li { margin-bottom: 1rem; position: relative; padding-left: 1.75rem; font-size: 1.05rem; }
.bullet-list li::before { content: '→'; position: absolute; left: 0; color: var(--amber); font-weight: bold; }
.card-dark .bullet-list li { color: var(--text-light); }

/* Service Grid */
.grid-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem 2rem; }
.service-block { padding-left: 1.5rem; border-left: 3px solid var(--border-light); transition: border-color 0.2s; }
.service-block:hover { border-left-color: var(--amber); }

/* Map Process */
.process-map { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.map-step { background: var(--navy-light); padding: 2rem; border-radius: 8px; border: 1px solid var(--border-dark); }
.map-step h4 { color: var(--white); margin-bottom: 0.5rem; }
.step-num { width: 36px; height: 36px; background: var(--amber); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 1.5rem; }
.map-step p { color: var(--text-light); font-size: 0.95rem; }

/* Pricing Cards */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; align-items: start; }
.price-tier { background: var(--white); padding: 2.5rem 2rem; border-radius: 12px; border: 1px solid var(--border-light); position: relative; }
.price-tier.featured { border: 2px solid var(--navy); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--navy); color: var(--white); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; padding: 0.25rem 1rem; border-radius: 999px; }
.price-tier .desc { font-size: 0.95rem; margin-bottom: 1.5rem; min-height: 48px; }
.price { font-size: 1.5rem; font-weight: 700; color: var(--navy); padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-light); margin-bottom: 1.5rem; }
.check-list { list-style: none; }
.check-list li { margin-bottom: 0.875rem; padding-left: 1.5rem; position: relative; font-size: 0.95rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--amber); font-weight: bold; }

/* Founder Section */
.founder-block { max-width: 800px; margin: 0 auto; }
.quote-card { background: var(--navy-light); padding: 4rem; border-radius: 16px; position: relative; color: var(--text-white); }
.quote-card h2 { color: var(--white); margin-bottom: 2rem; }
.quote-card::before { content: '"'; position: absolute; top: 1rem; left: 2rem; font-size: 8rem; color: rgba(255,255,255,0.05); font-family: serif; line-height: 1; }
.founder-text { font-size: 1.15rem; margin-bottom: 1.5rem; line-height: 1.8; position: relative; z-index: 2; color: var(--text-light); }
.founder-text.strong { font-weight: 600; color: var(--white); }
.founder-sig { margin-top: 3rem; border-top: 1px solid var(--border-dark); padding-top: 1.5rem; }
.founder-sig span { color: var(--text-light); font-size: 0.9rem; }

/* FAQ */
.faq-accordion { max-width: 800px; margin: 0 auto; }
details { background: var(--white); border: 1px solid var(--border-light); border-radius: 8px; margin-bottom: 1rem; }
summary { padding: 1.5rem; font-weight: 600; font-size: 1.1rem; cursor: pointer; color: var(--navy); display: flex; justify-content: space-between; align-items: center; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.5rem; color: var(--amber); }
details[open] summary::after { content: '−'; }
details p { padding: 0 1.5rem 1.5rem; color: var(--text-main); }

/* Footer */
.footer { border-top: 1px solid var(--border-dark); padding: 4rem 0 2rem; }
.footer-layout { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { max-width: 350px; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; color: var(--white); margin-bottom: 1rem; }
.footer-logo svg { color: var(--amber); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-light); text-decoration: none; font-weight: 500; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 2rem; color: var(--text-light); font-size: 0.9rem; text-align: center; }

/* Modal */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(4px); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; padding: 1rem; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--white); padding: 2.5rem; border-radius: 12px; width: 100%; max-width: 450px; position: relative; transform: translateY(20px); transition: all 0.3s; }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text-light); }

/* Responsive */
@media (max-width: 992px) {
  .split-cards { grid-template-columns: 1fr; }
  .quote-card { padding: 3rem 2rem; }
}
@media (max-width: 768px) {
  .hero { padding: 5rem 0; }
  .hero h1 { font-size: 2.5rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); padding: 2rem; flex-direction: column; border-bottom: 1px solid var(--border-light); }
  .nav-links.active { display: flex; }
  .mobile-toggle { display: block; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .footer-layout { flex-direction: column; }
}
