﻿:root {
  --orange: #ed6b01;
  --orange-strong: #ff6000;
  --blue: #214c7f;
  --navy: #0b2148;
  --navy-deep: #06162f;
  --ink: #13243a;
  --muted: #607087;
  --line: #dce3ec;
  --paper: #f7f9fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 22, 47, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 227, 236, 0.78);
  backdrop-filter: blur(18px);
}
.brand img { width: 174px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 24px; font-weight: 700; font-size: 0.94rem; }
.site-nav a { color: var(--navy); }
.site-nav a:hover { color: var(--orange); }
.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--orange);
  border-radius: 6px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--navy); }

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 72px);
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 80% 20%, rgba(237, 107, 1, 0.32), transparent 30%), linear-gradient(135deg, var(--navy-deep), var(--navy) 58%, #123e68);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(11,33,72,.76), rgba(11,33,72,.86)), url("assets/pattern.png");
  background-size: cover, 520px;
  background-position: center;
  opacity: 0.32;
}
.hero-content, .hero-panel { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}
.hero-copy {
  max-width: 640px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(1.04rem, 2vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--orange); box-shadow: 0 16px 30px rgba(237, 107, 1, 0.28); }
.btn-secondary { color: var(--white); background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24); }
.hero-panel {
  align-self: center;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.hero-panel img { width: 230px; margin-bottom: 28px; }
.metric-row { display: grid; grid-template-columns: 72px 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.16); }
.metric-row strong { color: var(--orange-strong); font-size: 2rem; line-height: 1; }
.metric-row span { color: rgba(255,255,255,.82); font-weight: 600; }

.section { padding: clamp(70px, 9vw, 118px) clamp(20px, 5vw, 72px); }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading.compact { max-width: 620px; }
h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 4vw, 3.75rem); line-height: 1.04; letter-spacing: 0; }
h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.16rem; line-height: 1.2; }
p { margin: 0; }
.solution-grid, .pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.solution-card, .pillar-grid article, .faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 22, 47, 0.05);
}
.solution-card { min-height: 250px; padding: 28px; }
.icon-mark { display: inline-flex; margin-bottom: 36px; color: var(--orange); font-weight: 800; }
.solution-card p, .pillar-grid p, .text-side p, .audience-copy p, .faq p, .contact-copy p { color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
  padding: clamp(72px, 9vw, 118px) clamp(20px, 5vw, 72px);
  background: var(--paper);
}
.visual-side { display: grid; place-items: center; min-height: 420px; background: var(--navy); border-radius: 8px; overflow: hidden; }
.visual-side img { width: min(380px, 82%); filter: drop-shadow(0 18px 28px rgba(0,0,0,.22)); }
.text-side { max-width: 680px; }
.text-side p + p { margin-top: 16px; }
.text-link { display: inline-flex; margin-top: 24px; color: var(--orange); font-weight: 800; }

.pillars { background: var(--white); }
.pillar-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pillar-grid article { min-height: 230px; padding: 24px; border-top: 4px solid var(--orange); }

.process-band {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy);
}
.process-band h2 { color: var(--white); }
.process-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; counter-reset: step; }
.process-list li { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list strong { color: var(--orange-strong); }
.process-list span { color: rgba(255,255,255,.78); }

.audience-section { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 76px); align-items: start; background: #fbfcfe; }
.audience-list { display: grid; gap: 12px; }
.audience-list div { display: grid; grid-template-columns: 180px 1fr; gap: 18px; padding: 20px; border-left: 4px solid var(--orange); background: var(--white); box-shadow: 0 8px 22px rgba(6,22,47,.05); }
.audience-list strong { color: var(--navy); }
.audience-list span { color: var(--muted); }

.quote-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(70px, 9vw, 112px) clamp(20px, 5vw, 72px);
  background: linear-gradient(90deg, #fff 0%, #fff 48%, #fff5ec 48%, #fff5ec 100%);
}
.quote-section img { width: 100%; border-radius: 8px; box-shadow: var(--shadow); }
blockquote { margin: 0; }
blockquote p { max-width: 780px; color: var(--navy); font-size: clamp(2rem, 5vw, 4.6rem); font-weight: 800; line-height: 1; }
blockquote span { display: block; max-width: 580px; margin-top: 22px; color: var(--muted); font-size: 1.1rem; }

.faq { background: var(--paper); }
.faq-list { display: grid; gap: 12px; max-width: 900px; }
.faq details { padding: 20px 22px; }
.faq summary { cursor: pointer; color: var(--navy); font-weight: 800; }
.faq p { margin-top: 12px; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 520px);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(76px, 9vw, 118px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--navy-deep);
}
.contact-section h2 { color: var(--white); }
.contact-copy p { color: rgba(255,255,255,.76); margin-top: 18px; }
.contact-channels { display: grid; gap: 10px; margin-top: 28px; color: rgba(255,255,255,.86); font-weight: 700; }
.contact-form { display: grid; gap: 16px; padding: 28px; border-radius: 8px; background: var(--white); color: var(--navy); }
.contact-form label { display: grid; gap: 7px; color: var(--navy); font-weight: 800; font-size: .92rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfe;
  outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(237,107,1,.14); }
.contact-form .btn { width: 100%; }

.site-footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 42px 20px;
  text-align: center;
  color: rgba(255,255,255,.76);
  background: var(--navy);
}
.site-footer img { width: 190px; }
.site-footer p { color: var(--white); font-weight: 800; }
.site-footer span { max-width: 620px; }

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .hero, .split-section, .process-band, .audience-section, .quote-section, .contact-section { grid-template-columns: 1fr; }
  .hero { min-height: auto; align-items: start; padding-top: 74px; }
  .hero-panel { max-width: 460px; }
  .solution-grid, .pillar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visual-side { min-height: 340px; }
  .quote-section { background: #fff5ec; }
}

@media (max-width: 640px) {
  .site-header { min-height: 70px; padding: 12px 18px; }
  .brand img { width: 142px; }
  .site-nav { top: 70px; }
  .hero h1 { font-size: 3.2rem; }
  .hero-actions, .btn { width: 100%; }
  .solution-grid, .pillar-grid { grid-template-columns: 1fr; }
  .metric-row, .process-list li, .audience-list div { grid-template-columns: 1fr; }
  .contact-form { padding: 20px; }
  blockquote p { font-size: 2.25rem; }
}
