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

:root {
  --navy: #0d1f35;
  --navy-mid: #0f2e4a;
  --blue: #0f6fba;
  --blue-light: #2589d8;
  --gold: #f29b2e;
  --gold-light: #ffb84d;
  --cream: #fdf8f2;
  --gray-light: #f4f7fb;
  --gray-mid: #e8eef5;
  --text: #1a2b3c;
  --text-muted: #5a7085;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 32px rgba(13, 31, 53, 0.10);
  --shadow-hover: 0 20px 48px rgba(15, 111, 186, 0.18);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--gray-light);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

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

.container {
  width: 92%;
  max-width: 1180px;
  margin: auto;
}

/* ── HEADER ── */
header {
  background: var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo img { height: 84px; width: auto; border-radius: 6px; }

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.1;
}

.logo-sub {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
  text-shadow: 0 0 12px rgba(242,155,46,0.4);
}

nav { display: flex; flex-wrap: wrap; gap: 6px; }

nav a {
  color: rgba(255,255,255,0.78);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
  letter-spacing: 0.2px;
}

nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0d1f35 0%, #0a3a6b 50%, #0f6fba 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-content { position: relative; }

.eyebrow {
  display: inline-block;
  background: rgba(242,155,46,0.18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(242,155,46,0.25);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  line-height: 1.12;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-text {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── BUTTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(242,155,46,0.35);
}

.button:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,155,46,0.4);
}

.button-secondary {
  background: rgba(255,255,255,0.12);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,0.25);
}

.button-secondary:hover {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
}

.button-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: none;
}

.button-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── SECTIONS ── */
section { padding: 80px 0; }

section.alt-bg { background: var(--white); }

.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.7;
}

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ── CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.cards-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  transition: all 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #b8d6f0;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f4ff, #d0e8f8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-icon svg { width: 26px; height: 26px; }

.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── ICON GRID (small) ── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.icon-item {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--gray-mid);
  transition: all 0.2s;
}

.icon-item:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.icon-item svg {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  color: var(--blue);
}

.icon-item span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy-mid));
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(15,111,186,0.3);
}

.step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-mid);
  transition: all 0.25s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #f0f8ff 0%, var(--white) 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.price-tag {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin: 16px 0 8px;
  line-height: 1;
}

.price-tag span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.feature-list li {
  font-size: 14.5px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4caf8a, #2d9a6e);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%234caf8a'/%3E%3Cpath d='M5 9l3 3 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── STAT STRIP ── */
.stat-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 60px 0;
  color: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
}

/* ── RISK SCORE ── */
.risk-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.risk-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.risk-result-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
  border: 2px solid var(--gray-mid);
  transition: all 0.3s;
}

.risk-result-box.risk-low { border-color: #4caf8a; background: linear-gradient(160deg,#fff,#f4fff9); }
.risk-result-box.risk-medium { border-color: #f0b44c; background: linear-gradient(160deg,#fff,#fffbf1); }
.risk-result-box.risk-high { border-color: #e05555; background: linear-gradient(160deg,#fff,#fff5f5); }

.question-block {
  padding: 22px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
}

.question-block h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

.question-block label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  padding: 7px 0;
  cursor: pointer;
}

.question-block input[type="radio"] { transform: scale(1.2); accent-color: var(--blue); }

.risk-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.risk-score-value {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.risk-level {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}

/* ── INFOGRAPHIC BLOCKS ── */
.infographic-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.infographic-row.reverse { direction: rtl; }
.infographic-row.reverse > * { direction: ltr; }

.info-visual {
  display: flex;
  justify-content: center;
}

/* ── CALLOUT BOX ── */
.callout {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
}

.callout h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 14px;
}

.callout p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ── SERVICE CARDS ── */
.service-link { display: block; }
.service-link .card { height: 100%; }

.card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.card .text-link:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0f5a9e 100%);
  padding: 70px 0 60px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .eyebrow { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.15); }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  justify-content: center;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.35); }

/* ── FOOTER ── */
footer {
  background: #07121f;
  color: rgba(255,255,255,0.55);
  padding: 40px 0;
}

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

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
}

.footer-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col.reverse > *:first-child { order: 2; }
.two-col.reverse > *:last-child { order: 1; }

/* ── BADGE PILLS ── */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badge {
  background: rgba(15,111,186,0.08);
  color: var(--blue);
  border: 1px solid rgba(15,111,186,0.18);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner, .two-col, .infographic-row, .risk-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 { font-size: 38px; }
  .section-title { font-size: 30px; }
  .page-hero h1 { font-size: 34px; }

  .hero-visual { display: none; }

  .process-steps::before { display: none; }
  .process-steps { gap: 24px; }

  .nav { flex-direction: column; align-items: flex-start; }
  nav { gap: 6px; }

  .two-col.reverse > *:first-child { order: unset; }
  .two-col.reverse > *:last-child { order: unset; }

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

@media (max-width: 600px) {
  .cards { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .callout { padding: 36px 24px; }
  .stat-num { font-size: 38px; }
}
