:root {
  --ink: #172522;
  --ink-soft: #43514d;
  --paper: #f2eee5;
  --paper-deep: #e8e1d5;
  --white: #ffffff;
  --purple: #623079;
  --purple-deep: #462050;
  --purple-pale: #eee4f1;
  --blue: #298dc7;
  --orange: #d85a2d;
  --green: #2d6b4d;
  --line: #d9d4ca;
  --yellow-pale: #fff3d4;
  --shadow: 0 16px 38px rgba(23, 37, 34, 0.09);
  --radius: 14px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 140px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Avenir Next", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 200;
  background: var(--white); color: var(--ink); padding: 12px 18px; border: 2px solid var(--purple);
}
.skip-link:focus { top: 16px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Bitter", Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 6.4vw, 6.4rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.25rem, 4vw, 4.25rem); margin-bottom: 20px; }
h3 { line-height: 1.25; }
.eyebrow {
  margin-bottom: 12px; color: var(--purple); font-size: 0.76rem; font-weight: 800;
  letter-spacing: 0.13em; text-transform: uppercase;
}
.section { padding: 110px 0; }
.section-heading {
  display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px;
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 470px; margin: 0 0 5px; color: var(--ink-soft); font-size: 1.05rem; }

.topbar { background: var(--ink); color: #f4f0e8; font-size: 0.75rem; font-weight: 700; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; display: flex; align-items: center; gap: 9px; }
.topbar ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; color: #cbd5d1; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #72c790; box-shadow: 0 0 0 4px rgba(114,199,144,.12); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); box-shadow: 0 1px 0 rgba(23,37,34,.08); backdrop-filter: blur(14px); }
.header-main { min-height: 88px; display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 32px; }
.brand img { width: 105px; height: 76px; object-fit: contain; mix-blend-mode: multiply; }
.search-form { position: relative; display: flex; max-width: 670px; min-width: 0; width: 100%; justify-self: center; }
.search-form input {
  width: 100%; min-width: 0; height: 50px; border: 1px solid #c8c5be; border-radius: 9px; background: #f8f7f3;
  color: var(--ink); padding: 0 60px 0 18px; outline: none; transition: .2s ease;
}
.search-form input:focus { background: var(--white); border-color: var(--purple); box-shadow: 0 0 0 4px rgba(98,48,121,.1); }
.search-form button {
  position: absolute; right: 0; top: 0; height: 50px; width: 54px; border: 0; border-radius: 0 9px 9px 0;
  background: var(--purple); color: white; cursor: pointer;
}
.search-form svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 2; }
.search-suggestions {
  position: absolute; left: 0; right: 0; top: 58px; padding: 8px; background: var(--white);
  border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow); z-index: 20;
}
.search-suggestions button {
  position: static; width: 100%; height: auto; display: flex; justify-content: space-between; gap: 20px;
  background: transparent; color: var(--ink); padding: 11px 12px; border-radius: 7px; text-align: left;
}
.search-suggestions button:hover, .search-suggestions button:focus { background: var(--purple-pale); }
.search-suggestions small { color: var(--ink-soft); }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 49px; padding: 0 21px;
  border: 1px solid transparent; border-radius: 7px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--purple); box-shadow: 0 8px 18px rgba(98,48,121,.18); }
.button-primary:hover { background: var(--purple-deep); box-shadow: 0 12px 24px rgba(70,32,80,.22); }
.button-light { background: var(--white); color: var(--purple-deep); }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 800; border-bottom: 2px solid var(--orange); }
.text-link span { color: var(--orange); }

.category-nav { border-top: 1px solid #e6e3dd; background: white; }
.nav-inner { display: flex; align-items: center; gap: 34px; min-height: 46px; overflow-x: auto; scrollbar-width: none; }
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner a { white-space: nowrap; font-size: 0.84rem; font-weight: 700; color: var(--ink-soft); }
.nav-inner a:hover { color: var(--purple); }
.nav-inner a[aria-current="page"] { color: var(--purple); text-decoration: underline; text-decoration-color: var(--orange); text-decoration-thickness: 2px; text-underline-offset: 7px; }
.menu-toggle { display: none; width: 45px; height: 45px; border: 1px solid var(--line); background: white; border-radius: 8px; }
.menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero {
  position: relative; overflow: hidden; padding: 82px 0 72px;
  background:
    linear-gradient(90deg, rgba(98,48,121,.06) 1px, transparent 1px),
    linear-gradient(rgba(98,48,121,.06) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 7px; background: linear-gradient(90deg, var(--purple) 0 58%, var(--orange) 58% 71%, var(--blue) 71%); }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 62px; align-items: center; }
.hero-copy { min-width: 0; max-width: 610px; }
.hero h1 em { color: var(--purple); font-style: italic; }
.hero-intro { max-width: 580px; color: var(--ink-soft); font-size: clamp(1.1rem, 1.8vw, 1.35rem); margin-bottom: 32px; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-bottom: 34px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; margin: 0; padding: 0; }
.hero-facts li { padding: 7px 12px; background: rgba(255,255,255,.78); border: 1px solid var(--line); border-radius: 999px; font-size: 0.78rem; font-weight: 700; }
.hero-visual { position: relative; min-height: 500px; }
.hero-visual::before { content: ""; position: absolute; inset: 24px -22px -20px 30px; background: var(--purple-deep); z-index: 0; }
.hero-visual img { position: relative; z-index: 1; width: 100%; height: 500px; object-fit: cover; object-position: 72% center; border: 10px solid white; box-shadow: var(--shadow); }
.hero-note { position: absolute; z-index: 2; left: -28px; bottom: 28px; width: min(310px, 70%); padding: 19px 22px; background: var(--orange); color: white; box-shadow: var(--shadow); }
.hero-note strong, .hero-note span { display: block; }
.hero-note strong { font-family: "Bitter", Georgia, serif; font-size: 1.05rem; }
.hero-note span { margin-top: 3px; font-size: .78rem; }

.trust-strip { padding: 29px 0; background: white; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr 1.2fr; gap: 28px; align-items: center; }
.trust-copy p { margin: 0; }
.trust-copy .eyebrow { margin-bottom: 3px; }
.trust-copy p:last-child { color: var(--ink-soft); font-size: .85rem; }
.trust-logo { height: 66px; display: flex; align-items: center; justify-content: center; padding: 8px; }
.trust-logo img { max-height: 50px; max-width: 100%; width: auto; mix-blend-mode: multiply; object-fit: contain; }

.services { background: white; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.service-card { grid-column: span 2; background: white; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(23,37,34,.055); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #bdb6c0; }
.service-card.search-hit { animation: searchHit 1.3s ease; }
@keyframes searchHit { 0%,100% { box-shadow: 0 8px 24px rgba(23,37,34,.055); } 35% { box-shadow: 0 0 0 5px rgba(216,90,45,.28), var(--shadow); } }
.service-image { position: relative; height: 190px; overflow: hidden; background: var(--paper-deep); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-card:hover .service-image img { transform: scale(1.035); }
.service-code { position: absolute; left: 14px; bottom: 14px; min-width: 54px; padding: 2px 11px; background: white; color: var(--purple); border-left: 5px solid var(--orange); font-family: "Bitter", Georgia, serif; font-size: 1.5rem; font-weight: 700; }
.service-code.wide { font-size: 1.08rem; padding-block: 7px; }
.service-body { padding: 24px; }
.card-label { margin-bottom: 7px; color: var(--blue); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-body h3 { margin: 0 0 11px; font-family: "Bitter", Georgia, serif; font-size: 1.55rem; color: var(--purple-deep); }
.service-body > p:not(.card-label) { min-height: 78px; color: var(--ink-soft); font-size: .9rem; }
.service-body ul { min-height: 60px; margin: 18px 0 23px; padding: 15px 16px 15px 31px; background: var(--paper); font-size: .76rem; }
.service-body a { color: var(--purple); font-size: .84rem; font-weight: 800; }
.service-body a span { color: var(--orange); }

.choice-section { background: var(--ink); color: white; position: relative; overflow: hidden; }
.choice-section::before { content: ""; position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; }
.choice-layout { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: center; }
.choice-section .eyebrow { color: #a7d8f0; }
.choice-copy > p:not(.eyebrow) { max-width: 610px; color: #cdd8d4; font-size: 1.05rem; }
.choice-buttons { display: grid; gap: 9px; margin-top: 34px; }
.choice-button { display: flex; align-items: center; gap: 16px; width: 100%; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.04); color: white; padding: 15px 18px; text-align: left; cursor: pointer; transition: .2s; }
.choice-button span { color: #a7d8f0; font-size: .7rem; font-weight: 800; }
.choice-button:hover, .choice-button.is-active { background: white; color: var(--ink); border-color: white; transform: translateX(8px); }
.choice-button.is-active span { color: var(--orange); }
.choice-result { background: var(--paper); color: var(--ink); padding: clamp(30px, 5vw, 54px); box-shadow: 20px 20px 0 var(--purple); }
.result-kicker { color: var(--orange); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.choice-result h3 { margin: 0 0 18px; color: var(--purple-deep); font-family: "Bitter", Georgia, serif; font-size: clamp(2rem, 3vw, 3.2rem); }
.choice-result > p:not(.result-kicker) { color: var(--ink-soft); }
.result-note { margin: 25px 0; padding: 17px 18px; border-left: 4px solid var(--orange); background: white; }
.result-note strong, .result-note span { display: block; }
.result-note strong { margin-bottom: 4px; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; }
.result-note span { color: var(--ink-soft); font-size: .84rem; }

.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; list-style: none; padding: 0; margin: 0; counter-reset: steps; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid li { padding: 34px 27px 38px; border-right: 1px solid var(--line); }
.process-grid li:last-child { border-right: 0; }
.process-grid li > span { display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 24px; border: 1px solid var(--purple); color: var(--purple); font-family: "Bitter", Georgia, serif; font-weight: 700; }
.process-grid h3 { min-height: 52px; margin-bottom: 12px; font-size: 1.03rem; }
.process-grid p { margin: 0; color: var(--ink-soft); font-size: .87rem; }
.process-note { display: flex; align-items: center; gap: 26px; max-width: 800px; margin: 35px auto 0; padding: 18px 23px; background: var(--yellow-pale); border: 1px solid #e5c67e; }
.process-note strong { flex: 0 0 auto; color: #8c4b0b; }
.process-note p { margin: 0; font-size: .87rem; }

.sectors { background: white; }
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.sector-card { display: grid; grid-template-rows: 260px 1fr; background: var(--paper); border-bottom: 5px solid var(--purple); overflow: hidden; }
.sector-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); transition: transform .4s ease; }
.sector-card:hover img { transform: scale(1.035); }
.sector-card div { padding: 24px; }
.sector-card span { color: var(--orange); font-size: .72rem; font-weight: 800; }
.sector-card h3 { margin: 3px 0 8px; font-family: "Bitter", Georgia, serif; font-size: 1.45rem; }
.sector-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; }

.about { background: var(--paper-deep); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.about-image { position: relative; padding: 0 0 32px 32px; }
.about-image::before { content: ""; position: absolute; left: 0; bottom: 0; width: 72%; height: 80%; background: var(--purple); }
.about-image img { position: relative; width: 100%; aspect-ratio: 4/4.3; object-fit: cover; object-position: center; filter: saturate(.88); }
.image-caption { position: absolute; right: -25px; bottom: 0; padding: 14px 18px; background: white; box-shadow: var(--shadow); }
.image-caption strong, .image-caption span { display: block; }
.image-caption span { color: var(--ink-soft); font-size: .75rem; }
.about-copy .lead { color: var(--ink); font-size: 1.2rem; font-weight: 600; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--ink-soft); }
.about blockquote { margin: 30px 0; padding: 20px 25px; border-left: 5px solid var(--orange); background: rgba(255,255,255,.55); font-family: "Bitter", Georgia, serif; font-size: 1.15rem; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfc6b8; }
.about-facts div { padding: 22px 18px 0 0; }
.about-facts strong, .about-facts span { display: block; }
.about-facts strong { color: var(--purple-deep); font-family: "Bitter", Georgia, serif; font-size: 1.2rem; }
.about-facts span { color: var(--ink-soft); font-size: .75rem; }
.section-link { margin-top: 28px; }
.center-link { display: flex; justify-content: center; margin-top: 34px; }

.page-hero { position: relative; overflow: hidden; padding: 54px 0 68px; background: var(--paper); border-bottom: 7px solid var(--purple); }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(90deg, rgba(98,48,121,.06) 1px, transparent 1px), linear-gradient(rgba(98,48,121,.06) 1px, transparent 1px); background-size: 48px 48px; }
.breadcrumb { position: relative; display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; color: var(--ink-soft); font-size: .74rem; }
.breadcrumb a:hover { color: var(--purple); }
.page-hero-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.page-hero-copy { min-width: 0; }
.page-hero-copy h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(3.2rem, 6vw, 6rem); }
.page-hero-copy > p:not(.eyebrow) { max-width: 650px; color: var(--ink-soft); font-size: 1.15rem; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 28px; }
.button-secondary { border-color: var(--purple); color: var(--purple); background: white; }
.button-secondary:hover { background: var(--purple-pale); }
.page-hero-visual { position: relative; }
.page-hero-visual::after { content: ""; position: absolute; right: -18px; bottom: -18px; width: 72%; height: 74%; background: var(--purple); z-index: -1; }
.page-hero-visual img { width: 100%; height: 390px; object-fit: cover; border: 9px solid white; box-shadow: var(--shadow); }
.page-tag { position: absolute; left: -16px; bottom: 20px; padding: 10px 15px; color: white; background: var(--orange); font-size: .78rem; font-weight: 800; }
.page-content { background: white; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 85px; align-items: start; }
.prose { max-width: 790px; }
.prose h2 { margin-top: 58px; margin-bottom: 18px; font-size: clamp(2rem, 3vw, 3.1rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 30px 0 10px; font-family: "Bitter", Georgia, serif; font-size: 1.35rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose .lead { color: var(--ink); font-size: 1.18rem; font-weight: 600; }
.prose blockquote { margin: 30px 0; padding: 20px 25px; border-left: 5px solid var(--orange); background: var(--paper); color: var(--ink); font-family: "Bitter", Georgia, serif; font-size: 1.12rem; }
.check-list { display: grid; gap: 11px; margin: 24px 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 16px 14px 44px; background: var(--paper); border-left: 3px solid var(--purple); }
.check-list li::before { content: "✓"; position: absolute; left: 17px; color: var(--green); font-weight: 800; }
.number-list { counter-reset: item; display: grid; gap: 18px; padding: 0; list-style: none; }
.number-list li { position: relative; min-height: 54px; padding-left: 72px; }
.number-list li::before { counter-increment: item; content: counter(item, decimal-leading-zero); position: absolute; left: 0; top: 0; color: var(--orange); font-family: "Bitter", Georgia, serif; font-size: 1.55rem; font-weight: 700; }
.callout { margin: 32px 0; padding: 23px 25px; background: var(--yellow-pale); border: 1px solid #e5c67e; }
.callout strong { display: block; margin-bottom: 5px; color: #824408; }
.callout p { margin: 0; }
.page-sidebar { position: sticky; top: 158px; display: grid; gap: 18px; }
.sidebar-card { padding: 26px; background: var(--paper); border-top: 5px solid var(--purple); }
.sidebar-card h2 { margin-bottom: 12px; font-family: "Bitter", Georgia, serif; font-size: 1.45rem; }
.sidebar-card p { color: var(--ink-soft); font-size: .85rem; }
.sidebar-card .button { width: 100%; }
.sidebar-links { display: grid; }
.sidebar-links a { padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--purple); font-size: .82rem; font-weight: 800; }
.meta-list { display: grid; gap: 13px; margin: 0; }
.meta-list div { display: grid; gap: 2px; }
.meta-list dt { color: var(--ink-soft); font-size: .67rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.meta-list dd { margin: 0; font-size: .86rem; font-weight: 700; }
.related { background: var(--paper); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { padding: 26px; background: white; border: 1px solid var(--line); }
.related-card span { color: var(--orange); font-size: .7rem; font-weight: 800; }
.related-card h3 { margin: 7px 0 9px; font-family: "Bitter", Georgia, serif; font-size: 1.35rem; }
.related-card p { color: var(--ink-soft); font-size: .84rem; }
.related-card a { color: var(--purple); font-size: .8rem; font-weight: 800; }
.cta-band { padding: 68px 0; background: var(--purple-deep); color: white; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { margin: 0 0 8px; font-size: clamp(2rem, 3vw, 3.25rem); }
.cta-band p { margin: 0; color: #d8cedc; }
.page-overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.overview-card { display: grid; grid-template-columns: 170px 1fr; min-height: 250px; background: white; border: 1px solid var(--line); }
.overview-card img { width: 100%; height: 100%; object-fit: cover; }
.overview-card div { padding: 25px; }
.overview-card h2 { margin: 2px 0 9px; font-size: 1.65rem; }
.overview-card p { color: var(--ink-soft); font-size: .85rem; }
.overview-card a { color: var(--purple); font-size: .8rem; font-weight: 800; }

.knowledge { background: white; }
.knowledge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.knowledge-card { display: grid; grid-template-columns: 180px 1fr; min-height: 240px; border: 1px solid var(--line); }
.knowledge-card-large { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; min-height: 360px; }
.knowledge-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82); }
.knowledge-card div { align-self: center; padding: 28px; }
.knowledge-card h3 { margin: 0 0 10px; font-family: "Bitter", Georgia, serif; font-size: clamp(1.3rem, 2vw, 2rem); }
.knowledge-card p:last-child { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.faq { max-width: 900px; margin: 55px auto 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 48px 22px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 3px; top: 17px; color: var(--purple); font-size: 1.6rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; margin: -5px 0 24px; color: var(--ink-soft); }

.training-band { padding: 85px 0; background: var(--purple-deep); color: white; overflow: hidden; }
.training-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.training-band .eyebrow { color: #a7d8f0; }
.training-copy p:not(.eyebrow) { max-width: 650px; color: #d8cedc; }
.training-grid > img { width: 100%; max-height: 330px; object-fit: cover; background: white; border: 9px solid white; transform: rotate(1.5deg); box-shadow: 22px 22px 0 rgba(0,0,0,.18); }

.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-copy > p:not(.eyebrow):not(.contact-small) { color: var(--ink-soft); font-size: 1.05rem; }
.contact-direct { margin: 35px 0 14px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-direct span, .contact-direct a { display: block; }
.contact-direct span { color: var(--ink-soft); font-size: .75rem; }
.contact-direct a { margin-top: 2px; color: var(--purple); font-family: "Bitter", Georgia, serif; font-size: 1.35rem; }
.contact-small { color: var(--ink-soft); font-size: .75rem; }
.contact-form { padding: clamp(26px, 5vw, 45px); background: white; border-top: 7px solid var(--purple); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; font-size: .75rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #c8c5be; border-radius: 6px; background: #fbfaf7; color: var(--ink); padding: 12px 13px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(98,48,121,.1); background: white; }
.contact-form textarea { resize: vertical; }
.contact-form .button { width: 100%; }
.form-note { margin: 12px 0 0; color: var(--ink-soft); font-size: .68rem; text-align: center; }

.site-footer { padding: 75px 0 25px; background: var(--ink); color: white; }
.footer-main { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 70px; padding-bottom: 60px; }
.footer-brand img { width: 110px; max-height: 90px; object-fit: contain; background: white; }
.footer-brand p { max-width: 340px; margin-top: 19px; color: #bac8c3; font-size: .85rem; }
.site-footer h2 { margin-bottom: 17px; color: #9fd3ea; font-family: "Manrope", sans-serif; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a, .site-footer span { display: block; margin: 8px 0; color: #dbe4e1; font-size: .82rem; }
.site-footer a:hover { color: white; }
.footer-contact a { color: white; font-family: "Bitter", Georgia, serif; font-size: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-bottom span { color: #91a39d; font-size: .68rem; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
.service-grid .reveal:nth-child(2), .process-grid .reveal:nth-child(2), .sector-grid .reveal:nth-child(2) { transition-delay: .08s; }
.service-grid .reveal:nth-child(3), .process-grid .reveal:nth-child(3), .sector-grid .reveal:nth-child(3) { transition-delay: .16s; }
.process-grid .reveal:nth-child(4) { transition-delay: .24s; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

@media (max-width: 1080px) {
  .header-main { grid-template-columns: 100px 1fr auto; gap: 18px; }
  .header-cta { display: none; }
  .hero-grid, .choice-layout, .about-grid, .contact-grid { gap: 50px; }
  .trust-grid { grid-template-columns: 1fr repeat(4, .7fr); gap: 12px; }
  .service-card { grid-column: span 3; }
  .service-card:nth-child(4) { grid-column: span 3; }
  .service-card:nth-child(5) { grid-column: 2 / span 3; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-main { grid-template-columns: 1.3fr repeat(3, 1fr); gap: 35px; }
  .content-layout { grid-template-columns: minmax(0, 1fr) 290px; gap: 50px; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 95px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar ul { display: none; }
  .topbar-inner { justify-content: center; }
  .site-header { top: 0; }
  .header-main { min-height: 74px; grid-template-columns: 72px 1fr 46px; }
  .brand img { width: 67px; height: 58px; }
  .search-form input { height: 44px; font-size: .82rem; }
  .search-form button { width: 47px; height: 44px; }
  .menu-toggle { display: block; }
  .category-nav { display: none; position: absolute; top: 74px; left: 0; right: 0; border-top: 1px solid var(--line); box-shadow: var(--shadow); }
  .category-nav.is-open { display: block; }
  .nav-inner { display: grid; gap: 0; padding: 12px 14px 18px; background: white; }
  .nav-inner a { padding: 11px 8px; border-bottom: 1px solid #ece9e3; }
  .section { padding: 76px 0; }
  .section-heading { display: block; margin-bottom: 32px; }
  .section-heading > p { margin-top: 14px; }
  .hero { padding: 54px 0 65px; }
  .hero-grid, .choice-layout, .about-grid, .training-grid, .contact-grid { grid-template-columns: 1fr; }
  .page-hero-grid, .content-layout { grid-template-columns: 1fr; }
  .page-hero-visual img { height: 330px; }
  .page-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .page-overview-grid { grid-template-columns: 1fr; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .hero h1 { font-size: clamp(2.85rem, 13vw, 4.25rem); overflow-wrap: anywhere; }
  .hero-visual { min-height: 380px; margin: 10px 8px 0 18px; }
  .hero-visual img { height: 380px; }
  .hero-visual::before { inset: 18px -10px -15px 20px; }
  .hero-note { left: -18px; bottom: 18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-copy { grid-column: 1 / -1; text-align: center; }
  .trust-logo { height: 60px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:nth-child(4), .service-card:nth-child(5) { grid-column: auto; }
  .service-body > p:not(.card-label), .service-body ul { min-height: 0; }
  .choice-layout { gap: 55px; }
  .choice-result { box-shadow: 10px 10px 0 var(--purple); }
  .sector-grid { grid-template-columns: 1fr; }
  .sector-card { grid-template-rows: 220px 1fr; }
  .about-image { max-width: 570px; }
  .image-caption { right: 0; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .knowledge-card, .knowledge-card-large { grid-column: auto; grid-template-columns: 1fr; }
  .knowledge-card { grid-template-rows: 230px 1fr; }
  .training-grid { gap: 40px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .topbar { font-size: .68rem; }
  .header-main { grid-template-columns: 58px 1fr 44px; gap: 9px; }
  .brand img { width: 55px; }
  .search-form input { padding-left: 12px; padding-right: 43px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-facts li { text-align: center; border-radius: 6px; }
  .hero-visual { min-height: 300px; }
  .hero-visual img { height: 300px; border-width: 6px; }
  .hero-note { width: 78%; padding: 14px 16px; }
  .page-hero { padding: 42px 0 54px; }
  .page-hero-copy h1 { font-size: clamp(2.45rem, 12vw, 3.35rem); overflow-wrap: anywhere; }
  .page-hero-copy > p:not(.eyebrow) { font-size: 1rem; }
  .page-hero-actions { align-items: stretch; flex-direction: column; }
  .page-hero-actions .button { width: 100%; }
  .page-hero-visual { margin-inline: 4px; }
  .page-hero-visual img { height: 285px; border-width: 6px; }
  .page-tag { left: -4px; }
  .trust-grid { gap: 5px; }
  .trust-logo { padding: 5px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-grid li:last-child { border-bottom: 0; }
  .process-note { align-items: flex-start; flex-direction: column; gap: 5px; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts div { padding-bottom: 12px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px 18px; }
  .page-sidebar { grid-template-columns: 1fr; }
  .overview-card { grid-template-columns: 1fr; }
  .overview-card img { height: 210px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 4px; }
}

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