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

:root {
  /* Logo colours */
  --navy:       #1a2f6e;
  --navy-dark:  #132054;
  --blue:       #1e90d6;
  --blue-light: #e8f4fd;
  --green:      #44b944;
  --green-dark: #339933;
  --green-light:#edf7ed;

  /* Neutrals */
  --bg:         #ffffff;
  --bg-alt:     #f5f8ff;
  --bg-card:    #ffffff;
  --border:     #dde4f0;
  --text:       #1e293b;
  --muted:      #64748b;
  --white:      #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── UTILITIES ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 2rem;
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

p { color: var(--muted); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: #1670b0;
  border-color: #1670b0;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn.full {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.875rem;
  text-align: center;
  border: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: .001rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 102px;
  width: auto;
  display: block;
}

.nav-btn {
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.nav-btn:hover { background: #1670b0; }

/* ── HERO ── */
.hero {
  padding: 9rem 2rem 5rem;
  background: linear-gradient(150deg, #dbeafe 0%, #e0f0fd 60%, #edf7ed 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1080px;
  margin: 0 auto;
}

/* full-width background */
.hero-wrap {
  background: linear-gradient(150deg, #dbeafe 0%, #e0f0fd 60%, #edf7ed 100%);
  border-bottom: 1px solid var(--border);
}

.hero {
  padding: 9rem 2rem 5rem;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: none;
  border: none;
}

section.hero-section {
  background: linear-gradient(150deg, #dbeafe 0%, #e0f0fd 60%, #edf7ed 100%);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 560px;
  flex-shrink: 0;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.hero-text {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 1.1rem 1.5rem;
  min-width: 200px;
  box-shadow: 0 2px 12px rgba(30, 144, 214, 0.1);
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── INTRO ── */
.intro {
  padding: 5rem 2rem;
  background: #f0f7fd;
  border-bottom: 1px solid #c9dff0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.intro-text p {
  font-size: 0.975rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── AUDIENCE ── */
.audience {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(30, 144, 214, 0.08);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.card h3 { color: var(--navy); }

.card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.card ul li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1.2rem;
  position: relative;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── PRODUCT ── */
.product {
  padding: 5rem 2rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-grid > div:first-child p {
  font-size: 0.975rem;
  margin-bottom: 1.25rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.check-list li {
  font-size: 0.925rem;
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.flow-box {
  background: #f0f7fd;
  border: 1px solid #c9dff0;
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  padding: 2rem;
}

.flow-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.flow { display: flex; flex-direction: column; }

.flow-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text);
}

.flow-line-v {
  width: 2px;
  height: 20px;
  background: var(--border);
  margin: 4px 0 4px 6px;
}

.flow-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.flow-dot.blue  { background: var(--blue); }
.flow-dot.green { background: var(--green); }
.flow-dot.red   { background: #e53e3e; }

/* ── RESULTS ── */
.results {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1565a8 100%);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.results .label { color: rgba(255,255,255,0.6); }

.results h2 {
  color: var(--white);
  margin-bottom: 2.5rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.result-item {
  border-left: 3px solid var(--blue);
  padding-left: 1.25rem;
}

.result-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.result-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

/* ── CONTACT ── */
.contact {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}

.contact-inner {
  max-width: 600px;
}

.contact .section-sub { margin-bottom: 0; }

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

label span {
  font-weight: 400;
  color: var(--muted);
}

input,
textarea,
select {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  color: var(--text);
  font-size: 0.925rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

input::placeholder,
textarea::placeholder { color: #b0bec5; }

input:focus,
textarea:focus,
select:focus { border-color: var(--blue); }

select { appearance: none; cursor: pointer; }

textarea { resize: vertical; min-height: 110px; }

.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 52px;
  width: auto;
  background: white;
  padding: 5px 10px;
  border-radius: 8px;
}

footer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero {
    flex-direction: column;
    padding: 8rem 1.5rem 4rem;
  }

  .hero-visual {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-card { min-width: 140px; flex: 1; }

  .intro-grid,
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .nav-inner { padding: 0.75rem 1.25rem; }
  .hero-btns { flex-direction: column; }
  .hero-visual { flex-direction: column; }
}
