@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600&family=Libre+Franklin:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700&display=swap');
/* ===========================
   RESET
=========================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* ===========================
   COLOR VARIABLES
=========================== */
:root {
  --navy: #0D1F4E;
  --coral: #E8614A;
  --coral-hover: #d44f38;
  --green: #2F9E5C;
  --body-text: #4a5568;
  --ink: #1a1a1a;
  --bg-light: #f7f8fa;
  --white: #ffffff;
}
/* ===========================
   TYPOGRAPHY
=========================== */
body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--navy);
}
p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 1.5rem;
}
.hero-title { font-size: 52px; font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; }
.hero-break { display: none; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }
@media (max-width: 768px) {
  .hero-title { font-size: 40px; line-height: 1.15; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.3rem; }
}
@media (min-width: 769px) {
  .hero-break { display: inline; }
}
.coral-bold { color: var(--coral); font-weight: 800; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 768px) { .container { padding: 0 1.5rem; } }



/* ===========================
   HEADER
=========================== */
.site-header {
  background-color: var(--white);
  min-height: 76px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 3.8px;
  text-decoration: none;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--navy);
}
@media (max-width: 768px) {
  .site-header { min-height: 64px; }
  .site-header-inner { height: 64px; padding-left: 1rem; padding-right: 1rem; }
  .logo-mark { width: 1.4rem; height: 1.4rem; }
  .logo-main { font-size: 1.5rem; }
}
/* Desktop only — header content spans the true 1200px edges,
   flush with the hero panel below it. Mobile keeps its own padding above. */
@media (min-width: 769px) {
  .site-header-inner { padding-left: 0; padding-right: 0; }
  .nav-dropdown:hover .nav-dropdown-label { color: var(--coral); }
}
.menu-toggle { background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; display: none; }
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span { width: 30px; height: 2px; background-color: var(--navy); }
.main-navigation > ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.main-navigation a {
  font-size: 0.95rem;
  color: var(--navy);
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-navigation a:hover { color: var(--coral); }
.main-navigation a.nav-contact-btn {
  background: var(--ink);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .main-navigation {
    position: fixed; top: 0; right: -100%;
    width: 300px; height: 100vh;
    background-color: var(--navy);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
  }
  .main-navigation.active { right: 0; }
  .main-navigation ul { flex-direction: column; align-items: flex-end; }
  .main-navigation a {
    color: var(--white);
    font-size: 1.3rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
  }
}

/* ===========================
   NAV DROPDOWN — Services
=========================== */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-label {
  font-size: 0.95rem;
  color: var(--navy);
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-dropdown-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--navy);
  margin-left: 0.35rem;
}
.nav-dropdown-menu {
  display: block;
  flex-direction: unset;
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(13,31,78,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1100;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--bg-light); color: var(--coral); }

@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-dropdown { flex-direction: column; align-items: flex-end; width: 100%; }
  .nav-dropdown-label {
    color: var(--white);
    font-size: 1.3rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
  }
  .nav-dropdown-toggle { display: inline-flex; align-items: center; justify-content: center; color: var(--white); }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
    text-align: right;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown.is-open .nav-dropdown-menu {
    max-height: 300px;
    padding: 0.5rem 0 0.5rem 0;
  }
  .nav-dropdown-menu a {
    color: rgba(255,255,255,0.85) !important;
    font-size: 1.1rem !important;
    font-family: 'Libre Franklin', sans-serif !important;
    padding: 0.5rem 0;
  }
}

/* ===========================
   BUTTONS
=========================== */
.btn-primary, .btn-pricing, .btn-about {
  background-color: var(--coral);
  color: var(--white) !important;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Libre Franklin', sans-serif;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-primary:hover, .btn-pricing:hover, .btn-about:hover {
  background-color: var(--coral-hover);
  transform: translateY(-2px);
}
.btn-large { padding: 1.1rem 2.5rem !important; font-size: 1rem !important; }

.btn-outline-coral {
  background: transparent;
  border: 1.5px solid var(--coral);
  color: var(--white) !important;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Libre Franklin', sans-serif;
  letter-spacing: 0.03em;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-outline-coral:hover {
  background: var(--coral);
  color: var(--white) !important;
}

/* ===========================
   HERO
=========================== */
.hero-section {
  background: var(--navy);
  color: var(--white);
  margin-top: 76px;
  padding-bottom: clamp(3rem, 6vw, 3rem);
  position: relative;
  overflow: hidden;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 31, 78, 0) 42%, var(--navy) 75%);
  pointer-events: none;
}
.hero-inset { width: 100%; }

.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.hero-eyebrow {
  font-family: 'Libre Franklin', -apple-system, sans-serif;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--coral); margin-bottom: 1.5rem;
}
.hero-title { color: var(--white); margin-bottom: 2rem; }
.hero-subtext { font-size: 1.3rem; line-height: 1.7; color: rgba(255,255,255,0.75); max-width: 600px; margin-bottom: 0.5rem; }
.hero-guarantee { color: var(--coral) !important; font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em; margin-top: 1.25rem; margin-bottom: 1.5rem; }
.hero-guarantee a { color: inherit; text-decoration: none; }
.hero-guarantee a:hover { text-decoration: underline; }
.hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; margin-top: 0rem; }
.hero-intro { margin: 2rem 0 0; }
.hero-highlight-link {
  color: var(--coral);
  font-style: italic;
  text-decoration: none;
  transition: color 0.3s ease;
}
.hero-highlight-link:hover {
  color: var(--coral-hover);
}
@media (min-width: 769px) {
  .hero-section {
    background: var(--white);
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-inset {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--navy);
    overflow: hidden;
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }
.hero-image-wrap { height: 560px; }
.hero-image {
  height: 90%;
  object-fit: cover;
  object-position: center 100%; /* desktop — try 100% to move image up */
}

  .hero-section .container { margin-top: -10.7rem; }

  .hero-cta { margin-top: 2.5rem; }

  .hero-cta { flex-direction: row; align-items: center; }
}

/* ===========================
   HERO — image fade-in
=========================== */
@keyframes heroImageFadeIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-image {
  opacity: 0;
  animation: heroImageFadeIn 1.1s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

/* ===========================
   HERO — entrance animation
=========================== */
@keyframes heroFadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow,
.hero-title,
.hero-subtext,
.hero-guarantee,
.hero-cta {
  opacity: 0;
  animation: heroFadeSlideUp 0.7s ease-out forwards;
}

.hero-eyebrow  { animation-delay: 0.1s; }
.hero-title    { animation-delay: 0.25s; }
.hero-subtext  { animation-delay: 0.4s; }
.hero-guarantee{ animation-delay: 0.5s; }
.hero-cta      { animation-delay: 0.55s; }

/* Respect users who've asked for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-title,
  .hero-subtext,
  .hero-guarantee,
  .hero-cta {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-section { margin-top: 64px; }

  .hero-image-wrap { height: 380px; }
.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center 100%; /* mobile — try 100% to move image up */
}

  .hero-section .container { margin-top: -5.3rem; }

  .hero-cta { margin-top: 2.5rem; }

  .hero-subtext { font-size: 1.1rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
}
/* ===========================
   SERVICES SECTION
=========================== */
.svc-section{
  background:var(--white);
  padding-top: clamp(2rem, 5vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}
.hero-section + .svc-section{
  padding-top: clamp(3rem, 4vw, 5rem);
}
@media (max-width: 768px) {
  .hero-section + .svc-section{
    padding-top: 5rem;
  }
}
.svc-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 2rem;
}

.svc-eyebrow{
  font-family:'Libre Franklin', -apple-system, sans-serif;
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--coral);
  margin-bottom:1rem;
}
.svc-title{
  font-family:'Libre Franklin', -apple-system, sans-serif;
  font-weight:700;
  font-size:2.2rem;
  line-height:1.2;
  color:var(--navy);
  
  margin:0 0 1.5rem;
}
.svc-intro{
 
  margin-bottom:1rem;
}
.svc-intro p{
  font-size:1.1rem;
  line-height:1.8;
  color:var(--body-text);
  margin:0 0 1.5rem;
}

/* ---- Stage — eyebrow-led, single left edge, no indent columns ---- */
.svc-stage{
  margin-top:4rem;
  padding-top:2.5rem;
  
}
.svc-intro + .svc-stage{
  margin-top:1.5rem;
}

.svc-stage-head{
  margin-bottom: 0rem;
}
.svc-stage-no{
  display:block;
  font-family:'Source Serif 4', serif;
  font-weight:600;
  font-size:3rem;
  line-height:1;
  color:var(--coral);
  margin-bottom:0.5rem;
}
.svc-stage-name{
  font-family:'Libre Franklin', -apple-system, sans-serif;
  font-weight:700;
  font-size:1.5rem;
  color:var(--navy);
  margin:0 0 0.4rem;
}
.svc-stage-dek{
  font-size:1rem;
  color:var(--body-text);
  margin:0;
  
}

.svc-stage{
  margin-top:4rem;
  padding-top:2.5rem;
  
}
.svc-intro + .svc-stage{
  margin-top:1.5rem;
}
.svc-stage--tight{
  padding-top: 0rem; /* was 2.5rem — only for stages 02 and 03 */
}

.svc-stage-head{
  margin-bottom: 0rem;
}

@media (max-width:768px){
  .svc-stage-no{ font-size:2.4rem; }
}

/* ---- Service list — flush to the same left edge as everything above ---- */
.svc-list{
  margin-left:0;
}

.svc-item{
  
  padding:1.35rem 0;
}

.svc-item-name{
  font-family:'Libre Franklin', -apple-system, sans-serif;
  font-weight:600;
  font-size:1.15rem;
  color:var(--navy);
  margin:0 0 0.4rem;
}

.svc-item-preview{
  font-size:0.95rem;
  color:var(--body-text);
  margin:0 0 1rem;
  max-width:640px;
}

/* Expanded body — light grey panel, always visible now */
.svc-body{
  background:var(--bg-light);
  border-radius:10px;
  padding:1.25rem 1.5rem 1.5rem;
}
.svc-body p.svc-dek{
  font-size:0.98rem;
  color:var(--body-text);
  margin:0 0 1rem;
  max-width:560px;
}
.svc-inclusions{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:2rem;
  row-gap:0.75rem;
}
.svc-inclusions li{
  position:relative;
  padding-left:1.1rem;
  font-size:0.98rem;
  line-height:1.6;
  color:var(--ink);
}
.svc-inclusions li::before{
  content:'';
  position:absolute;
  left:0;
  top:0.6em;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--coral);
}
.svc-note{
  grid-column:1 / -1;
  font-style:italic;
  color:var(--body-text) !important;
}
.svc-note::before{ display:none; }

@media (max-width:768px){
  .svc-container{ padding:0 1.5rem; }
  .svc-title{ font-size:1.8rem; }
  .svc-inclusions{ grid-template-columns:1fr; }
}
/* ===========================
   FIND YOUR PATH
=========================== */
.path-section { background: var(--bg-light); padding: 5rem 0; scroll-margin-top: 110px; }
.path-tag {
  font-family: 'Libre Franklin', -apple-system, sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 1rem;
}
.path-intro { margin-bottom: 3rem; }
 
.path-widget {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 780px;
  box-shadow: 0 20px 50px rgba(13, 31, 78, 0.08);
}
 
.path-progress {
  width: 100%;
  height: 4px;
  background: var(--bg-light);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.path-progress-bar {
  height: 100%;
  width: 33.33%;
  background: var(--coral);
  border-radius: 999px;
  transition: width 0.3s ease;
}
 
.path-step { display: none; }
.path-step.is-active { display: block; animation: pathFadeIn 0.3s ease; }
@keyframes pathFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
 
.path-step-label {
  font-family: 'Libre Franklin', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
 
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.path-grid-3 { grid-template-columns: repeat(3, 1fr); }
 
.path-card {
  background: var(--bg-light);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  cursor: pointer;
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.path-card:hover { transform: translateY(-3px); border-color: rgba(232, 97, 74, 0.35); }
.path-card.is-selected {
  border-color: var(--coral);
  background: #fff5f3;
}
 
.path-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.path-card-icon svg { width: 22px; height: 22px; }
 
.path-result { text-align: left; padding: 1rem 0; }
.path-result-eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 0.75rem;
}
.path-result-title { font-size: 1.7rem; margin-bottom: 1rem; }
.path-result-text { margin-bottom: 2rem; max-width: 560px; }
 
.path-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eef0f4;
}
.path-nav-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #dfe3ea;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.path-nav-arrow:hover:not(:disabled) { border-color: var(--coral); color: var(--coral); }
.path-nav-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.path-nav-count {
  font-size: 0.85rem;
  color: var(--body-text);
  font-weight: 600;
  min-width: 50px;
  text-align: center;
}
 
@media (max-width: 768px) {
  .path-section { padding: 5rem 0; }
  .path-widget { padding: 1.75rem; border-radius: 16px; }
  .path-grid, .path-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .path-card { padding: 1.25rem 0.75rem; font-size: 0.85rem; }
}

/* ===========================
   RISK ENTRY ASSESSMENT
=========================== */
.risk-section { background: var(--white); padding: 5rem 0; scroll-margin-top: 110px; }

.risk-panel {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  grid-template-areas:
    "top"
    "bottom"
    "image"
    "checklist"
    "specs"
    "cta";
}

.risk-intro-top    { grid-area: top; }
.risk-image        { grid-area: image; }
.risk-intro-bottom { grid-area: bottom; }
.risk-checklist    { grid-area: checklist; }
.risk-specs        { grid-area: specs; }
.risk-cta          { grid-area: cta; }

.risk-eyebrow {
  font-family: 'Libre Franklin', -apple-system, sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 1rem;
}
.section-title{
  font-family:'Libre Franklin', -apple-system, sans-serif;
  font-weight:700;
  font-size:2.2rem;
  line-height:1.2;
  color:var(--navy);
  margin:0 0 1.5rem;
}
@media (max-width: 768px) { .section-title{ font-size: 1.8rem; } }
.risk-panel .section-title { margin-bottom: 0.5rem; }
.risk-dek {
  font-size: 1.15rem;
  color: var(--body-text);
  margin-bottom: 1rem;
}
.risk-price {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1rem;
  color: var(--body-text);
  margin-bottom: 1.25rem;
}
.risk-price-amount {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--coral);
  margin-right: 0.4rem;
}
.risk-desc { margin-bottom: 0; }
 
.risk-image-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 320px;
  background: var(--bg-light);
  border: 1.5px dashed #d5d9e2;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #b3b8c4;
  font-size: 0.85rem;
  font-family: 'Libre Franklin', sans-serif;
}
.risk-image-placeholder svg { width: 40px; height: 40px; }

.risk-image-photo {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

@media (max-width: 768px) {
  .risk-image-photo {
    max-width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
  }
}
 
.risk-checklist ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.risk-checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1rem;
  color: var(--ink);
}
.risk-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--coral);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 12l4 4 8-9' stroke='%23E8614A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}
 
.risk-specs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid #eef0f4;
  border-bottom: 1px solid #eef0f4;
}
.risk-spec {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.risk-spec-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.risk-spec-icon svg { width: 26px; height: 26px; }
.risk-spec-text {
  display: flex;
  flex-direction: column;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 0.95rem;
  color: var(--body-text);
}
.risk-spec-text strong {
  font-family: 'Source Serif 4', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
}
 
.risk-cta { margin-top: 0.5rem; }

@media (min-width: 769px) {
  .risk-panel {
    grid-template-columns: 1fr 340px;
    column-gap: 4rem;
    row-gap: 2rem;
    align-items: start;
    grid-template-areas:
      "top       image"
      "bottom    image"
      "checklist image"
      "specs     image"
      "cta       image";
  }
}

@media (max-width: 768px) {
  .risk-section { padding: 5rem 0; }
  .risk-image-placeholder { max-width: 100%; aspect-ratio: 4 / 3; }
}

/* ===========================
   FINAL CTA
=========================== */
.final-cta-section { background: var(--navy); padding: 5rem 0; }
.final-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.final-cta-inner h2 { color: var(--white); margin-bottom: 1rem; }
.final-cta-inner > p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2.5rem; }
@media (max-width: 768px) { .final-cta-section { padding: 5rem 0; } }
/* ===========================
   FOOTER
=========================== */
.site-footer { background-color: var(--navy); color: var(--white); padding: 3rem 2rem; text-align: center; }
.site-footer p { margin: 0; color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ===========================
   ABOUT GMD (company)
=========================== */
.about-company-section {
  padding: 8rem 0 3rem;
}
.about-company-inner {
  max-width: 1200px;
  text-align: left;
}
.about-company-inner p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .about-company-section { padding: 7.5rem 0 2rem; }
}

/* ===========================
   ABOUT
=========================== */
.about-section {
  padding: 1rem 0 6rem;
}
.about-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1200px; /* was 680px — now matches .about-company-inner */
}
.about-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
.about-photo-wrap {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 30px rgba(13,31,78,0.12);
}

.about-company-inner .about-eyebrow {
  margin-bottom: 1rem;
}

.about-company-inner .about-title {
  margin-bottom: 1rem;
}

.about-eyebrow {
  font-family: 'Libre Franklin', -apple-system, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1;
}
.about-title { margin-bottom: 0.25rem; }
.about-role {
  font-family: 'Libre Franklin', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 0;
}
.about-content {
  max-width: 1200px; /* was 680px — now matches .about-company-inner */
  text-align: left;
}
.about-cta { margin-top: 1rem; }

@media (max-width: 768px) {
  .about-section { padding: 1rem 0 4rem; }
  .about-photo-wrap { width: 140px; height: 140px; }
  .about-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
 
/* ===========================
   HOMEPAGE — full-width sections
   (matches hero edge-to-edge; hero itself untouched)
=========================== */
@media (min-width: 769px) {
  .svc-container,
  .path-section .container,
  .risk-section .container,
  .final-cta-section .container,
  .about-company-inner,
  .about-panel {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ===========================
   SCROLL REVEAL — rest of the page
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}