@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

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

:root {
  --navy: #0f2a4a;
  --navy-dark: #0a1e35;
  --navy-mid: #1a3a5c;
  --blue: #4a90c4;
  --blue-light: #7ab8e0;
  --blue-pale: #e8f3fb;
  --off-white: #f4f6f9;
  --warm-white: #fafafa;
  --text: #1a1a2e;
  --text-muted: #5a6a7a;
  --border: rgba(0,0,0,0.08);
  --radius: 10px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--blue-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #3a7ab0 !important; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 88px 32px 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,196,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.hero-eyebrow {
  display: inline-block;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 5px 12px;
  border: 1px solid rgba(122,184,224,0.3);
  border-radius: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  max-width: 640px;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--blue-light); font-style: normal; }
.hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: #3a7ab0; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.8); transform: translateY(-1px); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ── SECTIONS ── */
.section { padding: 80px 32px; }
.section-alt { background: var(--off-white); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(15,42,74,0.08); transform: translateY(-2px); }
.service-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 20px;
}
.service-card h3 { font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── DIFFERENTIATOR ── */
.diff-section {
  background: var(--navy);
  padding: 80px 32px;
}
.diff-inner { max-width: 1100px; margin: 0 auto; }
.diff-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue-light); margin-bottom: 10px;
}
.diff-section h2 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: clamp(24px, 3vw, 34px);
  font-weight: 500; margin-bottom: 14px; max-width: 620px; line-height: 1.25;
}
.diff-sub {
  color: rgba(255,255,255,0.65); font-size: 16px;
  line-height: 1.75; max-width: 600px; margin-bottom: 48px; font-weight: 300;
}
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.diff-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: background 0.2s;
}
.diff-card:hover { background: rgba(255,255,255,0.09); }
.diff-card h3 { color: var(--blue-light); font-size: 15px; font-weight: 500; margin-bottom: 10px; }
.diff-card p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.65; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.about-photo {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 14px; text-align: center;
  padding: 20px;
}
.about-photo-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.about-photo-placeholder i { font-size: 48px; color: var(--blue-light); }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; font-weight: 300; }
.cred-list { list-style: none; margin-top: 8px; }
.cred-list li {
  font-size: 14px; color: var(--text-muted);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 12px; line-height: 1.5;
}
.cred-list li:last-child { border-bottom: none; }
.cred-list li i { color: var(--blue); margin-top: 2px; flex-shrink: 0; font-size: 16px; }
.credentials { margin-top: 20px; font-size: 13px; color: var(--text-muted); }
.credentials strong { color: var(--navy); font-weight: 500; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue);
  padding: 72px 32px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: clamp(24px, 3vw, 36px);
  font-weight: 500; margin-bottom: 14px;
}
.cta-band p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 32px; font-weight: 300; }
.btn-white {
  background: #fff; color: var(--navy);
  border: none; padding: 15px 32px;
  border-radius: 7px; font-size: 15px;
  font-weight: 500; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: transform 0.15s, box-shadow 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info h3 { font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: 16px; }
.contact-info p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 14px; color: var(--text-muted); }
.contact-detail i { color: var(--blue); font-size: 18px; }
.contact-detail a { color: var(--blue); text-decoration: none; }
.form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 7px; font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text); background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(74,144,196,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 14px; font-size: 15px; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 36px 32px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: 15px; text-decoration: none;
}
.footer-logo span { color: var(--blue-light); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 12px; width: 100%; margin-top: 8px; }

/* ── INDUSTRY LANDING PAGE SPECIFIC ── */
.industry-hero { background: var(--navy); padding: 88px 32px 96px; position: relative; overflow: hidden; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.breadcrumb a { color: var(--blue-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.pain-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 0; }
.pain-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  border-top: 3px solid var(--blue);
}
.pain-card h3 { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.pain-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.result-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 28px; border-left: 4px solid var(--blue);
}
.result-card .result-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 500; color: var(--navy); margin-bottom: 6px;
}
.result-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: #0f2a4a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  padding: 12px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); }
.mobile-menu a.nav-cta-mobile {
  margin: 12px 28px 0;
  background: var(--blue);
  color: #fff;
  border-radius: 7px;
  border: none;
  text-align: center;
  padding: 12px 20px;
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.07em; text-align: center; white-space: normal; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .services-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pain-points { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  #how-it-works .section-inner > div { grid-template-columns: 1fr !important; }
}
