:root {
  --ink: #10213a;
  --navy: #071a32;
  --blue: #173fa7;
  --orange: #ff6b1f;
  --red: #d60d1d;
  --cream: #f7f5f0;
  --paper: #ffffff;
  --muted: #65738a;
  --line: rgba(16, 33, 58, 0.14);
  --green: #0d8d62;
  --shadow: 0 18px 48px rgba(16, 33, 58, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
}
a { color: inherit; }
.section-main { overflow: hidden; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.section-hero {
  position: relative;
  min-height: 470px;
  padding: 128px 0 78px;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.section-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(4, 20, 39, 0.97) 0%, rgba(4, 20, 39, 0.86) 48%, rgba(4, 20, 39, 0.32) 100%),
    var(--hero) center / cover no-repeat;
  content: "";
}
.section-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
  content: "";
}
.section-hero-content { position: relative; z-index: 1; max-width: 720px; }
.section-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #ffb071;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-kicker::before,
.section-label::before {
  width: 31px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--green));
  content: "";
}
.section-label { color: var(--red); }
.section-hero h1 {
  max-width: 15ch;
  margin: 17px 0 20px;
  color: #fff;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.5rem, 4.1vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.97;
}
.section-hero p {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  line-height: 1.68;
}
.section-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 27px; }
.section-btn {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.section-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,.1); }
.section-btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--red));
  box-shadow: 0 13px 28px rgba(214, 13, 29, 0.23);
}

.section-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: -30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.section-fact { min-height: 94px; padding: 20px 25px; border-right: 1px solid var(--line); }
.section-fact:last-child { border-right: 0; }
.section-fact b { display: block; font-size: 17px; letter-spacing: -0.025em; }
.section-fact span { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; line-height: 1.45; }

.section-block { padding: 78px 0 84px; }
.section-block.white { background: var(--paper); }
.section-intro {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}
.section-intro h2,
.section-block h2 {
  max-width: 14ch;
  margin: 14px 0 0;
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.99;
}
.section-intro-copy { max-width: 670px; padding-top: 23px; }
.section-intro-copy p,
.section-card p,
.section-copy { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.72; }

.section-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 35px; }
.section-card {
  position: relative;
  min-height: 270px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 10px 25px rgba(16, 33, 58, 0.045);
}
.section-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--red));
  content: "";
}
.section-card strong { display: block; margin-bottom: 13px; color: var(--orange); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.section-card h3 { margin: 0 0 10px; font-size: 19px; letter-spacing: -.035em; line-height: 1.15; }
.section-card ul { margin: 16px 0 0; padding: 0; list-style: none; }
.section-card li { position: relative; padding: 8px 0 8px 20px; border-top: 1px solid var(--line); color: #48586d; font-size: 12px; line-height: 1.4; }
.section-card li::before { position: absolute; left: 0; color: var(--green); font-weight: 900; content: "✓"; }
.section-card-link {
  display: inline-flex;
  margin-top: 17px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}
.section-card-link:hover { color: var(--red); }

.section-countdown-wrap { padding-top: 52px; }
.section-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
}
.section-countdown div { padding: 24px; border-right: 1px solid rgba(255,255,255,.13); text-align: center; }
.section-countdown div:last-child { border-right: 0; }
.section-countdown b { display: block; font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.07em; line-height: 1; }
.section-countdown span { display: block; margin-top: 8px; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.section-media { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(310px, .96fr); gap: 48px; align-items: center; }
.section-media img { width: 100%; height: 365px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.section-media .section-actions { margin-top: 24px; }

.gallery-guide { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-top: 35px; padding-top: 22px; border-top: 1px solid var(--line); }
.gallery-guide > div { display: flex; align-items: baseline; gap: 12px; }
.gallery-guide b { color: var(--navy); font-family: "Roboto Condensed", sans-serif; font-size: 34px; line-height: 1; }
.gallery-guide span { color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.gallery-guide p { max-width: 55ch; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }

.section-gallery { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.section-gallery-item { position: relative; grid-column: span 4; min-width: 0; padding: 0; overflow: hidden; border: 0; border-radius: 12px; background: var(--navy); color: #fff; cursor: zoom-in; box-shadow: 0 12px 32px rgba(7,27,50,.11); text-align: left; }
.section-gallery-item.is-featured { grid-column: span 8; grid-row: span 2; }
.section-gallery-media { display: block; width: 100%; height: 100%; min-height: 246px; overflow: hidden; }
.section-gallery-item.is-featured .section-gallery-media { min-height: 506px; }
.section-gallery img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.section-gallery-caption { position: absolute; inset: auto 0 0; display: grid; gap: 5px; padding: 52px 20px 18px; background: linear-gradient(180deg, transparent, rgba(3,18,34,.88)); pointer-events: none; }
.section-gallery-caption small { color: #ffaf71; font-size: 9px; font-style: normal; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.section-gallery-caption b { max-width: 27ch; font-size: 14px; line-height: 1.35; }
.section-gallery-caption i { position: absolute; right: 18px; bottom: 18px; opacity: 0; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transform: translateY(4px); transition: opacity .25s ease, transform .25s ease; }
.section-gallery-item:hover img { filter: saturate(1.04); transform: scale(1.035); }
.section-gallery-item:hover .section-gallery-caption b { max-width: 18ch; }
.section-gallery-item:hover .section-gallery-caption i { opacity: 1; transform: none; }
.section-gallery-item:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.gallery-lightbox[hidden] { display: none; }
.gallery-lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; align-items: center; gap: 18px; padding: 40px; background: rgba(2,11,22,.96); backdrop-filter: blur(16px); }
.gallery-lightbox figure { width: min(1120px, 100%); margin: 0 auto; }
.gallery-lightbox figure img { display: block; width: 100%; max-height: 76vh; object-fit: contain; border-radius: 10px; background: #071a32; box-shadow: 0 30px 90px rgba(0,0,0,.42); }
.gallery-lightbox figcaption { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; padding: 16px 2px 0; color: #fff; }
.gallery-lightbox figcaption span { display: grid; gap: 5px; }
.gallery-lightbox figcaption small { color: #ffaf71; font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.gallery-lightbox figcaption b { font-size: 14px; line-height: 1.4; }
.gallery-lightbox figcaption em { color: rgba(255,255,255,.55); font-size: 11px; font-style: normal; font-weight: 800; letter-spacing: .12em; }
.gallery-lightbox-close, .gallery-lightbox-nav { display: grid; place-items: center; width: 48px; height: 48px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.06); color: #fff; cursor: pointer; font: inherit; transition: background .2s ease, border-color .2s ease; }
.gallery-lightbox-close:hover, .gallery-lightbox-nav:hover { border-color: #ff7a32; background: #ff5722; }
.gallery-lightbox-close { position: absolute; top: 24px; right: 26px; font-size: 28px; line-height: 1; }
.gallery-lightbox-nav { justify-self: center; font-size: 20px; }
.gallery-lightbox-open { overflow: hidden; }

.section-downloads { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.section-download { display: flex; min-height: 155px; padding: 22px; flex-direction: column; border-radius: 10px; background: var(--navy); color: #fff; text-decoration: none; }
.section-download span { color: #ffb071; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.section-download b { margin: 14px 0; font-size: 18px; line-height: 1.2; }
.section-download small { margin-top: auto; color: rgba(255, 255, 255, .64); font-size: 11px; line-height: 1.45; }

.answer-fact-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 12px 32px rgba(7,27,50,.06); }
.answer-fact-strip div { min-height: 92px; padding: 21px 22px; border-right: 1px solid var(--line); }
.answer-fact-strip div:last-child { border-right: 0; }
.answer-fact-strip span { display: block; margin-bottom: 8px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.answer-fact-strip b { display: block; color: var(--navy); font-size: 14px; line-height: 1.35; }
.faq-tools { position: sticky; top: 86px; z-index: 5; display: grid; grid-template-columns: minmax(280px, 1fr) auto; gap: 12px 18px; align-items: center; margin-top: 24px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 14px 35px rgba(7,27,50,.09); backdrop-filter: blur(12px); }
.faq-search { position: relative; display: block; }
.faq-search > span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.faq-search input { width: 100%; min-height: 48px; padding: 0 46px 0 16px; border: 1px solid #cfd9e3; border-radius: 9px; outline: 0; color: var(--navy); background: #f8fafc; font: 600 13px Inter, sans-serif; }
.faq-search input:focus { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(20,67,186,.1); }
.faq-search i { position: absolute; top: 50%; right: 16px; color: var(--blue); font-size: 22px; font-style: normal; transform: translateY(-50%); pointer-events: none; }
.faq-filters { display: flex; gap: 7px; flex-wrap: wrap; }
.faq-filter { min-height: 40px; padding: 0 14px; border: 1px solid #d5dee7; border-radius: 999px; color: #52627a; background: #fff; cursor: pointer; font: 800 11px Inter, sans-serif; }
.faq-filter span { margin-left: 4px; color: #8795a7; }
.faq-filter:hover, .faq-filter.is-active { border-color: var(--navy); color: #fff; background: var(--navy); }
.faq-filter.is-active span { color: #ffad6f; }
.faq-results { grid-column: 1 / -1; margin: -2px 2px 0; color: var(--muted); font-size: 10px; }
.faq-empty { margin-top: 32px; padding: 35px; border: 1px dashed #c8d3df; border-radius: 12px; text-align: center; background: #fff; }
.faq-empty b { display: block; color: var(--navy); font-size: 17px; }
.faq-empty p { margin: 8px 0 15px; color: var(--muted); font-size: 12px; }
.faq-empty a { color: var(--blue); font-size: 11px; font-weight: 900; text-decoration: none; }
.answer-hub { margin-top: 48px; border-bottom: 1px solid var(--line); }
.answer-group { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 48px; padding: 34px 0; border-top: 1px solid var(--line); }
.answer-group-heading { display: flex; gap: 15px; align-items: baseline; }
.answer-group-heading span { color: var(--orange); font-family: "Roboto Condensed", sans-serif; font-size: 13px; font-weight: 900; }
.answer-group-heading h3 { margin: 0; color: var(--navy); font-size: 17px; letter-spacing: -.025em; line-height: 1.25; }
.answer-list { min-width: 0; }
.answer-item { border-bottom: 1px solid var(--line); }
.answer-item:first-child { border-top: 1px solid var(--line); }
.answer-item summary { display: flex; min-height: 65px; padding: 18px 2px; align-items: center; justify-content: space-between; gap: 28px; color: var(--navy); cursor: pointer; font-size: 14px; font-weight: 800; line-height: 1.45; list-style: none; }
.answer-item summary::-webkit-details-marker { display: none; }
.answer-item summary i { display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center; border-radius: 50%; background: #edf2f7; color: var(--blue); font-size: 18px; font-style: normal; transition: transform .22s ease, background .22s ease; }
.answer-item[open] summary i { background: var(--navy); color: #fff; transform: rotate(45deg); }
.answer-item-body { max-width: 760px; padding: 0 42px 23px 2px; }
.answer-item-body p { margin: 0; color: #42536a; font-size: 13px; line-height: 1.72; }
.answer-item-body a { display: inline-flex; margin-top: 13px; color: var(--blue); font-size: 11px; font-weight: 900; text-decoration: none; }
.answer-item-body a:hover { color: var(--red); }
.answer-verification { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr) auto; gap: 28px; align-items: center; margin-top: 34px; padding: 25px 28px; border-radius: 12px; background: var(--navy); color: #fff; }
.answer-verification span { display: block; margin-bottom: 6px; color: #ffad6f; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.answer-verification b { font-size: 14px; line-height: 1.45; }
.answer-verification p { margin: 0; color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.55; }
.answer-verification a { color: #fff; font-size: 11px; font-weight: 900; text-decoration: none; white-space: nowrap; }

.geo-guide { margin-top: 38px; }
.geo-provenance { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 12px 32px rgba(7,27,50,.055); }
.geo-provenance div { min-height: 88px; padding: 20px 21px; border-right: 1px solid var(--line); }
.geo-provenance div:last-child { border-right: 0; }
.geo-provenance span, .geo-section-heading > span, .geo-framework > div > span, .geo-methodology > div > span { display: block; margin-bottom: 8px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.geo-provenance b { display: block; color: var(--navy); font-size: 12px; line-height: 1.45; }
.geo-section { padding: 58px 0; border-bottom: 1px solid var(--line); }
.geo-section-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr); column-gap: 58px; }
.geo-section-heading > span { grid-column: 1 / -1; }
.geo-section-heading h3, .geo-framework h3, .geo-methodology h3 { max-width: 18ch; margin: 0; color: var(--navy); font-family: "Roboto Condensed", sans-serif; font-size: clamp(1.9rem, 3.4vw, 3.15rem); font-weight: 850; letter-spacing: -.05em; line-height: 1; }
.geo-section-heading p { max-width: 60ch; margin: 3px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.geo-signal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.geo-signal { display: flex; min-height: 310px; padding: 25px; flex-direction: column; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 12px 30px rgba(7,27,50,.05); }
.geo-signal > span { color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.geo-signal > strong { display: block; margin: 19px 0 10px; color: var(--navy); font-family: "Roboto Condensed", sans-serif; font-size: 36px; letter-spacing: -.055em; line-height: 1; }
.geo-signal h3 { margin: 0 0 13px; color: var(--navy); font-size: 17px; letter-spacing: -.025em; line-height: 1.25; }
.geo-signal p { margin: 0 0 22px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.geo-signal a { display: inline-flex; margin-top: auto; color: var(--blue); font-size: 10px; font-weight: 900; line-height: 1.4; text-decoration: none; }
.geo-signal a:hover { color: var(--red); }
.geo-table-wrap { margin-top: 34px; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 12px 30px rgba(7,27,50,.05); }
.geo-table { width: 100%; min-width: 860px; border-collapse: collapse; text-align: left; }
.geo-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.geo-table th, .geo-table td { padding: 19px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); vertical-align: top; }
.geo-table tr:last-child th, .geo-table tr:last-child td { border-bottom: 0; }
.geo-table th:last-child, .geo-table td:last-child { border-right: 0; }
.geo-table thead th { background: var(--navy); color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.geo-table tbody th { width: 19%; color: var(--navy); font-size: 12px; line-height: 1.45; }
.geo-table tbody td { color: #4c5d71; font-size: 11px; line-height: 1.55; }
.geo-framework { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 55px; margin: 58px 0 0; padding: 38px; border-radius: 14px; background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.geo-framework h3 { color: #fff; }
.geo-framework ol { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.13); list-style: none; counter-reset: geo-framework; }
.geo-framework li { min-height: 142px; padding: 22px; background: #0a253f; counter-increment: geo-framework; }
.geo-framework li::before { display: block; margin-bottom: 14px; color: #ffad6f; font-size: 10px; font-weight: 900; content: "0" counter(geo-framework); }
.geo-framework li b { display: block; font-size: 15px; }
.geo-framework li p { margin: 8px 0 0; color: rgba(255,255,255,.67); font-size: 11px; line-height: 1.55; }
.geo-glossary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 34px 0 0; border-top: 1px solid var(--line); }
.geo-term { padding: 23px 24px 23px 0; border-bottom: 1px solid var(--line); }
.geo-term:nth-child(odd) { padding-right: 35px; border-right: 1px solid var(--line); }
.geo-term:nth-child(even) { padding-left: 35px; }
.geo-term dt { color: var(--navy); font-size: 13px; font-weight: 850; line-height: 1.4; }
.geo-term dd { margin: 8px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.geo-methodology { display: grid; grid-template-columns: minmax(250px, .8fr) minmax(300px, 1fr) auto; gap: 35px; align-items: center; margin-top: 58px; padding: 32px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(130deg, #fff, #f1f5f7); }
.geo-methodology h3 { max-width: 14ch; font-size: 27px; }
.geo-methodology p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.68; }
.geo-methodology p a { color: var(--blue); font-weight: 800; }
.geo-methodology .section-btn { white-space: nowrap; }

.intent-guide { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.intent-guide-heading { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr); column-gap: 58px; }
.intent-guide-heading > span { grid-column: 1 / -1; display: block; margin-bottom: 10px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.intent-guide-heading h3 { max-width: 18ch; margin: 0; color: var(--navy); font-family: "Roboto Condensed", sans-serif; font-size: clamp(1.9rem, 3.4vw, 3.15rem); font-weight: 850; letter-spacing: -.05em; line-height: 1; }
.intent-guide-heading p { max-width: 62ch; margin: 3px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.intent-table-wrap { margin-top: 32px; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 12px 30px rgba(7,27,50,.05); }
.intent-table { width: 100%; min-width: 880px; border-collapse: collapse; text-align: left; }
.intent-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.intent-table th, .intent-table td { padding: 19px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); vertical-align: top; }
.intent-table tr:last-child th, .intent-table tr:last-child td { border-bottom: 0; }
.intent-table th:last-child, .intent-table td:last-child { border-right: 0; }
.intent-table thead th { background: var(--navy); color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.intent-table tbody th { width: 19%; color: var(--navy); font-size: 12px; line-height: 1.45; }
.intent-table tbody td { color: #4c5d71; font-size: 11px; line-height: 1.55; }
.intent-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin: 34px 0 0; padding: 1px; overflow: hidden; border-radius: 12px; background: #d9e1e9; list-style: none; }
.intent-steps li { min-height: 190px; padding: 23px; background: #fff; }
.intent-steps span { display: grid; width: 34px; height: 34px; margin-bottom: 24px; place-items: center; border-radius: 9px; background: var(--navy); color: #ffad6f; font-family: "Roboto Condensed", sans-serif; font-size: 11px; font-weight: 900; }
.intent-steps h3 { margin: 0; color: var(--navy); font-size: 14px; line-height: 1.35; }
.intent-steps p { margin: 9px 0 0; color: var(--muted); font-size: 11px; line-height: 1.62; }
.intent-source-note { display: grid; grid-template-columns: minmax(180px, .55fr) minmax(300px, 1fr) auto; gap: 30px; align-items: center; margin-top: 25px; padding: 24px 26px; border-radius: 12px; background: #eaf1f4; }
.intent-source-note b { color: var(--navy); font-size: 13px; }
.intent-source-note p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.intent-source-note a { color: var(--blue); font-size: 10px; font-weight: 900; text-decoration: none; white-space: nowrap; }

.related-guides { margin-top: 34px; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(135deg, #f4f8fa, #fff); }
.related-guides > span { display: block; margin-bottom: 15px; color: var(--orange); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.related-guides > div { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.related-guides a { display: grid; gap: 8px; min-height: 138px; padding: 20px; border: 1px solid var(--line); border-radius: 11px; background: #fff; color: var(--navy); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.related-guides a:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(7,27,50,.08); }
.related-guides b { font-size: 15px; line-height: 1.35; }
.related-guides small { color: var(--muted); font-size: 11px; line-height: 1.55; }
.related-guides em { align-self: end; color: var(--blue); font-size: 10px; font-style: normal; font-weight: 900; }

.section-cta { padding: 58px 0; background: linear-gradient(120deg, #071a32, #0b3552); color: #fff; }
.section-cta .section-shell { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.section-cta h2 { max-width: 19ch; margin: 0; font-size: clamp(1.9rem, 3.2vw, 3.35rem); }
.section-cta p { margin: 11px 0 0; color: rgba(255,255,255,.66); font-size: 13px; }

@media (max-width: 920px) {
  .section-hero { min-height: 440px; padding: 118px 0 72px; }
  .section-hero h1 { font-size: clamp(2.6rem, 7.5vw, 4.35rem); }
  .section-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-card:last-child { grid-column: 1 / -1; min-height: 0; }
  .section-media { grid-template-columns: 1fr 1fr; gap: 28px; }
  .section-gallery-item.is-featured { grid-column: 1 / -1; grid-row: auto; }
  .section-gallery-item { grid-column: span 6; }
  .section-gallery-item.is-featured .section-gallery-media { min-height: 410px; }
  .section-gallery-item:nth-child(6) { grid-column: 1 / -1; }
  .section-gallery-item:nth-child(6) .section-gallery-media { min-height: 320px; }
  .answer-group { grid-template-columns: 175px minmax(0, 1fr); gap: 30px; }
  .answer-verification { grid-template-columns: 1fr 1fr; }
  .answer-verification a { grid-column: 1 / -1; }
  .geo-provenance { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .geo-provenance div:nth-child(2) { border-right: 0; }
  .geo-provenance div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .geo-section-heading { column-gap: 30px; }
  .geo-signal-grid { grid-template-columns: 1fr; }
  .geo-signal { min-height: 0; }
  .geo-framework { grid-template-columns: 1fr; gap: 30px; }
  .geo-methodology { grid-template-columns: 1fr 1fr; }
  .geo-methodology .section-btn { grid-column: 1 / -1; width: 100%; }
  .intent-guide-heading { column-gap: 30px; }
  .intent-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intent-source-note { grid-template-columns: 1fr 1fr; }
  .intent-source-note a { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .section-shell { width: min(100% - 28px, 1180px); }
  .section-hero { min-height: 0; padding: 96px 0 50px; }
  .section-hero::before {
    background:
      linear-gradient(180deg, rgba(4,20,39,.44), rgba(4,20,39,.94) 68%, #041427 100%),
      var(--hero) center / cover no-repeat;
  }
  .section-hero::after { display: none; }
  .section-hero h1 { max-width: 13ch; margin: 15px 0 18px; font-size: clamp(2.1rem, 9.4vw, 2.75rem); line-height: 1; }
  .section-hero p { font-size: 14px; line-height: 1.62; }
  .section-actions { margin-top: 23px; }
  .section-btn { width: 100%; min-height: 47px; }
  .section-facts { grid-template-columns: 1fr; margin-top: -18px; border-radius: 10px; }
  .section-fact { min-height: 0; padding: 17px 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-fact:last-child { border-bottom: 0; }
  .section-fact b { font-size: 15px; }
  .section-block { padding: 44px 0 48px; }
  .section-intro, .section-media { grid-template-columns: 1fr; gap: 25px; }
  .section-intro h2, .section-block h2 { max-width: 17ch; font-size: clamp(1.95rem, 9vw, 2.7rem); }
  .section-intro-copy { padding-top: 0; }
  .section-grid, .section-downloads { grid-template-columns: 1fr; margin-top: 28px; }
  .answer-fact-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 28px; }
  .answer-fact-strip div { min-height: 82px; padding: 17px; border-bottom: 1px solid var(--line); }
  .answer-fact-strip div:nth-child(2) { border-right: 0; }
  .answer-fact-strip div:nth-child(n+3) { border-bottom: 0; }
  .faq-tools { position: static; grid-template-columns: 1fr; margin-top: 18px; padding: 12px; }
  .faq-filters { display: grid; grid-template-columns: 1fr 1fr; }
  .faq-filter:first-child { grid-column: 1 / -1; }
  .faq-results { grid-column: auto; }
  .answer-hub { margin-top: 35px; }
  .answer-group { grid-template-columns: 1fr; gap: 18px; padding: 29px 0; }
  .answer-item summary { min-height: 60px; padding: 16px 0; gap: 18px; font-size: 13px; }
  .answer-item-body { padding: 0 36px 20px 0; }
  .answer-verification { grid-template-columns: 1fr; gap: 15px; padding: 22px; }
  .answer-verification a { grid-column: auto; }
  .geo-guide { margin-top: 30px; }
  .geo-provenance { grid-template-columns: 1fr; }
  .geo-provenance div { min-height: 0; padding: 17px; border-right: 0; border-bottom: 1px solid var(--line); }
  .geo-provenance div:last-child { border-bottom: 0; }
  .geo-section { padding: 45px 0; }
  .geo-section-heading { grid-template-columns: 1fr; gap: 16px; }
  .geo-section-heading h3, .geo-framework h3 { font-size: clamp(1.85rem, 8.5vw, 2.55rem); }
  .geo-signal-grid { margin-top: 27px; }
  .geo-signal { padding: 22px; }
  .geo-signal > strong { font-size: 32px; }
  .geo-table-wrap { margin-right: -14px; border-radius: 10px 0 0 10px; }
  .geo-table { min-width: 760px; }
  .geo-framework { margin-top: 45px; padding: 25px 20px; }
  .geo-framework ol { grid-template-columns: 1fr; }
  .geo-framework li { min-height: 0; }
  .geo-glossary { grid-template-columns: 1fr; margin-top: 27px; }
  .geo-term, .geo-term:nth-child(odd), .geo-term:nth-child(even) { padding: 20px 0; border-right: 0; }
  .geo-methodology { grid-template-columns: 1fr; gap: 20px; margin-top: 45px; padding: 24px 20px; }
  .geo-methodology .section-btn { grid-column: auto; }
  .intent-guide { margin-top: 38px; padding-top: 38px; }
  .intent-guide-heading { grid-template-columns: 1fr; gap: 16px; }
  .intent-guide-heading h3 { font-size: clamp(1.85rem, 8.5vw, 2.55rem); }
  .intent-table-wrap { margin: 27px -14px 0 0; border-radius: 10px 0 0 10px; }
  .intent-table { min-width: 780px; }
  .intent-steps { grid-template-columns: 1fr; margin-top: 27px; }
  .intent-steps li { min-height: 0; }
  .intent-source-note { grid-template-columns: 1fr; gap: 15px; padding: 22px; }
  .intent-source-note a { grid-column: auto; white-space: normal; }
  .section-countdown-wrap { padding-top: 34px; }
  .section-countdown { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-countdown div { padding: 19px 12px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .section-countdown div:nth-child(2) { border-right: 0; }
  .section-countdown div:nth-child(n+3) { border-bottom: 0; }
  .section-card, .section-card:last-child { grid-column: auto; min-height: 0; padding: 22px; }
  .section-media img { height: 245px; order: 2; }
  .gallery-guide { align-items: flex-start; flex-direction: column; gap: 11px; margin-top: 28px; padding-top: 18px; }
  .gallery-guide b { font-size: 29px; }
  .section-gallery { grid-template-columns: 1fr; gap: 11px; margin-top: 18px; }
  .section-gallery-item, .section-gallery-item.is-featured, .section-gallery-item:nth-child(6) { grid-column: auto; grid-row: auto; }
  .section-gallery-media, .section-gallery-item.is-featured .section-gallery-media, .section-gallery-item:nth-child(6) .section-gallery-media { min-height: 0; aspect-ratio: 16 / 10; }
  .section-gallery-caption { padding: 48px 17px 15px; }
  .section-gallery-caption b { font-size: 13px; }
  .section-gallery-caption i { display: none; }
  .gallery-lightbox { grid-template-columns: 1fr 1fr; align-content: center; gap: 14px; padding: 68px 14px 18px; }
  .gallery-lightbox figure { grid-column: 1 / -1; grid-row: 1; }
  .gallery-lightbox figure img { max-height: 68vh; }
  .gallery-lightbox figcaption { padding: 13px 3px 0; }
  .gallery-lightbox figcaption b { font-size: 12px; }
  .gallery-lightbox-nav { grid-row: 2; width: 100%; height: 44px; border-radius: 8px; }
  .gallery-lightbox-nav.previous { grid-column: 1; }
  .gallery-lightbox-nav.next { grid-column: 2; }
  .gallery-lightbox-close { top: 13px; right: 14px; width: 42px; height: 42px; }
  .section-cta { padding: 48px 0; }
  .section-cta .section-shell { align-items: flex-start; flex-direction: column; }
  .section-cta .section-btn { width: 100%; }
}

.sponsorship-package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}
.sponsorship-package-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(16,33,58,.14);
  background: #fff;
}
.sponsorship-package-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #5d77a5;
  content: "";
}
.sponsorship-package-card:nth-child(3)::before { background: #ff6b1f; }
.sponsorship-package-card:nth-child(4)::before { background: #0d8d62; }
.sponsorship-package-card.featured { border-color: #102a50; color: #fff; background: linear-gradient(160deg,#102a50,#071a32); }
.sponsorship-package-card.featured::before { background: linear-gradient(90deg,#ff6b1f,#d60d1d); }
.sponsorship-package-topline { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sponsorship-package-topline > span:last-child { color: #d60d1d; font: 900 18px "Roboto Condensed",sans-serif; }
.featured .sponsorship-package-topline > span:last-child { color: #ffb47c; }
.sponsorship-tier { padding: 10px 16px; border-radius: 999px; color: #5d77a5; background: #edf4fd; font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.sponsorship-tier.platinum { color: #ff6b1f; background: #fff0e8; }
.sponsorship-tier.gold { color: #e68a00; background: #faf4e5; }
.sponsorship-tier.sponsor { color: #102a50; background: #eef0f3; }
.sponsorship-package-card h3 { margin: 30px 0 12px; color: #071a32; font: 900 25px/1.05 "Roboto Condensed",sans-serif; }
.sponsorship-package-card.featured h3 { color: #fff; }
.sponsorship-package-card p { margin: 0; color: #657590; line-height: 1.65; }
.sponsorship-package-card.featured p,
.sponsorship-package-card.featured li { color: rgba(255,255,255,.7); }
.sponsorship-package-card ul { flex: 1; display: grid; gap: 14px; margin: 24px 0; padding: 0; list-style: none; }
.sponsorship-package-card li { position: relative; padding-left: 28px; color: #657590; font-size: 14px; line-height: 1.5; }
.sponsorship-package-card li::before { position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: #ff6b1f; content: ""; }
.sponsorship-package-card > a { min-height: 54px; display: grid; place-items: center; border: 1px solid #ff6b1f; color: #ff5b22; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.sponsorship-package-card.featured > a { border: 0; color: #fff; background: linear-gradient(135deg,#ff6b1f,#d60d1d); }

@media (max-width: 720px) {
  .sponsorship-package-grid { grid-template-columns: 1fr; margin-top: 30px; }
  .sponsorship-package-card { min-height: 0; padding: 24px 20px; }
  .sponsorship-package-topline { align-items: flex-start; flex-direction: column; gap: 12px; }
  .sponsorship-package-topline > span:last-child { font-size: 16px; }
}

.unified-contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(16,33,58,.14);
  border-top: 4px solid #ff6b1f;
  background: #fff;
  box-shadow: 0 22px 55px rgba(16,33,58,.08);
}
.unified-contact-copy { padding: 42px; color: #fff; background: linear-gradient(155deg,#102a50,#071a32); }
.unified-contact-copy > span { color: #ffad75; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.unified-contact-copy h3 { margin: 16px 0 14px; font: 900 34px/1 "Roboto Condensed",sans-serif; }
.unified-contact-copy p { margin: 0; color: rgba(255,255,255,.7); line-height: 1.7; }
.unified-contact-copy ul { display: grid; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; }
.unified-contact-copy li { position: relative; padding-left: 23px; color: rgba(255,255,255,.78); font-size: 13px; }
.unified-contact-copy li::before { position: absolute; left: 0; color: #4dd2a3; content: "✓"; }
.unified-contact-actions { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
.unified-contact-action { min-width: 0; min-height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 32px 24px; border-left: 1px solid rgba(16,33,58,.11); color: #10213a; transition: transform .2s ease,background .2s ease; }
.unified-contact-action:hover { transform: translateY(-3px); background: #f7f9fc; }
.unified-contact-actions small { color: #ff5b22; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.unified-contact-actions strong { margin: 16px 0 12px; font: 900 23px/1.05 "Roboto Condensed",sans-serif; }
.unified-contact-actions span { overflow-wrap: anywhere; color: #657590; font-size: 12px; line-height: 1.5; }
.unified-contact-actions .whatsapp small { color: #0d8d62; }
.unified-contact-actions .email small { color: #173fa7; }
.unified-contact-actions .call > small a,
.unified-contact-actions .call > strong a { color: inherit; text-decoration: underline; text-decoration-thickness: auto; text-underline-offset: auto; word-spacing: normal; }
.unified-contact-actions .email span { white-space: nowrap; font-size: 11px; letter-spacing: -.02em; }
.contact-phone-links { display: grid; gap: 7px; }
.unified-contact-action > span,
.contact-phone-links { min-height: 40px; align-content: start; }
.contact-phone-links a { color: #657590; font-size: 12px; line-height: 1.35; text-decoration: underline; text-underline-offset: 3px; }
.contact-phone-links a:hover { color: #ff5b22; }

.category-sector-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin-top: 42px;
  padding: 14px;
  background: #eaf0f6;
}
.category-sector-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(16,33,58,.12);
  background: #fff;
}
.category-sector-icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 6px; color: #ff5b22; background: #fff0e8; }
.category-sector-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.category-sector-card h3 { margin: 23px 0 10px; color: #071a32; font: 900 25px/1.05 "Roboto Condensed",sans-serif; }
.category-sector-card p { max-width: 58ch; margin: 0; color: #657590; font-size: 15px; line-height: 1.65; }
.category-sector-card > a { margin-top: auto; padding-top: 24px; color: #ff5b22; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.category-sector-card > a span { margin-left: 8px; }

@media (max-width: 900px) {
  .unified-contact-panel { grid-template-columns: 1fr; }
  .unified-contact-action:first-child { border-left: 0; }
}
@media (max-width: 620px) {
  .unified-contact-copy { padding: 28px 22px; }
  .unified-contact-copy h3 { font-size: 28px; }
  .unified-contact-actions { grid-template-columns: 1fr; }
  .unified-contact-action { min-height: 120px; padding: 22px; border-left: 0; border-top: 1px solid rgba(16,33,58,.11); }
  .unified-contact-actions strong { margin: 8px 0; }
  .unified-contact-actions .email span { white-space: normal; font-size: 12px; letter-spacing: 0; }
  .unified-contact-action > span,
  .contact-phone-links { min-height: 0; }
  .category-sector-grid { grid-template-columns: 1fr; margin-top: 30px; padding: 8px; }
  .category-sector-card { min-height: 270px; padding: 26px 22px; }
}

.resource-byline {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr)) auto;
  align-items: center;
  gap: 20px;
  margin: 32px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(16,33,58,.13);
  border-left: 4px solid #ff6123;
  background: #fff;
}
.resource-byline > div { display: grid; gap: 5px; }
.resource-byline span { color: #718098; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.resource-byline b { color: #10213a; font-size: 12px; line-height: 1.4; }
.resource-byline > a { color: #12418a; font-size: 11px; font-weight: 900; white-space: nowrap; }

.editorial-standards {
  margin-top: 48px;
  padding: clamp(30px,5vw,58px);
  color: #fff;
  background: linear-gradient(135deg,#071a32,#10385d);
}
.editorial-standards > header { max-width: 780px; }
.editorial-standards > header > span { color: #ffad75; font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.editorial-standards h3 { max-width: 16ch; margin: 14px 0 16px; font: 900 clamp(30px,4vw,48px)/.98 "Roboto Condensed",sans-serif; }
.editorial-standards > header p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.7; }
.editorial-standard-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; margin-top: 34px; background: rgba(255,255,255,.13); }
.editorial-standard-grid article { min-height: 190px; padding: 26px; background: rgba(7,26,50,.9); }
.editorial-standard-grid article > b { color: #ffad75; font-size: 11px; }
.editorial-standard-grid h4 { margin: 20px 0 10px; font: 900 21px/1.05 "Roboto Condensed",sans-serif; }
.editorial-standard-grid p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.65; }
.editorial-standard-grid a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 720px) {
  .resource-byline { grid-template-columns: 1fr; align-items: start; }
  .resource-byline > a { white-space: normal; }
  .editorial-standard-grid { grid-template-columns: 1fr; }
  .editorial-standard-grid article { min-height: 0; padding: 24px 20px; }
}

/* Compact, native touch rails keep mobile pages scannable without hiding content. */
@media (max-width: 680px) {
  .section-facts,
  .section-grid,
  .section-downloads,
  .section-gallery,
  .intent-steps,
  .related-guides > div,
  .sponsorship-package-grid,
  .category-sector-grid {
    width: calc(100vw - 14px);
    margin-right: calc(50% - 50vw);
    padding-right: 14px;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(84vw, 330px);
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scroll-padding-inline: 0 14px;
    scrollbar-width: thin;
    scrollbar-color: #ff6b1f rgba(7, 26, 50, .12);
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }
  .section-facts > *,
  .section-grid > *,
  .section-downloads > *,
  .section-gallery > *,
  .intent-steps > *,
  .related-guides > div > *,
  .sponsorship-package-grid > *,
  .category-sector-grid > * { scroll-snap-align: start; }
  .section-facts { margin-top: -18px; padding-right: 14px; border-radius: 10px 0 0 10px; }
  .section-fact,
  .section-fact:last-child { border-right: 1px solid var(--line); border-bottom: 0; }
  .section-grid,
  .section-downloads,
  .section-gallery,
  .intent-steps,
  .sponsorship-package-grid,
  .category-sector-grid { margin-top: 26px; }
  .section-gallery-item,
  .section-gallery-item.is-featured,
  .section-gallery-item:nth-child(6) { grid-column: auto; grid-row: auto; }
  .sponsorship-package-card { height: 100%; }
  .category-sector-grid { padding-top: 8px; padding-bottom: 8px; padding-left: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  .section-main * { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

.search-resource-hub {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: #071a32;
  color: #fff;
  box-shadow: 0 18px 48px rgba(7, 26, 50, .16);
}
.search-resource-hub header { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.search-resource-hub header span { color: #ff8b43; font: 800 11px/1.2 Inter, sans-serif; letter-spacing: .14em; text-transform: uppercase; }
.search-resource-hub header b { max-width: 520px; font: 800 clamp(18px, 2vw, 25px)/1.15 "Roboto Condensed", sans-serif; text-align: right; }
.search-resource-hub > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.search-resource-hub a { position: relative; min-height: 96px; padding: 17px 42px 17px 17px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; background: rgba(255, 255, 255, .045); color: #fff; text-decoration: none; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.search-resource-hub a:hover { transform: translateY(-2px); border-color: rgba(255, 139, 67, .65); background: rgba(255, 255, 255, .08); }
.search-resource-hub strong, .search-resource-hub small { display: block; }
.search-resource-hub strong { margin-bottom: 7px; font: 800 15px/1.2 Inter, sans-serif; }
.search-resource-hub small { color: rgba(255, 255, 255, .68); font: 500 12px/1.45 Inter, sans-serif; }
.search-resource-hub em { position: absolute; top: 17px; right: 17px; color: #ff8b43; font-style: normal; }

@media (max-width: 760px) {
  .search-resource-hub { margin: 24px 0; padding: 18px; border-radius: 14px; }
  .search-resource-hub header { display: block; }
  .search-resource-hub header b { display: block; margin-top: 7px; text-align: left; }
  .search-resource-hub > div { display: grid; grid-auto-flow: column; grid-auto-columns: min(78vw, 290px); grid-template-columns: none; overflow-x: auto; scroll-snap-type: inline mandatory; padding-bottom: 8px; }
  .search-resource-hub a { min-height: 88px; scroll-snap-align: start; }
}
