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

:root {
  --navy:   #0f2557;
  --teal:   #1a9e75;
  --teal-dark: #138a63;
  --white:  #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #f1f3f7;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --text:   #111827;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(15,37,87,0.10);
  --shadow-lg: 0 8px 40px rgba(15,37,87,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,158,117,0.35); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,255,0.3); }

.btn-nav {
  background: var(--teal);
  color: var(--white);
  padding: 9px 22px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--teal-dark); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; }

/* ─── SECTION HELPERS ───────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(26,158,117,0.1);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  margin-bottom: 52px;
}

.accent { color: var(--teal); }

/* ─── NAVBAR ────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,37,87,0.08);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img { height: 72px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--teal); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-100);
}
.mobile-menu a {
  padding: 10px 0;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; text-align: center; }
.mobile-menu.open { display: flex; }

/* ─── HERO ──────────────────────────────────────────── */
#hero {
  position: relative;
  padding: 140px 0 100px;
  background: var(--white);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -60px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,158,117,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: rgba(15,37,87,0.07);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(15,37,87,0.12);
}

#hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

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

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-300);
}

/* ─── PAIN ──────────────────────────────────────────── */
#pain {
  padding: 80px 0;
  background: var(--navy);
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

#pain h2 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
}

.pain-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.5;
}

.pain-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(255,255,255,0.1);
  color: #ff6b6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  margin-top: 1px;
}

.pain-callout {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.callout-quote {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 16px;
}

.callout-attr {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ─── SERVICES ──────────────────────────────────────── */
#services {
  padding: 100px 0;
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid rgba(15,37,87,0.06);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-card--featured h3,
.service-card--featured p { color: rgba(255,255,255,0.9); }
.service-card--featured .service-features li { color: rgba(255,255,255,0.7); }
.service-card--featured .service-features li::before { color: var(--teal); }

.featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.service-icon { width: 48px; height: 48px; margin-bottom: 20px; }

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  font-size: 0.88rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 900;
  font-size: 0.8rem;
}

/* ─── HOW IT WORKS ──────────────────────────────────── */
#how-it-works {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  margin-top: 0;
}

.step {
  flex: 1;
  max-width: 280px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  border: 1px solid rgba(15,37,87,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}

.step-body h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-body p { font-size: 0.92rem; color: var(--gray-500); line-height: 1.65; }

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(26,158,117,0.2) 100%);
  flex-shrink: 0;
}

/* ─── WHY US ────────────────────────────────────────── */
#why-us {
  padding: 100px 0;
  background: var(--off-white);
}

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

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(15,37,87,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.why-icon { font-size: 1.8rem; margin-bottom: 14px; }

.why-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

/* ─── CTA BANNER ────────────────────────────────────── */
#cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f6b 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-text p { color: rgba(255,255,255,0.65); font-size: 1rem; }

/* ─── CALENDLY ──────────────────────────────────────── */
.calendly-inline-wrapper {
  max-width: 900px;
  margin: 0 auto 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15,37,87,0.08);
  box-shadow: var(--shadow);
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 680px;
  margin: 48px auto 36px;
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-300);
}

/* ─── CONTACT ───────────────────────────────────────── */
#contact {
  padding: 100px 0;
  background: var(--white);
}

#contact .section-title,
#contact .section-sub { text-align: center; }
#contact .section-label { display: block; text-align: center; }

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,158,117,0.12);
}

.form-group textarea { resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-note { text-align: center; font-size: 0.82rem; color: var(--gray-500); margin-top: -8px; }

.form-error {
  display: none;
  text-align: center;
  font-size: 0.85rem;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: -8px;
}

.contact-success {
  display: none;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 32px;
}
.contact-success.show { display: block; }
.success-icon {
  width: 60px; height: 60px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 20px;
}
.contact-success h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.contact-success p { color: var(--gray-500); }

/* ─── FOOTER ────────────────────────────────────────── */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-logo { height: 72px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h5, .footer-contact h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-links a, .footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--teal); }
.footer-contact p { font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
  .step-connector { width: 2px; height: 32px; margin: 0 auto; background: linear-gradient(180deg, var(--teal), rgba(26,158,117,0.2)); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}
