:root {
    --blue: #066bc9;
    --blue-dark: #034f9c;
    --navy: #071d31;
    --navy-soft: #17344e;
    --sky: #edf7ff;
    --line: #dce7ef;
    --muted: #465866;
    --white: #fff;
    --surface: #f7fafc;
    --shadow: 0 12px 34px rgba(8, 37, 62, .11);
    --radius: 10px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--navy);
    background: var(--white);
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -.028em; }
.site-container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 999; padding: 10px 16px; color: #fff; background: var(--navy); border-radius: 5px; }
.skip-link:focus { top: 12px; }
.icon { display: inline-block; flex: 0 0 auto; vertical-align: middle; }

.site-header { position: sticky; top: 0; z-index: 50; min-height: 126px; background: rgba(255,255,255,.97); border-bottom: 1px solid transparent; transition: box-shadow .25s, border-color .25s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 7px 24px rgba(5,31,53,.07); }
.header-inner { min-height: 126px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; justify-content: center; align-self: stretch; flex: 0 0 auto; overflow: hidden; }
.brand-logo { object-fit: contain; object-position: center; }
.header-inner .brand-logo { width: 188px; height: 117px; }
.desktop-nav { align-self: stretch; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.2vw, 34px); margin-left: auto; }
.desktop-nav > a, .nav-dropdown > a { height: 100%; display: inline-flex; align-items: center; position: relative; font-size: 14px; font-weight: 600; white-space: nowrap; }
.desktop-nav > a::after, .nav-dropdown > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 30px; height: 2px; background: var(--blue); transition: right .2s; }
.desktop-nav > a:hover, .desktop-nav > a.active, .nav-dropdown > a:hover, .nav-dropdown > a.active { color: var(--blue); }
.desktop-nav > a:hover::after, .desktop-nav > a.active::after, .nav-dropdown > a:hover::after, .nav-dropdown > a.active::after { right: 0; }
.nav-dropdown { align-self: stretch; display: flex; align-items: center; position: relative; }
.dropdown-menu { position: absolute; top: calc(100% - 15px); left: -22px; width: 280px; padding: 10px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); visibility: hidden; opacity: 0; transform: translateY(8px); transition: .2s; }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 5px; font-size: 13px; }
.dropdown-menu a:hover { background: var(--sky); color: var(--blue); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { visibility: visible; opacity: 1; transform: none; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 24px; border: 1px solid transparent; border-radius: 5px; font-size: 14px; font-weight: 700; cursor: pointer; transition: color .2s, background .2s, border-color .2s, transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: white; background: linear-gradient(135deg, #0876db, #0558aa); box-shadow: 0 7px 18px rgba(6,107,201,.2); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 9px 24px rgba(6,107,201,.28); }
.button-outline { color: var(--blue); border-color: var(--blue); background: white; }
.button-outline:hover { color: white; background: var(--blue); }
.button-white { color: var(--blue-dark); background: white; border-color: white; }
.header-cta { min-width: 150px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy); transition: .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { position: fixed; inset: 108px 0 0; padding: 28px 24px; background: white; overflow: auto; }
.mobile-nav a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 600; }
.mobile-nav .button { margin-top: 18px; color: white; }

.section { padding: 80px 0; }
.section-soft { background: linear-gradient(180deg, #f7fbff, #edf6fd); }
.section-label { display: block; margin-bottom: 8px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.section-label.center, .section-title.center, .section-intro.center { text-align: center; }
.section-title { margin-bottom: 16px; font-size: clamp(28px, 3vw, 39px); }
.section-title.compact { font-size: clamp(24px, 2.5vw, 33px); }
.section-intro { max-width: 690px; margin-bottom: 0; color: var(--muted); }
.section-intro.center { margin-inline: auto; }
.section-head { margin-bottom: 42px; }
.eyebrow-rule { width: 42px; height: 2px; margin: 8px auto 13px; background: var(--blue); }

.hero { position: relative; min-height: 465px; display: grid; align-items: center; overflow: hidden; background: #f4f8fb; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.94) 36%, rgba(255,255,255,.22) 63%, rgba(255,255,255,.02) 100%), url("images/advisory.jpg"); background-size: cover; background-position: center right; }
.hero::after { content: ""; position: absolute; inset: auto auto -120px -80px; width: 620px; height: 250px; background: radial-gradient(ellipse, rgba(40,139,218,.11), transparent 70%); }
.hero-inner { position: relative; z-index: 1; padding-block: 76px; }
.hero-copy { max-width: 520px; }
.hero h1 { margin-bottom: 18px; font-size: clamp(42px, 5.5vw, 65px); font-weight: 800; }
.hero h1 span { display: block; color: var(--blue); }
.hero p { max-width: 500px; color: #334659; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.hero-logo-watermark { display: none; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { min-height: 245px; display: flex; flex-direction: column; padding: 24px 18px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 5px 14px rgba(20,56,80,.06); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-5px); border-color: #a7d3f5; box-shadow: var(--shadow); }
.service-icon { height: 48px; color: var(--blue); }
.service-card h3 { min-height: 42px; margin: 13px 0 10px; font-size: 18px; }
.service-card p { margin-bottom: 15px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.card-arrow { margin-top: auto; display: flex; justify-content: flex-end; color: var(--blue-dark); }
.home-services { padding-bottom: 40px; }
.home-why { padding-top: 40px; }
.home-why .why-copy { padding-top: 0; }

.why-grid { display: grid; grid-template-columns: .78fr 1.35fr; align-items: center; gap: 55px; }
.why-copy { padding: 45px 0 65px; }
.why-copy h2 { font-size: clamp(30px, 3.4vw, 42px); }
.why-copy > p { color: var(--muted); }
.check-list { display: grid; gap: 10px; margin: 25px 0 28px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.check-list .icon { color: var(--blue); }
.why-visual { position: relative; min-height: 410px; }
.why-visual img { width: 100%; height: 340px; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow); }
.office-brand { position: absolute; left: 50%; top: 41%; transform: translate(-50%,-50%); width: 145px; height: 145px; display: grid; place-content: center; border: 6px solid rgba(4,105,199,.82); border-radius: 50%; color: var(--blue-dark); background: rgba(255,255,255,.9); box-shadow: 0 7px 24px rgba(7,51,82,.18); text-align: center; font-weight: 800; line-height: 1.1; }
.office-brand small { font-size: 10px; font-weight: 600; }
.stats-card { position: absolute; left: -110px; right: 0; bottom: 8px; display: grid; grid-template-columns: repeat(4, 1fr); padding: 18px 5px; border: 1px solid var(--line); border-radius: 9px; background: white; box-shadow: var(--shadow); }
.stat { display: grid; grid-template-columns: auto auto; justify-content: center; align-items: center; gap: 9px; padding: 4px 18px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .icon { grid-row: span 2; color: var(--blue); }
.stat strong { color: var(--blue); font-size: 21px; line-height: 1; }
.stat small { font-size: 12px; white-space: nowrap; }

.industry-strip { display: grid; grid-template-columns: repeat(8, 1fr); margin-top: 38px; }
.industry-item { padding: 8px 10px 5px; text-align: center; border-right: 1px solid var(--line); }
.industry-item:last-child { border-right: 0; }
.industry-item .icon { color: var(--blue); transition: transform .2s; }
.industry-item:hover .icon { transform: translateY(-4px); }
.industry-item span { display: block; margin-top: 7px; font-size: 12px; font-weight: 600; }
.home-industries { padding-bottom: 38px; }
.home-insights { padding-top: 38px; }

.testimonials { padding: 52px 0; background: linear-gradient(130deg, #eef8ff, #fafdff 58%, #eaf4fb); }
.testimonial-shell { display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; gap: 30px; max-width: 940px; margin: 20px auto 0; }
.testimonial-card { min-height: 126px; display: grid; grid-template-columns: 40px 1fr; padding: 24px 35px; border: 1px solid var(--line); border-radius: 11px; background: white; box-shadow: 0 9px 24px rgba(20,56,80,.1); }
.testimonial-card .quote-icon { color: var(--blue); }
.testimonial-slide { display: none; text-align: center; }
.testimonial-slide.active { display: block; animation: testimonial-in .35s ease both; }
.testimonial-slide p { margin-bottom: 10px; font-size: 17px; }
.testimonial-slide strong, .testimonial-slide small { display: block; }
.testimonial-slide small { color: var(--muted); font-size: 13px; }
.slider-button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; color: var(--blue); border: 1px solid var(--blue); border-radius: 50%; background: transparent; cursor: pointer; }
.slider-button:hover { color: white; background: var(--blue); }
[data-prev] .icon { transform: rotate(180deg); }
.slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 17px; }
.slider-dot { width: 8px; height: 8px; padding: 0; border: 1px solid var(--blue); border-radius: 50%; background: transparent; cursor: pointer; }
.slider-dot.active { background: var(--blue); }
@keyframes testimonial-in { from { opacity: 0; transform: translateY(4px); } }

.insights-layout { display: grid; grid-template-columns: repeat(3, 1fr) .65fr; gap: 26px; align-items: center; }
.insight-card { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: white; box-shadow: 0 5px 14px rgba(20,56,80,.06); }
.insight-card img { width: 100%; height: 132px; object-fit: cover; }
.insight-body { padding: 14px 15px 16px; }
.insight-date { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; }
.insight-card h3 { min-height: 48px; margin: 8px 0 8px; font-size: 16px; }
.read-link { color: var(--blue); font-size: 13px; font-weight: 800; }

.consultation-band { color: white; background: linear-gradient(90deg, #0879db, #075bb4); }
.consultation-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.consultation-copy { display: flex; align-items: center; gap: 18px; }
.consultation-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 6px; background: rgba(255,255,255,.12); }
.consultation-copy strong, .consultation-copy small { display: block; }
.consultation-copy strong { font-size: 18px; }
.consultation-copy small { color: rgba(255,255,255,.78); font-size: 13px; }
.consultation-band .button { min-width: 185px; }

.site-footer { color: var(--muted); background: white; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr 1.65fr; gap: 45px; padding-top: 42px; padding-bottom: 30px; }
.site-footer h2 { margin-bottom: 13px; color: var(--navy); font-size: 15px; letter-spacing: 0; }
.site-footer p, .site-footer a, .site-footer li { font-size: 13px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer a:hover { color: var(--blue); }
.brand-footer { color: var(--navy); }
.footer-logo { width: 216px; height: 134px; }
.footer-brand p { max-width: 245px; margin: 16px 0; }
.social-links a { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); border: 1px solid #b7d9f5; border-radius: 50%; font-weight: 800; }
.footer-contact li { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 8px; }
.footer-contact .icon { margin-top: 1px; color: var(--blue); }
.footer-bottom { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); font-size: 12px; }
.footer-bottom span:last-child { display: flex; gap: 24px; }

.page-hero { padding: 85px 0 72px; background: linear-gradient(125deg, #f6fbff, #e9f4fc); border-bottom: 1px solid var(--line); }
.page-hero-inner { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 70px; }
.page-hero h1 { max-width: 780px; margin-bottom: 18px; font-size: clamp(40px, 5vw, 60px); }
.page-hero p { max-width: 660px; margin-bottom: 0; color: var(--muted); font-size: 16px; }
.page-hero-image { height: 300px; object-fit: cover; border-radius: 10px; box-shadow: var(--shadow); }
.breadcrumb { margin-bottom: 16px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumb a:hover { text-decoration: underline; }

.content-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; }
.content-grid img { border-radius: 10px; box-shadow: var(--shadow); }
.content-copy p { color: var(--muted); }
.numbers-band { color: white; background: var(--navy); }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.number-item { padding: 46px 30px; border-right: 1px solid rgba(255,255,255,.13); text-align: center; }
.number-item:last-child { border: 0; }
.number-item strong { display: block; color: #77bdff; font-size: 42px; }
.number-item span { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.value-card { padding: 30px; border-top: 3px solid var(--blue); background: var(--surface); }
.value-card h3 { font-size: 21px; }
.value-card p { margin: 0; color: var(--muted); }

.service-list { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 55px 1.15fr 1fr 30px; align-items: center; gap: 28px; padding: 30px 16px; border-bottom: 1px solid var(--line); transition: background .2s, padding .2s; }
.service-row:hover { padding-inline: 25px; background: var(--sky); }
.service-row-number { color: var(--blue); font-size: 14px; font-weight: 800; }
.service-row h2 { margin: 0; font-size: clamp(22px, 2.5vw, 33px); }
.service-row p { margin: 0; color: var(--muted); font-size: 15px; }
.service-row > .icon { color: var(--blue); }

.service-detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: start; gap: 70px; }
.service-copy p { color: var(--muted); font-size: 16px; }
.service-sections { display: grid; gap: 42px; margin-top: 48px; }
.service-content-section { padding-top: 30px; border-top: 1px solid var(--line); }
.service-content-section > h2 { margin-bottom: 24px; font-size: clamp(23px, 2.5vw, 31px); }
.service-feature-list { display: grid; gap: 20px; }
.service-feature { display: grid; grid-template-columns: 32px 1fr; gap: 12px; }
.service-feature > span { width: 32px; height: 32px; display: grid; place-items: center; color: var(--blue); border-radius: 50%; background: var(--sky); }
.service-feature h3 { margin: 3px 0 6px; font-size: 17px; letter-spacing: -.015em; }
.service-feature p { margin: 0; font-size: 14px; line-height: 1.75; }
.offering-card { position: sticky; top: 125px; padding: 38px; color: white; background: var(--navy); border-radius: 8px; }
.offering-card h2 { color: white; }
.offering-card ul { display: grid; gap: 14px; margin: 24px 0 30px; padding: 0; list-style: none; }
.offering-card li { display: flex; gap: 10px; font-size: 13px; }
.offering-card .icon { color: #73bcff; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { padding: 25px; border: 1px solid var(--line); border-radius: 8px; }
.related-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.related-card h3 { font-size: 18px; }
.related-card p { color: var(--muted); font-size: 14px; }

.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { min-height: 190px; display: grid; align-content: center; justify-items: center; padding: 28px; border: 1px solid var(--line); border-radius: 8px; text-align: center; transition: .25s; }
.industry-card .icon { color: var(--blue); }
.industry-card h2 { margin: 16px 0 0; font-size: 19px; }
.industry-card:hover { color: white; border-color: var(--blue); background: var(--blue); transform: translateY(-4px); }
.industry-card:hover h2, .industry-card:hover .icon { color: white; }

.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.resource-grid .insight-card img { height: 220px; }
.resource-grid .insight-card h2 { font-size: 20px; }
.resource-grid .insight-body { padding: 22px; }
.resource-grid .insight-date { font-size: 13px; }
.resource-grid .read-link { font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-details { display: grid; gap: 20px; margin-top: 28px; }
.contact-item { display: grid; grid-template-columns: 40px 1fr; gap: 13px; align-items: start; }
.contact-item > span { width: 40px; height: 40px; display: grid; place-items: center; color: var(--blue); border-radius: 50%; background: var(--sky); }
.contact-item strong, .contact-item small { display: block; }
.contact-item strong { margin-bottom: 3px; font-size: 15px; }
.contact-item small, .contact-item a { color: var(--muted); font-size: 14px; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: 10px; background: white; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; color: var(--navy); border: 1px solid #cbd9e4; border-radius: 5px; outline: 0; background: #fbfdff; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(6,107,201,.12); }
.field textarea { min-height: 145px; resize: vertical; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.alert { margin-bottom: 22px; padding: 13px 16px; border-radius: 6px; font-size: 15px; }
.alert-success { color: #126331; border: 1px solid #a8dfbb; background: #eaf8ef; }
.alert-error { color: #8a2631; border: 1px solid #efb9bf; background: #fff1f2; }
.form-errors { margin: 0; padding-left: 18px; }

.career-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 42px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.career-panel h2 { font-size: 28px; }
.career-panel p { margin: 0; color: var(--muted); }
.legal-copy { max-width: 850px; }
.legal-copy h2 { margin-top: 35px; }
.legal-copy p, .legal-copy li { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

@media (max-width: 1120px) {
    .header-inner .brand-logo { width: 166px; height: 103px; }
    .desktop-nav { gap: 17px; }
    .desktop-nav > a, .nav-dropdown > a { font-size: 13px; }
    .header-cta { min-width: auto; padding-inline: 17px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-card { left: -60px; }
}

@media (max-width: 900px) {
    .site-header, .header-inner { min-height: 100px; }
    .header-inner .brand-logo { width: 150px; height: 93px; }
    .footer-logo { width: 188px; height: 117px; }
    .desktop-nav, .header-cta { display: none; }
    .menu-toggle { display: block; }
    .mobile-nav { inset-block-start: 88px; }
    .hero { min-height: 560px; align-items: end; }
    .hero::before { background-image: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.93) 43%, #fff 75%), url("images/advisory.jpg"); background-position: center; }
    .hero-inner { padding-top: 230px; padding-bottom: 60px; }
    .hero-copy { max-width: 650px; }
    .why-grid, .content-grid, .service-detail-grid, .contact-grid, .page-hero-inner { grid-template-columns: 1fr; }
    .why-copy { padding-bottom: 0; }
    .why-visual { min-height: 440px; }
    .stats-card { left: 20px; right: 20px; }
    .industry-strip { grid-template-columns: repeat(4, 1fr); gap: 24px 0; }
    .industry-item:nth-child(4) { border-right: 0; }
    .insights-layout { grid-template-columns: repeat(3, 1fr); }
    .insights-layout > .button { grid-column: 1 / -1; justify-self: center; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero-image { display: none; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .site-container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 58px 0; }
    .home-services { padding-bottom: 30px; }
    .home-why { padding-top: 30px; }
    .home-industries { padding-bottom: 28px; }
    .home-insights { padding-top: 28px; }
    .hero h1 { font-size: 40px; }
    .hero-actions .button { flex: 1; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 0; }
    .why-visual { min-height: 560px; }
    .why-visual img { height: 275px; }
    .office-brand { width: 112px; height: 112px; font-size: 12px; }
    .stats-card { left: 0; right: 0; bottom: 0; grid-template-columns: repeat(2, 1fr); }
    .stat { padding: 16px 10px; border-bottom: 1px solid var(--line); }
    .stat:nth-child(2) { border-right: 0; }
    .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; }
    .industry-strip { grid-template-columns: repeat(2, 1fr); }
    .industry-item:nth-child(even) { border-right: 0; }
    .testimonial-shell { grid-template-columns: 1fr; }
    .testimonial-card { grid-row: 1; grid-column: 1; padding: 24px 20px; }
    .slider-button { display: none; }
    .insights-layout, .resource-grid { grid-template-columns: 1fr; }
    .insight-card img { height: 190px; }
    .consultation-inner { padding-block: 22px; flex-direction: column; align-items: stretch; }
    .consultation-band .button { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { padding-block: 15px; flex-direction: column; align-items: flex-start; }
    .page-hero { padding: 60px 0; }
    .page-hero h1 { font-size: 38px; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .number-item:nth-child(2) { border-right: 0; }
    .number-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
    .values-grid, .related-grid, .industry-grid { grid-template-columns: 1fr; }
    .service-row { grid-template-columns: 40px 1fr 24px; gap: 10px; }
    .service-row p { grid-column: 2 / -1; }
    .offering-card, .contact-form { padding: 26px 20px; }
    .form-grid { grid-template-columns: 1fr; gap: 0; }
    .career-panel { grid-template-columns: 1fr; padding: 28px; }
}

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

/* Services page legal disclaimer */
.services-disclaimer {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted, #64748b);
    font-style: italic;
}

/* Google reviews */
.google-reviews { background: var(--soft, #f4f8fb); }
.gr-summary { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 26px; margin: 26px 0 34px; }
.gr-summary-score { text-align: left; }
.gr-summary-top { display: flex; align-items: center; gap: 10px; }
.gr-summary-top strong { font-size: 30px; font-weight: 800; color: var(--navy); line-height: 1; }
.gr-summary-score small { display: block; margin-top: 5px; font-size: 13px; color: var(--muted); }
.gr-stars { display: inline-block; vertical-align: middle; }
.gr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gr-card { display: flex; flex-direction: column; gap: 11px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: var(--radius, 12px); box-shadow: 0 5px 14px rgba(20,56,80,.06); }
.gr-card-head { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 12px; }
.gr-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.gr-avatar-initial { display: grid; place-content: center; background: var(--blue); color: #fff; font-weight: 700; font-size: 18px; text-transform: uppercase; }
.gr-meta { min-width: 0; }
.gr-meta strong { display: block; font-size: 15px; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-meta small { font-size: 12px; color: var(--muted); }
.gr-card p { margin: 0; font-size: 14px; line-height: 1.65; color: var(--navy-soft, #17344e); display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }

@media (max-width: 900px) { .gr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .gr-grid { grid-template-columns: 1fr; } }
