/* ===========================================================
   GenMapsAI — Pedigree Intelligence Platform
   Faithful Bootstrap 5 recreation of index-01.psd
   =========================================================== */

:root {
  --navy:        #13263c;
  --blue:        #247fd4;
  --blue-deep:   #2674bd;
  --teal:        #399fa8;
  --teal-line:   #37a4c5;
  --cyan:        #24eff5;
  --gold:        #e9a933;
  --gold-2:      #fdb125;
  --dark-teal:   #0d4965;
  --trusted-bg:  #638096;
  --cta-navy:    #033046;
  --muted:       #5b6675;
  --line:        #e4e7ec;
}

* { box-sizing: border-box; }

body {
  font-family: 'Montserrat', -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--navy);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* Content container ~1310px wide (matches PSD 303→1613) */
.container-gm {
  width: 100%;
  max-width: 1340px;
  margin-inline: auto;
  padding-inline: 16px;
}

/* ---------- Section eyebrow heading block ---------- */
.section-head { text-align: center; margin-bottom: 38px; }
.section-eyebrow {
  color: var(--teal);
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  letter-spacing: .2px;
}
.section-eyebrow::after {
  content: "";
  display: block;
  width: 150px; height: 3px;
  background: var(--teal);
  margin: 10px auto 0;
}
.section-title {
  color: var(--blue);
  font-weight: 700;
  font-size: 24px;
  margin: 22px 0 10px;
}
.section-sub {
  color: var(--navy);
  font-weight: 500;
  font-size: 16px;
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.55;
}

/* =========================================================
   HEADER  (two-tone: light cream top + teal band bottom)
   ========================================================= */
.btn-pill {
  border: 0; border-radius: 6px; padding: 7px 18px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block; white-space: nowrap;
  transition: filter .15s ease;
}
.btn-pill:hover { filter: brightness(.93); }
.btn-teal  { background: var(--teal);  color: #fff; }
.btn-blue  { background: var(--blue);  color: #fff; }
.btn-darkteal { background: var(--dark-teal); color: #fff; }

.site-header {
  background: linear-gradient(to bottom,
    #f1f3ee 0%, #f1f3ee 44%, #c7dad8 44%, #c7dad8 100%);
  position: relative;
}
.header-inner {
  display: flex; align-items: stretch; justify-content: space-between;
  min-height: 100px; max-width: 1760px; gap: 24px;
}
.brand { display: flex; align-items: center; text-decoration: none; align-self: center; }
.brand .logo-full { height: 70px; width: auto; }

.header-right {
  display: flex; flex-direction: column; align-items: flex-end;
  justify-content: space-between; align-self: stretch;
  padding: 2px 0 16px; gap: 18px;
}
.header-btns { display: flex; gap: 12px; }
.nav-links { display: flex; gap: 22px; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--navy); text-decoration: none; font-weight: 500; font-size: 16px;
}
.nav-links a:hover { color: var(--blue); }
.nav-sep { color: #8fa9a7; }
.nav-toggle { display: none; background: none; border: 0; font-size: 28px; color: var(--navy); cursor: pointer; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(60% 55% at 50% 42%, rgba(255,255,255,.85) 0%, rgba(255,255,255,.5) 45%, rgba(255,255,255,0) 80%),
    linear-gradient(180deg, rgba(244,240,236,.55) 0%, rgba(245,247,247,.45) 100%),
    #eef0ee url("../img/hero-dna-bg.png") no-repeat center center;
  background-size: cover, cover, cover;
  padding: 64px 0 56px;
  text-align: center;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1340px;
  display: flex; flex-direction: column; align-items: center;
}
.hero h1 {
  font-weight: 700; font-size: 54px; line-height: 1.14; margin: 0 0 26px;
}
.hero h1 .l1 { color: var(--blue); display: block; }
.hero h1 .l2 { color: var(--teal); display: block; }
.hero p.lead {
  color: var(--navy); font-weight: 500; font-size: 17px; line-height: 1.6;
  max-width: 720px; margin: 0 auto 30px;
}
.hero-eyebrow {
  color: var(--teal); font-weight: 600; font-size: 18px;
  text-align: center; margin: 0 0 14px;
}
.hero .btn-darkteal { font-size: 18px; padding: 11px 32px; }

/* decorative arc under the button */
.hero-arc {
  width: 360px; height: 90px; margin: 26px auto 0;
  border: 3px solid var(--dark-teal); border-bottom: 0;
  border-radius: 360px 360px 0 0; border-color: var(--dark-teal) transparent transparent;
  opacity: .85;
}

/* stat badges */
.stat-row { display: flex; gap: 16px; margin-top: -46px; flex-wrap: wrap; justify-content: center; }
.stat {
  width: 115px; height: 115px; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8px;
}
.stat .num { font-size: 30px; font-weight: 500; color: var(--navy); line-height: 1; }
.stat .lbl { font-size: 14px; font-weight: 500; color: var(--navy); margin-top: 8px; line-height: 1.2; }
.stat-1 { background: #ddd7dd; }
.stat-2 { background: #d1e5dc; }
.stat-3 { background: #d7e8f8; }
.stat-4 { background: #f3e9d5; }

/* =========================================================
   TRUSTED BAR
   ========================================================= */
.trusted {
  background: var(--trusted-bg); color: #fff;
  padding: 16px 0;
}
.trusted .container-gm {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap; font-size: 16px; font-weight: 500;
}
.trusted .label { font-weight: 600; letter-spacing: .5px; }
.trusted .sep { opacity: .6; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.section { padding: 64px 0; }
.bg-white-sec { background: #fff; }
.bg-light-sec { background: #f6f8fb; }
.bg-faint-sec { background: #f4f4f4; }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 30px 50px; align-items: center; margin-top: 30px;
}
.how-illu { text-align: center; }
.how-illu img { max-height: 420px; }
.how-step .step-title { font-weight: 800; font-size: 16px; margin: 0 0 8px; }
.how-step p { font-size: 15px; color: var(--navy); font-weight: 500; line-height: 1.55; margin: 0; }
.how-step .num {
  width: 30px; height: 30px; border-radius: 50%; border: 3px solid;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; margin-bottom: 12px;
}
.step-veri  .step-title, .step-veri  .num { color: var(--gold); }
.step-veri  .num { border-color: var(--gold); }
.step-oto   .step-title, .step-oto  .num { color: var(--gold); }
.step-oto   .num { border-color: var(--gold); }
.step-ai    .step-title, .step-ai   .num { color: var(--blue); }
.step-ai    .num { border-color: var(--blue); }
.step-pay   .step-title, .step-pay  .num { color: var(--blue); }
.step-pay   .num { border-color: var(--blue); }
.how-step.text-end .num { margin-left: auto; }

/* =========================================================
   FEATURES
   ========================================================= */
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 34px 30px 26px; height: 100%; text-align: center;
  box-shadow: 0 6px 18px rgba(20,40,70,.05);
}
.feature-card .ficon { height: 74px; margin-bottom: 18px; }
.feature-card h3 { font-weight: 700; font-size: 20px; color: var(--navy); margin: 0 0 14px; }
.feature-card p { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0 0 20px; }
.tag-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.tag {
  color: #fff; font-size: 14px; font-weight: 500;
  padding: 6px 16px; border-radius: 6px; white-space: nowrap;
}
.tag-teal { background: var(--teal); }
.tag-blue { background: var(--blue-deep); }
.tag-dark { background: var(--navy); }

/* =========================================================
   USE CASES
   ========================================================= */
.usecase-card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; height: 100%;
  box-shadow: 0 6px 18px rgba(20,40,70,.05);
}
.usecase-card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.usecase-card .body { padding: 26px 28px 30px; text-align: center; }
.usecase-card h3 { font-weight: 700; font-size: 20px; color: var(--navy); margin: 0 0 12px; }
.usecase-card p { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0; }

/* =========================================================
   COMPARISON (dark)
   ========================================================= */
.comparison {
  position: relative; color: #fff; overflow: hidden;
  background: #001018 url("../img/comparison-dna-bg.png") no-repeat center center;
  background-size: cover;
  padding: 90px 0;
}
.comparison .watermark {
  position: absolute; left: 2%; top: 50%; transform: translateY(-50%);
  height: 80%; opacity: .9; pointer-events: none;
}
.comparison .inner { position: relative; text-align: center; z-index: 2; }
.comparison .eyebrow {
  color: #fff; font-weight: 700; font-size: 24px; letter-spacing: 1px; margin: 0 0 6px;
}
.comparison .biglogo { font-weight: 700; font-size: 78px; line-height: 1; letter-spacing: -1px; }
.comparison .biglogo .gen { color: var(--cyan); }
.comparison .biglogo .maps { color: #fff; }
.comparison .biglogo .ai  { color: var(--cyan); }
.comparison .platform {
  color: #cfe9ee; font-weight: 500; font-size: 16px; margin: 6px 0 22px;
  border-top: 2px solid var(--cyan); display: inline-block; padding-top: 4px;
}
.comparison .sub { color: #dfe9ef; font-weight: 500; font-size: 16px; margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; height: 100%;
  box-shadow: 0 6px 18px rgba(20,40,70,.05);
}
.testi-bubble { position: relative; }
.testi-bubble img { width: 100%; display: block; }
.bubble-overlay {
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  display: flex; flex-direction: column; align-items: center;
  justify-content: flex-start; padding-top: 11%; pointer-events: none;
}
.bubble-overlay .qmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 112px; line-height: .7; color: #16313f; font-weight: 700;
}
.bubble-overlay .stars {
  color: #fff; font-size: 24px; letter-spacing: 8px; margin-top: 14px;
  text-indent: 8px;
}
.testi-body { padding: 32px 46px 34px; text-align: center; }
.testi-body p.quote { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0 0 22px; }
.testi-body .name { font-weight: 700; font-size: 16px; color: var(--navy); margin: 0 0 4px; }
.testi-body .role { font-size: 14px; color: var(--muted); margin: 0; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  display: flex; align-items: stretch; background: #fff;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  margin-bottom: 16px; box-shadow: 0 3px 10px rgba(20,40,70,.04);
}
.faq-num {
  flex: 0 0 92px; background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700;
}
.faq-item.accent .faq-num { background: var(--teal); }
.faq-body { padding: 20px 28px; }
.faq-body h3 { font-weight: 700; font-size: 18px; color: var(--navy); margin: 0 0 8px; }
.faq-body p { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0; }

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative; color: #fff; overflow: hidden;
  background: var(--cta-navy) url("../img/cta-bg.png") no-repeat center center;
  background-size: cover;
  padding: 64px 0;
}
.cta::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(3,30,45,.88) 0%, rgba(3,30,45,.6) 38%, rgba(3,30,45,.15) 60%, rgba(3,30,45,0) 78%);
}
.cta .inner {
  position: relative; z-index: 2; max-width: 1600px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-text { max-width: 620px; }
.cta h2 { font-weight: 700; font-size: 44px; line-height: 1.12; margin: 0 0 22px; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.cta p { font-size: 17px; color: #eaf1f5; font-weight: 500; line-height: 1.6; margin: 0 0 30px; max-width: 560px; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.cta-btns { display: flex; gap: 18px; flex-wrap: wrap; }
.cta .btn-white { background: #fff; color: var(--navy); }
.cta .btn-pill { font-size: 17px; padding: 12px 30px; }
.cta-logo { flex: 0 0 auto; }
.cta-logo img { height: 220px; width: auto; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative; background: #ededed; overflow: hidden;
  padding: 70px 0 0;
}
.footer-dna {
  position: absolute; right: 0; top: 0; height: 100%;
  pointer-events: none; opacity: .95;
}
.footer .inner { position: relative; z-index: 2; }
.footer .fbrand { display: flex; align-items: center; justify-content: center; margin-bottom: 40px; }
.footer .fbrand img { height: 82px; width: auto; }
.footer-cols { display: flex; gap: 90px; justify-content: center; flex-wrap: wrap; }
.footer-col h4 { font-weight: 700; font-size: 18px; color: var(--navy); margin: 0 0 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--navy); text-decoration: none; font-size: 15px; font-weight: 500; opacity: .85; }
.footer-col a:hover { color: var(--blue); opacity: 1; }
.footer-copy {
  text-align: center; font-size: 14px; color: var(--navy); font-weight: 500;
  line-height: 1.6; padding: 50px 16px 30px; max-width: 1000px; margin: 60px auto 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991px) {
  .site-header { background: #f1f3ee; }
  .header-inner { min-height: 0; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; }
  .brand .logo-full { height: 52px; }
  .nav-toggle { display: block; order: 2; }
  .header-right {
    order: 3; flex-basis: 100%; align-items: stretch;
    flex-direction: column; padding: 0; gap: 12px;
  }
  .header-btns { justify-content: center; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 14px; padding: 6px 0 8px;
  }
  .nav-links.open .nav-sep { display: none; }
  .hero-arc { display: none; }
  .stat-row { margin-top: 30px; }
  .how-grid { grid-template-columns: 1fr; }
  .how-illu { order: -1; }
  .how-step.text-end { text-align: left !important; }
  .how-step.text-end .num { margin-left: 0; }
  .hero h1 { font-size: 38px; }
  .comparison .biglogo { font-size: 52px; }
  .comparison .watermark { display: none; }
  .cta h2 { font-size: 34px; }
  .cta .inner { flex-direction: column; text-align: center; }
  .cta-text { max-width: 100%; }
  .cta-btns { justify-content: center; }
  .cta-logo img { height: 150px; }
  .footer-dna { display: none; }
}

@media (max-width: 575px) {
  .hero h1 { font-size: 30px; }
  .section-title { font-size: 21px; }
  .stat { width: calc(50% - 8px); }
  .faq-num { flex-basis: 64px; font-size: 22px; }
  .footer-cols { gap: 48px; }
}

/* =========================================================
   INNER PAGES
   ========================================================= */
/* active nav */
.nav-links a.active { color: var(--blue); font-weight: 700; }

/* page hero / banner */
.page-hero {
  position: relative; overflow: hidden; color: #fff; text-align: center;
  background: linear-gradient(120deg, #0c2740 0%, #134b62 55%, #1f7e86 100%);
  padding: 70px 0 60px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("../img/comparison-dna-bg.png") no-repeat center center;
  background-size: cover; opacity: .22; mix-blend-mode: screen;
}
.page-hero .inner { position: relative; z-index: 2; }
.page-hero .eyebrow {
  color: var(--cyan); font-weight: 600; font-size: 16px; letter-spacing: 1px;
  text-transform: uppercase; margin: 0 0 14px; max-width: none; width: 100%;
}
.page-hero h1 { font-weight: 700; font-size: 44px; margin: 0 0 16px; line-height: 1.12; }
.page-hero p { font-size: 17px; color: #dfeaf0; font-weight: 500; max-width: 760px; margin: 0 auto; line-height: 1.6; }
.breadcrumb-gm {
  position: relative; z-index: 2; font-size: 14px; color: #bcd6dd; margin: 0 0 22px;
}
.breadcrumb-gm a { color: #bcd6dd; text-decoration: none; }
.breadcrumb-gm a:hover { color: #fff; }
.breadcrumb-gm .sep { margin: 0 8px; opacity: .6; }
.breadcrumb-gm .current { color: #fff; }

/* generic prose block */
.prose { max-width: 860px; margin: 0 auto; }
.prose h2 { color: var(--blue); font-size: 26px; font-weight: 700; margin: 38px 0 16px; }
.prose h3 { color: var(--navy); font-size: 20px; font-weight: 700; margin: 28px 0 12px; }
.prose p, .prose li { color: var(--muted); font-size: 16px; line-height: 1.7; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }

/* info / icon cards grid */
.info-card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 30px 28px; height: 100%; box-shadow: 0 6px 18px rgba(20,40,70,.05);
}
.info-card .ic {
  width: 58px; height: 58px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; font-size: 26px; line-height: 1; color: #fff;
  background: var(--teal); margin-bottom: 18px;
}
.info-card .ic i { line-height: 1; }
.info-card.blue .ic { background: var(--blue); }
.info-card.gold .ic { background: var(--gold); }
.info-card h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.info-card p { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0; }

/* pricing */
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 36px 30px; height: 100%; text-align: center; position: relative;
  box-shadow: 0 6px 18px rgba(20,40,70,.05);
}
.price-card.popular { border: 2px solid var(--teal); box-shadow: 0 14px 40px rgba(31,126,134,.18); }
.price-card .badge-pop {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff; font-size: 13px; font-weight: 600;
  padding: 5px 18px; border-radius: 20px;
}
.price-card .plan { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.price-card .price { font-size: 44px; font-weight: 700; color: var(--blue); line-height: 1; margin: 14px 0 4px; }
.price-card .price small { font-size: 16px; font-weight: 500; color: var(--muted); }
.price-card .per { font-size: 14px; color: var(--muted); margin: 0 0 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; text-align: left; }
.price-card li { font-size: 15px; color: var(--navy); padding: 8px 0 8px 28px; position: relative; border-bottom: 1px solid #f1f3f5; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
.price-card .btn-pill { width: 100%; }

/* timeline / roadmap */
.timeline { max-width: 820px; margin: 0 auto; position: relative; padding-left: 36px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 3px; background: #d8e6e8; }
.tl-item { position: relative; margin-bottom: 34px; }
.tl-item::before {
  content: ""; position: absolute; left: -34px; top: 4px; width: 20px; height: 20px;
  border-radius: 50%; background: #fff; border: 4px solid var(--teal);
}
.tl-item.done::before { background: var(--teal); }
.tl-item .tl-date { font-size: 13px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .5px; }
.tl-item h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin: 6px 0 8px; }
.tl-item p { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0; }

/* contact form */
.contact-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 34px; box-shadow: 0 6px 18px rgba(20,40,70,.05); }
.form-label { font-weight: 600; color: var(--navy); font-size: 14px; }
.form-control, .form-select { border-radius: 8px; border: 1px solid #d9dee4; padding: 11px 14px; font-size: 15px; }
.form-control:focus, .form-select:focus { border-color: var(--teal); box-shadow: 0 0 0 .2rem rgba(57,159,168,.15); }
.contact-info .ci-item { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .ci-ic {
  flex: 0 0 48px; width: 48px; height: 48px; border-radius: 10px; background: var(--teal);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1;
}
.contact-info h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.contact-info p { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.5; }

/* status list */
.status-row {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 18px 24px; margin-bottom: 12px;
}
.status-row .s-name { font-weight: 600; color: var(--navy); font-size: 16px; }
.status-pill { font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }
.status-pill.ok { background: #e3f6ee; color: #18935f; }
.status-pill.warn { background: #fdf2dd; color: #b7791f; }
.status-banner {
  background: #e3f6ee; color: #18935f; border-radius: 12px; padding: 20px 26px;
  font-weight: 600; font-size: 17px; text-align: center; margin-bottom: 34px;
}

/* doc / video cards */
.doc-card {
  display: block; background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 26px; height: 100%; text-decoration: none; transition: box-shadow .15s, transform .15s;
}
.doc-card:hover { box-shadow: 0 12px 30px rgba(20,40,70,.1); transform: translateY(-3px); }
.doc-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.doc-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }
.doc-card .doc-link { color: var(--teal); font-weight: 600; font-size: 14px; margin-top: 14px; display: inline-block; }
.video-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; height: 100%; box-shadow: 0 6px 18px rgba(20,40,70,.05); }
.video-thumb { position: relative; aspect-ratio: 16/9; background: linear-gradient(120deg,#134b62,#1f7e86); display: flex; align-items: center; justify-content: center; }
.video-thumb .play { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.video-card .vc-body { padding: 18px 20px 22px; }
.video-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.video-card p { font-size: 13px; color: var(--muted); margin: 0; }

/* simple CTA strip for inner pages */
.cta-strip { background: linear-gradient(120deg,#0c2740,#1f7e86); color: #fff; text-align: center; padding: 56px 0; }
.cta-strip h2 { font-weight: 700; font-size: 32px; margin: 0 0 14px; }
.cta-strip p { color: #dceaef; font-size: 16px; max-width: 620px; margin: 0 auto 26px; }

@media (max-width: 991px) {
  .page-hero h1 { font-size: 32px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 30px; }
}

/* ---- use-case detail button + equal-height cards ---- */
.usecase-card { display: flex; flex-direction: column; }
.usecase-card .body { display: flex; flex-direction: column; flex: 1 1 auto; }
.usecase-card .body p { flex: 1 1 auto; }
.btn-outline-gm {
  align-self: center; margin-top: 20px; display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--teal); color: var(--teal); background: transparent;
  font-weight: 600; font-size: 14px; padding: 9px 24px; border-radius: 8px;
  text-decoration: none; transition: background .15s ease, color .15s ease;
}
.btn-outline-gm:hover { background: var(--teal); color: #fff; }
.btn-outline-gm i { font-size: 13px; transition: transform .15s ease; }
.btn-outline-gm:hover i { transform: translateX(3px); }

/* ---- video card clickable ---- */
.video-card { cursor: pointer; transition: box-shadow .15s ease, transform .15s ease; }
.video-card:hover { box-shadow: 0 14px 34px rgba(20,40,70,.12); transform: translateY(-3px); }
.video-thumb .play { transition: transform .15s ease; }
.video-card:hover .video-thumb .play { transform: scale(1.08); }

/* ---- DB-driven step colors ---- */
.how-step.step-c-gold .step-title,.how-step.step-c-gold .num{color:var(--gold)}
.how-step.step-c-gold .num{border-color:var(--gold)}
.how-step.step-c-blue .step-title,.how-step.step-c-blue .num{color:var(--blue)}
.how-step.step-c-blue .num{border-color:var(--blue)}
.how-step.step-c-teal .step-title,.how-step.step-c-teal .num{color:var(--teal)}
.how-step.step-c-teal .num{border-color:var(--teal)}

/* ---- contact form alert ---- */
.form-alert{display:flex;align-items:center;gap:10px;padding:13px 16px;border-radius:10px;font-weight:600;font-size:14.5px;margin-bottom:20px}
.form-alert.ok{background:#e3f6ee;color:#18935f}
.form-alert.err{background:#fdecee;color:#cf3742}

/* contact info + footer links */
.contact-info a{color:var(--teal);text-decoration:none}
.contact-info a:hover{text-decoration:underline}
.footer-copy a{color:var(--blue);font-weight:600;text-decoration:none}
.footer-copy a:hover{text-decoration:underline}
