:root {
  --navy-950: #061632;
  --navy-900: #0a1f4f;
  --navy-800: #10346f;
  --navy-700: #16458c;
  --gold: #f4be17;
  --gold-strong: #dfa800;
  --orange: #f47721;
  --teal: #008f95;
  --sky: #66bde3;
  --ink: #15223b;
  --muted: #65738b;
  --surface: #f4f7fb;
  --surface-2: #eaf0f8;
  --white: #ffffff;
  --line: #dfe7f2;
  --success: #17845e;
  --shadow-sm: 0 12px 30px rgba(10, 31, 79, 0.08);
  --shadow-md: 0 20px 48px rgba(10, 31, 79, 0.14);
  --shadow-lg: 0 34px 80px rgba(3, 19, 48, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 84px;
  --font-body: Inter, "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-display: "Inter Display", Inter, "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(244, 190, 23, 0.35); color: var(--navy-950); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--navy-950);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container.narrow { width: min(calc(100% - 40px), 860px); }
.section { padding: 96px 0; position: relative; overflow: clip; }
.section.compact { padding: 68px 0; }
.section.surface { background: var(--surface); }
.section.navy { background: var(--navy-950); color: var(--white); }
.section.soft-navy { background: linear-gradient(135deg, #0a1f4f, #0f397a); color: var(--white); }
.section.gold-wash { background: linear-gradient(135deg, #fffaf0, #fff 54%, #f3f8ff); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .77rem;
  font-weight: 900;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; background: var(--gold); border-radius: 999px; }
.navy .eyebrow, .soft-navy .eyebrow { color: var(--gold); }
.section-title {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 900;
}
.navy .section-title, .soft-navy .section-title { color: var(--white); }
.section-title span, .accent { color: var(--gold-strong); }
.section-intro { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.navy .section-intro, .soft-navy .section-intro { color: #c9d5ec; }
.section-heading { margin-bottom: 52px; }
.section-heading.center { text-align: center; }
.section-heading.center .section-intro { margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(102, 189, 227, .5); outline-offset: 3px; }
.btn-primary { background: var(--gold); color: var(--navy-950); box-shadow: 0 12px 30px rgba(244, 190, 23, .24); }
.btn-primary:hover { background: #ffd13a; box-shadow: 0 16px 34px rgba(244, 190, 23, .32); }
.btn-secondary { background: var(--navy-900); color: var(--white); box-shadow: 0 12px 30px rgba(7, 25, 63, .16); }
.btn-secondary:hover { background: var(--navy-700); }
.btn-outline { border-color: rgba(255,255,255,.4); color: var(--white); background: rgba(255,255,255,.07); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.7); }
.btn-light { background: var(--white); color: var(--navy-900); }
.btn svg { width: 18px; height: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223, 231, 242, .8);
  backdrop-filter: blur(18px);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { height: 74px; box-shadow: var(--shadow-sm); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 230px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 11px 12px;
  border-radius: 10px;
  color: #2b3d5c;
  font-size: .94rem;
  font-weight: 750;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--surface-2); color: var(--navy-800); }
.main-nav .nav-cta { padding-inline: 18px; margin-left: 6px; background: var(--navy-900); color: var(--white); border-radius: 999px; }
.main-nav .nav-cta:hover, .main-nav .nav-cta[aria-current="page"] { background: var(--gold); color: var(--navy-950); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--surface);
  color: var(--navy-900);
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 26px; height: 26px; }

.hero {
  min-height: 760px;
  padding: calc(var(--header-height) + 70px) 0 70px;
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 15% 18%, rgba(102, 189, 227, .22), transparent 28%),
    linear-gradient(124deg, var(--navy-950) 0%, #0b2e68 56%, #0e4c84 100%);
  color: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;
  top: 80px;
  left: -240px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(244,190,23,.25);
  border-radius: 50%;
  right: -330px;
  bottom: -280px;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  color: #e8f4ff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(244,190,23,.15); }
.hero h1 {
  max-width: 730px;
  margin: 26px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
  line-height: .96;
  letter-spacing: -.06em;
  font-weight: 950;
}
.hero h1 span { color: var(--gold); }
.hero-copy { max-width: 650px; color: #d2def1; font-size: clamp(1.02rem, 1.7vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 24px; color: #cbd8ec; font-size: .92rem; }
.hero-trust span { display: inline-flex; gap: 9px; align-items: center; }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold); }
.hero-visual { position: relative; min-height: 560px; max-width: 640px; width: 100%; margin-left: auto; }
.hero-image-frame {
  position: absolute;
  inset: 0 26px 48px 26px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.22);
}
.hero-image-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(3,18,48,.45)); }
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  max-width: 290px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(10,31,79,.08);
  color: var(--navy-950);
  box-shadow: 0 22px 52px rgba(3,19,48,.18);
}
.hero-badge > span:last-child { display: grid; gap: 3px; }
.hero-badge strong { display: block; font-size: 1rem; line-height: 1.15; }
.hero-badge small { color: var(--muted); line-height: 1.35; }
.hero-badge .badge-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: linear-gradient(135deg, #ffd65e, var(--gold)); color: var(--navy-950); flex: 0 0 auto; box-shadow: inset 0 1px 0 rgba(255,255,255,.38); }
.hero-badge .badge-icon svg { width: 24px; height: 24px; stroke-width: 1.9; }
.hero-badge.one { left: 48px; bottom: 68px; }
.hero-badge.two { left: 48px; right: auto; top: 28px; }
.hero-pattern { position: absolute; right: 8px; bottom: 40px; width: 86px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.hero-pattern i { width: 7px; height: 7px; background: rgba(244,190,23,.72); border-radius: 50%; }
.hero-email { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #edf5ff; font-size: .95rem; font-weight: 600; }
.hero-email svg { width: 18px; height: 18px; color: var(--gold); }
.hero-email:hover { background: rgba(255,255,255,.14); }

.page-hero {
  padding: calc(var(--header-height) + 72px) 0 80px;
  background: linear-gradient(125deg, var(--navy-950), #0d3675 70%, #10628c);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after { content: ""; position: absolute; width: 540px; height: 540px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; right: -210px; top: -250px; }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: #b7c8e5; font-size: .88rem; margin-bottom: 24px; }
.breadcrumbs a:hover { color: var(--gold); }
.page-hero h1 { margin: 0; max-width: 850px; font-size: clamp(3rem, 6vw, 5.2rem); line-height: 1; letter-spacing: -.055em; font-weight: 950; }
.page-hero p { max-width: 760px; margin: 24px 0 0; color: #d2def1; font-size: 1.15rem; }

.trust-strip { margin-top: -30px; position: relative; z-index: 5; }
.trust-panel {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  align-items: stretch;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.trust-panel > div { min-height: 110px; padding: 22px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.trust-panel > div:last-child { border-right: 0; }
.trust-panel .lead { background: var(--gold); color: var(--navy-950); }
.trust-panel .lead strong { font-size: 1.2rem; }
.trust-panel .stat strong { color: var(--navy-900); font-size: 1.45rem; line-height: 1; }
.trust-panel small { color: var(--muted); margin-top: 8px; line-height: 1.35; }
.trust-panel .lead small { color: rgba(6,22,50,.75); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 34px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.stack { display: grid; gap: 18px; }

.icon-card, .service-card, .value-card, .feature-card, .case-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.icon-card:hover, .service-card:hover, .feature-card:hover, .case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #ccd9ea; }
.icon-card { padding: 30px; }
.card-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: var(--surface-2); color: var(--navy-800); margin-bottom: 22px; }
.card-icon.gold { background: rgba(244,190,23,.2); color: #a87600; }
.card-icon.orange { background: rgba(244,119,33,.14); color: var(--orange); }
.card-icon.teal { background: rgba(0,143,149,.13); color: var(--teal); }
.card-icon.sky { background: rgba(102,189,227,.18); color: #1779a7; }
.card-icon svg { width: 26px; height: 26px; }
.icon-card h3, .service-card h3, .feature-card h3, .case-card h3 { margin: 0; color: var(--navy-950); font-size: 1.24rem; line-height: 1.25; }
.icon-card p, .feature-card p { margin: 12px 0 0; color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--navy-800); font-weight: 850; }
.card-link:hover { color: var(--orange); }
.card-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.card-link:hover svg { transform: translateX(4px); }

.about-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.image-composition { position: relative; min-height: 560px; }
.image-composition .main-image { position: absolute; inset: 0 62px 72px 0; width: calc(100% - 62px); height: calc(100% - 72px); object-fit: cover; border-radius: 30px; box-shadow: var(--shadow-md); }
.image-composition .small-image { position: absolute; width: 48%; height: 46%; right: 0; bottom: 0; object-fit: cover; border: 10px solid var(--white); border-radius: 24px; box-shadow: var(--shadow-md); background: var(--white); }
.image-composition .number-card { position: absolute; top: 34px; right: 0; width: 150px; padding: 20px 16px; border-radius: 20px; background: var(--gold); color: var(--navy-950); box-shadow: var(--shadow-md); text-align: center; }
.number-card strong { display: block; font-size: 2.2rem; line-height: 1; }
.number-card span { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: #3f4f69; }
.check-list svg { flex: 0 0 auto; margin-top: 3px; width: 20px; height: 20px; color: var(--success); }

.delivery-flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: steps; }
.delivery-step { position: relative; padding: 34px 28px; min-height: 300px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.delivery-step::before { counter-increment: steps; content: "0" counter(steps); display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 36px; margin-bottom: 26px; border-radius: 999px; background: var(--gold); color: var(--navy-950); font-weight: 950; }
.delivery-step h3 { margin: 0; font-size: 1.35rem; }
.delivery-step p { color: #c9d5e8; margin: 14px 0 0; }
.delivery-step ul { padding-left: 18px; color: #c9d5e8; }
.delivery-step li { margin: 7px 0; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.service-card { overflow: hidden; display: flex; flex-direction: column; }
.service-card .service-image { height: 220px; overflow: hidden; background: var(--surface-2); position: relative; }
.service-card .service-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,20,49,.18)); }
.service-card .service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-card .service-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-tag { display: inline-flex; align-self: flex-start; padding: 6px 10px; margin-bottom: 15px; border-radius: 999px; background: var(--surface-2); color: var(--navy-700); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.service-card p { color: var(--muted); margin: 12px 0 18px; }
.service-card .card-link { margin-top: auto; }

.tpack-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.tpack-map { position: relative; padding: 34px; border-radius: 28px; background: #0f234e; box-shadow: var(--shadow-lg); }
.tpack-core { width: 210px; height: 210px; display: grid; place-items: center; margin: 80px auto; border-radius: 50%; background: linear-gradient(135deg, rgba(244,190,23,.9), rgba(244,119,33,.9)); color: var(--navy-950); text-align: center; box-shadow: 0 0 0 18px rgba(244,190,23,.12), 0 0 0 36px rgba(102,189,227,.08); }
.tpack-core strong { font-size: 1.6rem; line-height: 1; }
.tpack-node { position: absolute; width: 150px; min-height: 112px; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.17); color: var(--white); text-align: center; }
.tpack-node strong { display: block; color: var(--gold); font-size: 1.1rem; }
.tpack-node small { color: #c8d3e8; }
.tpack-node.ck { top: 34px; left: 34px; }
.tpack-node.pk { top: 34px; right: 34px; }
.tpack-node.tk { bottom: 34px; left: 50%; transform: translateX(-50%); }
.feature-list { display: grid; gap: 18px; margin-top: 30px; }
.feature-row { display: flex; gap: 16px; padding: 18px; border-radius: 16px; background: var(--surface); }
.feature-row .mini-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; background: var(--white); color: var(--navy-800); box-shadow: var(--shadow-sm); }
.feature-row .mini-icon svg { width: 21px; height: 21px; }
.feature-row strong { display: block; color: var(--navy-950); }
.feature-row p { margin: 4px 0 0; color: var(--muted); }

.impact-band { background: var(--gold); color: var(--navy-950); }
.impact-grid { display: grid; grid-template-columns: 1.35fr repeat(4,1fr); align-items: stretch; }
.impact-grid > div { padding: 38px 28px; border-right: 1px solid rgba(6,22,50,.15); }
.impact-grid > div:last-child { border-right: 0; }
.impact-grid h2 { margin: 0; font-size: 1.8rem; line-height: 1.15; }
.impact-stat strong { display: block; font-size: clamp(2rem,4vw,3.3rem); line-height: 1; letter-spacing: -.05em; }
.impact-stat span { display: block; margin-top: 8px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; }

.case-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 30px; }
.case-card { overflow: hidden; }
.case-card.featured { grid-row: span 2; }
.case-card img { width: 100%; height: 290px; object-fit: cover; }
.case-card.featured img { height: 390px; }
.case-card .case-body { padding: 28px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.case-meta span { padding: 5px 9px; border-radius: 999px; background: var(--surface-2); color: var(--navy-700); font-size: .74rem; font-weight: 850; text-transform: uppercase; }
.case-card p { margin: 12px 0 0; color: var(--muted); }
.case-card .outcomes { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.case-card .outcomes span { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; background: #f5f8fc; border: 1px solid var(--line); border-radius: 10px; color: #3c4d68; font-size: .82rem; }

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 32px;
  background: linear-gradient(120deg, var(--navy-950), #103d7c);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}
.cta-panel::before { content: ""; position: absolute; width: 330px; height: 330px; right: -100px; top: -210px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.cta-panel h2 { position: relative; margin: 0; max-width: 720px; font-size: clamp(2rem,4vw,3.4rem); line-height: 1.08; letter-spacing: -.04em; }
.cta-panel p { position: relative; margin: 14px 0 0; max-width: 660px; color: #cbd8ea; }
.cta-panel .cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; }

.quote-card { padding: 36px; border-radius: 26px; background: var(--navy-950); color: var(--white); position: relative; }
.quote-card::before { content: "“"; position: absolute; right: 28px; top: 4px; color: rgba(244,190,23,.25); font-size: 8rem; line-height: 1; font-family: Georgia, serif; }
.quote-card blockquote { margin: 0; position: relative; font-size: 1.2rem; line-height: 1.65; }
.quote-card cite { display: block; margin-top: 22px; color: var(--gold); font-style: normal; font-weight: 800; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { padding: 28px; background: var(--navy-950); color: var(--white); border-color: rgba(255,255,255,.1); box-shadow: none; }
.value-card h3 { margin: 14px 0 0; color: var(--gold); font-size: 1.04rem; text-transform: uppercase; letter-spacing: .08em; }
.value-card p { color: #cbd5e5; margin: 12px 0 0; }
.value-card .value-icon { font-size: 1.7rem; }

.timeline { position: relative; display: grid; gap: 0; margin-top: 34px; }
.timeline::before { content: ""; position: absolute; left: 115px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 50px; padding: 0 0 32px; position: relative; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year { color: var(--orange); font-weight: 950; font-size: 1.2rem; text-align: right; }
.timeline-content { position: relative; padding: 0 0 0 24px; }
.timeline-content::before { content: ""; position: absolute; left: -43px; top: 7px; width: 14px; height: 14px; border: 4px solid var(--white); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.timeline-content h3 { margin: 0; color: var(--navy-950); font-size: 1.12rem; }
.timeline-content p { margin: 6px 0 0; color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.process-step { padding: 24px 20px; border-radius: 20px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.process-step .process-number { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: var(--navy-950); font-weight: 950; margin-bottom: 16px; }
.process-step h3 { margin: 0; font-size: 1rem; color: var(--navy-950); }
.process-step p { margin: 9px 0 0; font-size: .9rem; color: var(--muted); }

.programme-detail { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; padding: 52px 0; border-bottom: 1px solid var(--line); }
.programme-detail:last-child { border-bottom: 0; }
.programme-detail.reverse { grid-template-columns: 1.1fr .9fr; }
.programme-detail.reverse .programme-image { order: 2; }
.programme-image { border-radius: 26px; overflow: hidden; min-height: 380px; box-shadow: var(--shadow-md); }
.programme-image img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.programme-copy h2 { margin: 0; color: var(--navy-950); font-size: clamp(1.9rem,3vw,2.75rem); line-height: 1.1; letter-spacing: -.035em; }
.programme-copy p { color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag-list span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: #3b4e6a; background: var(--surface); font-size: .82rem; font-weight: 750; }

.metric-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.metric-card { padding: 28px; border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.metric-card strong { display: block; color: var(--navy-900); font-size: 2.5rem; line-height: 1; letter-spacing: -.05em; }
.metric-card span { display: block; margin-top: 9px; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 42px; align-items: start; }
.contact-panel { padding: 36px; border-radius: 26px; background: var(--navy-950); color: var(--white); position: sticky; top: 110px; }
.contact-panel h2 { margin: 0; font-size: 2.1rem; line-height: 1.12; }
.contact-panel > p { color: #cbd6e8; }
.contact-list { display: grid; gap: 18px; margin-top: 30px; }
.contact-item { display: flex; gap: 14px; }
.contact-item .contact-icon { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.1); color: var(--gold); }
.contact-item .contact-icon svg { width: 21px; height: 21px; }
.contact-item strong { display: block; }
.contact-item span, .contact-item a { color: #cbd6e8; }
.contact-item a:hover { color: var(--gold); }
.contact-form { padding: 38px; border-radius: 26px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-950); font-weight: 800; font-size: .9rem; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #cfd9e8;
  background: #fbfcfe;
  border-radius: 13px;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--sky); box-shadow: 0 0 0 4px rgba(102,189,227,.16); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .84rem; }
.form-status { display: none; margin: 16px 0 0; padding: 12px 14px; border-radius: 12px; background: #e8f7f1; color: #176c50; font-weight: 700; }
.form-status.show { display: block; }

.faq { display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--white); }
.faq-button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; border: 0; background: var(--white); color: var(--navy-950); text-align: left; font-weight: 850; }
.faq-button svg { width: 20px; height: 20px; transition: transform .2s ease; }
.faq-button[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-panel p { margin: 0; padding: 0 22px 22px; color: var(--muted); }

.site-footer { background: #041127; color: #c4d0e4; padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1fr; gap: 44px; }
.footer-brand { max-width: 320px; }
.footer-brand .logo-wrap { display: inline-block; background: var(--white); border-radius: 14px; padding: 8px 12px; }
.footer-brand img { width: 230px; }
.footer-brand p { margin: 20px 0 0; color: #9fadc5; }
.footer-col h3 { margin: 0 0 18px; color: var(--white); font-size: 1rem; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #aebbd0; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 10px; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); font-size: .86rem; color: #8797b1; }
.footer-bottom .mini-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a:hover { color: var(--white); }

.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 800; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 14px; background: var(--gold); color: var(--navy-950); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .2s ease; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

.notice { padding: 18px 20px; border: 1px solid #d8e4f2; background: #f5f9fe; border-radius: 16px; color: #40516b; }
.notice strong { color: var(--navy-900); }



/* Product catalogue */
.product-page-hero { padding-bottom: 96px; }
.product-page-hero .hero-actions { margin-top: 30px; }
.product-overview { margin-top: -44px; z-index: 4; overflow: visible; padding-top: 0; }
.product-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.product-principles > div { padding: 26px 24px; border-right: 1px solid var(--line); }
.product-principles > div:last-child { border-right: 0; }
.product-principles strong { display: block; color: var(--navy-950); font-family: var(--font-display); font-size: 1rem; }
.product-principles span { display: block; margin-top: 7px; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.product-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: -12px 0 38px; }
.product-filters button { min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: #43536d; font-weight: 750; transition: .2s ease; }
.product-filters button:hover, .product-filters button.active { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); transform: translateY(-1px); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.product-card { display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #ccd9ea; }
.product-card[hidden] { display: none !important; }
.product-image { height: 245px; padding: 18px; background: linear-gradient(145deg, #f8fbff, #eef3f9); border-bottom: 1px solid var(--line); }
.product-image img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.product-kicker { color: var(--orange); text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; font-weight: 900; }
.product-body h3 { margin: 9px 0 0; color: var(--navy-950); font-family: var(--font-display); font-size: 1.28rem; line-height: 1.22; }
.product-body p { margin: 13px 0 0; color: var(--muted); font-size: .94rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.product-tags span, .theme-cloud span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: #43536d; font-size: .74rem; font-weight: 700; }
.product-body .card-link { margin-top: auto; padding-top: 22px; }
.product-feature-image { background: var(--white); }
.product-feature-image img { object-fit: contain; padding: 22px; }
.theme-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.phase-pathway { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.phase-pathway article { padding: 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.07); }
.phase-pathway article > span { display: inline-grid; width: 40px; height: 40px; place-items: center; border-radius: 12px; background: var(--gold); color: var(--navy-950); font-family: var(--font-display); font-weight: 900; }
.phase-pathway h3 { margin: 18px 0 0; color: var(--white); font-family: var(--font-display); font-size: 1.15rem; }
.phase-pathway p { margin: 10px 0 0; color: #c9d5ec; font-size: .9rem; }
.catalogue-banner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 42px; border-radius: 28px; background: linear-gradient(125deg, #fff6d9, #ffffff 60%, #eaf4ff); border: 1px solid #eedb9d; box-shadow: var(--shadow-sm); }
.catalogue-banner h2 { margin: 0; color: var(--navy-950); font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.1; }
.catalogue-banner p:not(.eyebrow) { max-width: 620px; margin: 12px 0 0; color: var(--muted); }
.catalogue-banner .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; }
.product-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-preview { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.product-preview:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-preview img { width: 100%; height: 210px; object-fit: contain; padding: 16px; background: linear-gradient(145deg, #fbfdff, #eef3f9); }
.product-preview > span { display: block; padding: 20px; }
.product-preview small { display: block; color: var(--orange); text-transform: uppercase; letter-spacing: .11em; font-size: .67rem; font-weight: 900; }
.product-preview strong { display: block; margin-top: 7px; color: var(--navy-950); font-family: var(--font-display); font-size: 1rem; line-height: 1.3; }

@media (max-width: 1080px) {
  :root { --header-height: 76px; }
  .brand img { width: 205px; }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; display: grid; gap: 4px; padding: 18px 20px 26px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-120%); opacity: 0; visibility: hidden; transition: transform .25s ease, opacity .25s ease, visibility .25s ease; }
  .main-nav.open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a { padding: 13px 15px; }
  .main-nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .menu-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero h1 { max-width: 850px; }
  .hero-visual { min-height: 560px; max-width: 700px; width: 100%; margin-inline: auto; }
  .trust-panel { grid-template-columns: repeat(2,1fr); }
  .trust-panel .lead { grid-column: 1 / -1; }
  .trust-panel > div { border-bottom: 1px solid var(--line); }
  .trust-panel > div:nth-last-child(-n+2) { border-bottom: 0; }
  .about-split, .tpack-layout, .contact-layout { grid-template-columns: 1fr; }
  .image-composition { min-height: 520px; }
  .delivery-flow, .service-grid { grid-template-columns: repeat(2,1fr); }
  .impact-grid { grid-template-columns: repeat(2,1fr); }
  .impact-grid > div:first-child { grid-column: 1 / -1; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card.featured { grid-row: auto; }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .programme-detail, .programme-detail.reverse { grid-template-columns: 1fr; }
  .programme-detail.reverse .programme-image { order: initial; }
  .metric-cards { grid-template-columns: repeat(2,1fr); }
  .contact-panel { position: static; }
  .product-principles { grid-template-columns: repeat(2, 1fr); }
  .product-principles > div:nth-child(2) { border-right: 0; }
  .product-principles > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .phase-pathway, .product-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-banner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container, .container.narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section.compact { padding: 54px 0; }
  .hero { padding-top: calc(var(--header-height) + 48px); }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-grid { gap: 44px; }
  .hero-visual { min-height: 460px; }
  .hero-image-frame { inset: 0 12px 32px 12px; }
  .hero-badge { min-width: 210px; max-width: 250px; padding: 13px; }
  .hero-badge.one { left: 28px; bottom: 50px; }
  .hero-badge.two { left: 28px; right: auto; top: 24px; }
  .hero-pattern { display: none; }
  .page-hero { padding-top: calc(var(--header-height) + 52px); }
  .page-hero h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-panel .lead { grid-column: auto; }
  .trust-panel > div { border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .trust-panel > div:last-child { border-bottom: 0 !important; }
  .grid-2, .grid-3, .grid-4, .delivery-flow, .service-grid, .value-grid { grid-template-columns: 1fr; }
  .image-composition { min-height: 440px; }
  .image-composition .main-image { inset: 0 28px 58px 0; width: calc(100% - 28px); height: calc(100% - 58px); }
  .image-composition .small-image { width: 54%; height: 40%; }
  .image-composition .number-card { width: 132px; top: 24px; }
  .delivery-step { min-height: 0; }
  .tpack-map { padding: 24px; min-height: 550px; }
  .tpack-core { width: 176px; height: 176px; margin: 155px auto; }
  .tpack-node { width: 132px; padding: 14px; }
  .tpack-node.ck { top: 24px; left: 24px; }
  .tpack-node.pk { top: 24px; right: 24px; }
  .tpack-node.tk { bottom: 24px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-grid > div:first-child { grid-column: auto; }
  .impact-grid > div { border-right: 0; border-bottom: 1px solid rgba(6,22,50,.15); }
  .impact-grid > div:last-child { border-bottom: 0; }
  .cta-panel { padding: 38px 26px; display: block; }
  .cta-panel .cta-actions { margin-top: 28px; }
  .timeline::before { left: 18px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding-left: 46px; }
  .timeline-year { text-align: left; }
  .timeline-content { padding-left: 0; }
  .timeline-content::before { left: -35px; }
  .process-grid { grid-template-columns: 1fr; }
  .programme-detail { gap: 28px; padding: 38px 0; }
  .programme-image, .programme-image img { min-height: 300px; }
  .metric-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .contact-form { padding: 28px 22px; }
  .product-principles, .product-grid, .phase-pathway, .product-preview-grid { grid-template-columns: 1fr; }
  .product-principles > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .product-principles > div:last-child { border-bottom: 0; }
  .product-filters { justify-content: flex-start; }
  .catalogue-banner { padding: 30px 24px; }
  .catalogue-banner .cta-actions { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .brand img { width: 175px; }
  .hero-actions, .cta-panel .cta-actions { display: grid; }
  .btn { width: 100%; }
  .hero-visual { min-height: 390px; }
  .hero-badge.one { right: 24px; left: 24px; bottom: 10px; max-width: none; }
  .hero-image-frame { bottom: 64px; }
  .tpack-node { width: 116px; font-size: .8rem; }
  .tpack-core { width: 150px; height: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
