@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --red: #EF4444;
  --red-dark: #DC2626;
  --pink: #FECACA;
  --pink-soft: #FEE2E2;
  --charcoal: #18181B;
  --charcoal-2: #27272A;
  --cream: #FAF9F6;
  --grey: #71717A;
  --grey-light: #E4E4E7;
  --display: 'Bitter', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* TOPBAR */
.topbar { background: var(--charcoal); color: var(--cream); font-size: 13px; padding: 11px 0; border-bottom: 3px solid var(--red); }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-tagline { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.pulse-icon { width: 24px; height: 12px; }
.topbar-meta { display: flex; gap: 24px; font-weight: 500; color: var(--pink); }

/* NAV */
.nav { background: var(--cream); border-bottom: 1px solid var(--grey-light); padding: 18px 0; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 48px; height: 48px; background: var(--charcoal); display: grid; place-items: center; position: relative; }
.logo-mark::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, transparent 50%, var(--red) 50%); }
.logo-mark span { position: relative; z-index: 1; color: var(--cream); font-family: var(--display); font-size: 22px; font-weight: 700; }
.logo-text { font-family: var(--display); font-size: 22px; font-weight: 700; color: var(--charcoal); letter-spacing: -0.3px; text-transform: uppercase; }
.logo-text em { color: var(--red); font-style: normal; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: var(--charcoal); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links a:hover { color: var(--red); }
.nav-cta { background: var(--red); color: var(--cream) !important; padding: 12px 24px; font-size: 13px; }
.nav-cta:hover { background: var(--charcoal); }

/* HERO */
.hero { background: var(--cream); padding: 90px 0 110px; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; left: 0; right: 0; top: 60%; height: 4px;
  background: var(--red); opacity: 0.08; pointer-events: none; z-index: 0;
}
.ecg-line { position: absolute; left: 0; right: 0; top: 55%; height: 80px; pointer-events: none; opacity: 0.18; z-index: 0; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; background: var(--charcoal); color: var(--cream); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; padding: 8px 16px; font-weight: 700; }
.hero-eyebrow::before { content: ''; width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-family: var(--display); font-size: clamp(40px, 5.5vw, 66px); line-height: 1.05; font-weight: 700; margin-bottom: 24px; letter-spacing: -1.5px; color: var(--charcoal); }
.hero h1 em { color: var(--red); font-style: italic; font-weight: 600; }
.hero-lede { font-size: 19px; color: var(--charcoal-2); max-width: 560px; margin-bottom: 32px; line-height: 1.55; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 36px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; font-size: 14px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.25s; cursor: pointer; border: 2px solid; }
.btn-primary { background: var(--red); color: var(--cream); border-color: var(--red); }
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); }
.btn-secondary { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-secondary:hover { background: var(--charcoal); color: var(--cream); }
.hero-points { list-style: none; display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 24px; max-width: 540px; }
.hero-points li { color: var(--charcoal-2); font-size: 14.5px; padding-left: 24px; position: relative; font-weight: 500; }
.hero-points li::before { content: ''; position: absolute; left: 0; top: 8px; width: 14px; height: 2px; background: var(--red); }
.hero-card { background: var(--charcoal); color: var(--cream); padding: 38px 32px; position: relative; }
.hero-card::before { content: 'PULSE'; position: absolute; top: -12px; left: 24px; background: var(--red); color: var(--cream); font-size: 11px; font-weight: 700; letter-spacing: 3px; padding: 4px 10px; }
.hero-card .quote { font-family: var(--display); font-size: 20px; line-height: 1.5; margin-bottom: 22px; color: var(--cream); font-style: italic; }
.hero-card .attr { font-size: 11px; color: var(--pink); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.hero-card .attr strong { display: block; color: rgba(255,255,255,0.7); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 13px; margin-top: 4px; }

/* TRUST */
.trust { background: var(--charcoal); color: var(--cream); padding: 0; }
.trust-grid { max-width: 1200px; margin: 0 auto; padding: 50px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.trust-item { text-align: center; padding: 0 20px; border-right: 1px dashed rgba(254,202,202,0.2); }
.trust-item:last-child { border-right: none; }
.trust-item .num { font-family: var(--display); font-size: 38px; color: var(--red); font-weight: 700; margin-bottom: 6px; }
.trust-item .lbl { font-size: 12px; color: var(--pink); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* SECTION */
section { padding: 90px 0; }
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.eyebrow { display: inline-block; color: var(--red); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; padding: 6px 12px; border: 1px solid var(--red); }
.section-head h2 { font-family: var(--display); font-size: clamp(34px,4vw,48px); color: var(--charcoal); margin-bottom: 18px; line-height: 1.12; letter-spacing: -1px; }
.section-head h2 em { color: var(--red); font-style: italic; font-weight: 600; }
.section-head p { color: var(--grey); font-size: 17px; }

/* SECTORS GRID */
.sectors-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sector-card { background: var(--cream); padding: 32px 28px; border: 2px solid var(--charcoal); position: relative; transition: all 0.2s; }
.sector-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: var(--red); transform: scaleY(0); transform-origin: bottom; transition: transform 0.25s; }
.sector-card:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--charcoal); }
.sector-card:hover::before { transform: scaleY(1); }
.sector-card .num-tag { display: inline-block; background: var(--charcoal); color: var(--red); font-family: var(--display); font-size: 14px; font-weight: 700; padding: 4px 10px; margin-bottom: 16px; letter-spacing: 1px; }
.sector-card h3 { font-family: var(--display); font-size: 22px; color: var(--charcoal); margin-bottom: 10px; line-height: 1.2; font-weight: 700; }
.sector-card p { color: var(--grey); font-size: 14.5px; }

/* WHY/PILLARS */
.why-bg { background: var(--charcoal); color: var(--cream); position: relative; overflow: hidden; }
.why-bg::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--red); opacity: 0.2; }
.why-bg .section-head h2 { color: var(--cream); }
.why-bg .section-head h2 em { color: var(--red); }
.why-bg .section-head p { color: var(--pink); }
.why-bg .eyebrow { color: var(--pink); border-color: var(--pink); }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.why-card { padding: 36px 28px; background: var(--charcoal-2); border-left: 4px solid var(--red); }
.icon-pill { width: 52px; height: 52px; background: var(--red); display: grid; place-items: center; margin-bottom: 22px; color: var(--cream); }
.icon-pill svg { width: 24px; height: 24px; }
.why-card h3 { font-family: var(--display); font-size: 22px; color: var(--cream); margin-bottom: 12px; font-weight: 700; }
.why-card p { color: var(--pink); font-size: 14.5px; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.process-step { background: var(--charcoal-2); padding: 36px 28px; border-top: 4px solid var(--red); }
.step-num { font-family: var(--display); font-size: 44px; color: var(--red); display: block; margin-bottom: 14px; line-height: 1; font-weight: 700; }
.process-step h3 { font-family: var(--display); font-size: 19px; margin-bottom: 10px; color: var(--cream); font-weight: 700; }
.process-step p { color: var(--pink); font-size: 14px; }

/* PROSE */
.prose-section { background: var(--cream); }
.prose-wrap { max-width: 760px; margin: 0 auto; }
.prose-wrap h2 { font-family: var(--display); font-size: 36px; color: var(--charcoal); margin-bottom: 24px; line-height: 1.15; font-weight: 700; }
.prose-wrap h2 em { color: var(--red); font-style: italic; font-weight: 600; }
.prose-wrap h3 { font-family: var(--display); font-size: 23px; color: var(--red); margin: 32px 0 12px; font-weight: 700; }
.prose-wrap p { color: var(--charcoal-2); margin-bottom: 18px; font-size: 16.5px; }
.prose-wrap ul { padding-left: 22px; margin-bottom: 20px; }
.prose-wrap li { color: var(--charcoal-2); margin-bottom: 8px; }

/* CTA */
.cta-section { background: var(--red); color: var(--cream); text-align: center; }
.cta-section h2 { font-family: var(--display); font-size: clamp(34px,4vw,48px); color: var(--cream); margin-bottom: 18px; font-weight: 700; }
.cta-section h2 em { color: var(--charcoal); font-style: italic; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 600px; margin: 0 auto 32px; }
.cta-section .btn-primary { background: var(--charcoal); border-color: var(--charcoal); }
.cta-section .btn-primary:hover { background: var(--cream); color: var(--charcoal); border-color: var(--cream); }

/* FOOTER */
.footer { background: var(--charcoal); color: var(--pink); padding: 60px 0 30px; border-top: 4px solid var(--red); }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand { font-family: var(--display); color: var(--cream); font-size: 24px; margin-bottom: 12px; font-weight: 700; text-transform: uppercase; }
.footer-brand em { color: var(--red); font-style: normal; }
.footer p { font-size: 14px; line-height: 1.7; }
.footer h4 { color: var(--red); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; font-weight: 700; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer a { color: var(--pink); font-size: 14px; }
.footer a:hover { color: var(--cream); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 24px 0; border-top: 1px solid rgba(254,202,202,0.15); display: flex; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info h3 { font-family: var(--display); font-size: 28px; color: var(--charcoal); margin-bottom: 16px; font-weight: 700; }
.contact-info p { color: var(--grey); margin-bottom: 24px; }
.contact-info .info-row { padding: 18px 0; border-top: 2px solid var(--charcoal); }
.contact-info .info-row:last-child { border-bottom: 2px solid var(--charcoal); }
.contact-info .info-row strong { display: block; color: var(--red); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }
.contact-info .info-row span { color: var(--charcoal-2); font-size: 15px; }
.form-wrap { background: var(--cream); border: 2px solid var(--charcoal); padding: 32px; }
.form-wrap iframe { border: none; width: 100%; min-height: 580px; }

@media (max-width: 900px) {
  .hero-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); gap: 30px 0; }
  .sectors-grid, .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  .topbar-meta { display: none; }
}
