:root {
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --bg-lighter: #f1f5f9;
  --text: #0f172a;
  --text-light: #475569;
  --muted: #64748b;
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #16a34a;
  --success-light: #dcfce7;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --error: #ef4444;
  --error-light: #fee2e2;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   HEADER
============================================ */

.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  height: 88px;              /* was very tall */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.logo img {
  height: 56px;              /* try 52–64 */
  width: auto;
  display: block;
  transition: all 0.2s ease;
}

.logo img:hover {
}

@media (max-width: 640px) {
  .header-inner {
    height: 76px;
  }

  .logo img {
    height: 48px;
  }
}

@media (min-width: 900px) {
  .header-inner {
    height: 96px;
  }

  .logo img {
    height: 64px;
  }

  .footer-logo {
    height: 72px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;       /* prevents "How it works" wrapping */
}

.nav a {
  padding: 8px 16px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--text);
  background: var(--bg-light);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 600;
  white-space: nowrap;       /* prevents the wrap */
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: var(--text) !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-phone:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 12px 16px;        /* reduce height */
  border-radius: 14px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
}

/* ============================================
   HERO SECTION
============================================ */

.hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #f8fafc 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  padding: 24px 0;
  overflow: visible;
}

.stat {
  flex: 0 0 auto;
  overflow: visible;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Space Mono', monospace;
  line-height: 1.4;
  margin-bottom: 6px;
  overflow: visible;
  padding: 0 4px 4px 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

/* ============================================
   BUTTONS
============================================ */

.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.2s ease;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary.large {
  padding: 18px 32px;
  font-size: 17px;
}

.btn-secondary {
  background: #fff;
  border: 2px solid var(--border);
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.btn-secondary.large {
  padding: 18px 32px;
  font-size: 17px;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.full {
  width: 100%;
  display: block;
}

/* ============================================
   HERO CARD
============================================ */

.hero-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-light);
}

.card-header h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.process-steps {
  list-style: none;
  counter-reset: step-counter;
}

.process-steps li {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.process-steps li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  flex: 0 0 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-family: 'Space Mono', monospace;
}

.process-steps strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text);
}

.process-steps p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.card-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--border-light);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

/* ============================================
   FOUNDER SECTION
============================================ */

.founder-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.founder-card {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.founder-badge {
  display: inline-block;
  background: var(--success-light);
  color: var(--success);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.founder-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text);
}

.founder-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
}

.founder-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--border-light);
}

.signature-name {
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
}

.signature-location {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

/* ============================================
   SECTIONS
============================================ */

.section {
  padding: 100px 0;
}

.section.light {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 18px;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   THREE COLUMN LAYOUT
============================================ */

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.outcome-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.outcome-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}

.outcome-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   TRACKER
============================================ */

.tracker-wrapper {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tracker {
  overflow-x: auto;
  margin-bottom: 20px;
}

.tracker table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.tracker thead {
  background: var(--bg-lighter);
}

.tracker th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border);
}

.tracker td {
  padding: 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-light);
}

.tracker tbody tr:hover {
  background: var(--bg-light);
}

.time-badge {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  background: var(--bg-lighter);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  color: var(--text);
}

.status-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pill.booked {
  background: var(--success-light);
  color: var(--success);
}

.status-pill.unqualified {
  background: var(--warning-light);
  color: var(--warning);
}

.status-pill.followup {
  background: var(--primary-light);
  color: var(--primary);
}

.tracker-note {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: 12px;
  font-size: 14px;
  color: var(--muted);
}

.tracker-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   PRICING
============================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  overflow: visible;
}

.pricing-card {
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  background: #fff;
  position: relative;
  transition: all 0.3s ease;
  overflow: visible;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: none;
}

.pricing-card.featured:hover {
  transform: translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.package-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.price-wrapper {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: visible;
}

.price-prefix {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}

.price {
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.2;
  display: block;
  padding: 6px 0 10px;
  overflow: visible;
}

.price-period {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}

.package-description {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  min-height: 48px;
}

.feature-list {
  list-style: none;
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text-light);
}

.feature-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.package-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

.guarantee-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid var(--primary);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: start;
}

.guarantee-icon {
  flex: 0 0 64px;
  height: 64px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-content h4 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.guarantee-content p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   FAQ
============================================ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 600;
}

.faq-item p {
  font-size: 15px;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
============================================ */

.cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  padding: 100px 0;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.cta-section .btn-primary:hover {
  background: var(--bg-light);
  border-color: var(--bg-light);
}

.cta-section .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

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

.cta-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
}

/* ============================================
   FOOTER
============================================ */

.footer {
  border-top: 2px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg-light);
}

.footer-content {
  max-width: 1200px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--text);
}

.footer-column a,
.footer-column span {
  display: block;
  text-decoration: none;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 1024px) {
  h1 {
    font-size: 48px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-card {
    position: static;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .three-col {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .hero {
    padding: 60px 0 80px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .nav {
    display: none;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta a {
    width: 100%;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- Mobile nav (added) --- */
.mobile-menu-btn{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  padding:10px 14px;
  border-radius:10px;
  font-weight:600;
}

.mobile-nav{
  display:none;
  flex-direction:column;
  gap:6px;
  padding:12px 0 18px;
}

.mobile-nav a{
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  color:var(--text-light);
  font-weight:600;
}

.mobile-nav a:hover{
  background:var(--bg-light);
  color:var(--text);
}

@media (max-width:768px){
  .mobile-menu-btn{ display:inline-flex; }
  .nav{ display:none; }
}
