:root {
  --ink: #0b172a;
  --ink-soft: #14243b;
  --navy: #173b61;
  --blue: #2f72d6;
  --blue-dark: #1e5ab0;
  --cyan: #56c3cd;
  --orange: #f28b34;
  --paper: #f5f7fb;
  --white: #ffffff;
  --text: #182437;
  --muted: #5f6c7d;
  --line: #dbe2ec;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(11, 23, 42, 0.12);
  --container: 1180px;
  --radius: 20px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  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,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.75rem, 6.4vw, 5.3rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 700;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 700;
}

.container {
  width: min(calc(100% - 48px), 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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(11, 23, 42, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.brand-mark img {
  width: 26px;
  height: 30px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.84rem;
  font-weight: 600;
}

.primary-nav > a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 160ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible {
  color: var(--white);
}

.primary-nav .nav-contact {
  padding: 8px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 9px;
}

.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
}

.language-switch button {
  min-width: 34px;
  padding: 4px 6px;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 4px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 154px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(47, 114, 214, 0.3), transparent 32%),
    radial-gradient(circle at 16% 88%, rgba(86, 195, 205, 0.11), transparent 25%),
    var(--ink);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 92%);
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(280px, 0.52fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.eyebrow-dark {
  color: var(--blue-dark);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.02rem, 1.5vw, 1.19rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 5px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
  border-color: var(--white);
}

.availability {
  display: flex;
  margin: 27px 0 0;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.availability-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 7px;
  background: #4ed5a5;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(78, 213, 165, 0.1);
}

.hero-profile {
  position: relative;
  align-self: end;
}

.portrait-wrap {
  position: relative;
  width: min(100%, 340px);
  margin-left: auto;
}

.portrait-wrap::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 24px -24px -20px 28px;
  border: 1px solid rgba(86, 195, 205, 0.34);
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 0.78;
  object-fit: cover;
  object-position: 50% 24%;
  border-radius: 20px 20px 0 0;
  filter: saturate(0.84) contrast(1.04);
}

.portrait-accent {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 68%;
  height: 6px;
  background: var(--orange);
}

.profile-card {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  margin: -64px 0 0 -44px;
  padding: 21px 23px;
  color: var(--ink);
  background: var(--white);
  border-left: 5px solid var(--blue);
  box-shadow: var(--shadow);
}

.profile-card p {
  margin-bottom: 6px;
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.profile-card h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.profile-card span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.stats-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 86px;
  border-top: 1px solid var(--line-dark);
}

.stats-grid > div {
  display: flex;
  min-height: 134px;
  padding: 26px 24px 28px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line-dark);
}

.stats-grid > div:last-child {
  border-right: 1px solid var(--line-dark);
}

.stats-grid strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  line-height: 1.45;
}

.section {
  padding: 110px 0;
}

.section-light {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink);
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.expertise-card {
  position: relative;
  min-height: 410px;
  padding: 32px 29px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.expertise-card::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--blue);
  transition: width 220ms ease;
}

.expertise-card:hover {
  border-color: rgba(47, 114, 214, 0.36);
  box-shadow: 0 18px 50px rgba(11, 23, 42, 0.09);
  transform: translateY(-4px);
}

.expertise-card:hover::after {
  width: 100%;
}

.card-number {
  display: block;
  margin-bottom: 70px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
}

.expertise-card h3 {
  color: var(--ink);
  font-size: 1.5rem;
}

.expertise-card > p {
  color: var(--muted);
  font-size: 0.92rem;
}

.expertise-card ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.expertise-card li {
  position: relative;
  margin: 8px 0;
  padding-left: 18px;
  color: #435064;
  font-size: 0.82rem;
}

.expertise-card li::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

.impact-section {
  color: var(--white);
  background: var(--ink-soft);
}

.section-heading-dark h2 {
  color: var(--white);
}

.section-heading-dark > p {
  color: rgba(255, 255, 255, 0.58);
}

.case-list {
  border-top: 1px solid var(--line-dark);
}

.case-card {
  display: grid;
  grid-template-columns: 0.78fr 1.62fr 0.6fr;
  gap: 42px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line-dark);
}

.case-meta {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.case-meta > span {
  color: var(--cyan);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
}

.case-meta p {
  max-width: 170px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.5;
}

.case-content h3 {
  color: var(--white);
  font-size: 1.55rem;
}

.case-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.92rem;
}

.case-result {
  display: flex;
  align-self: center;
  flex-direction: column;
  padding-left: 28px;
  border-left: 1px solid var(--line-dark);
}

.case-result strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.case-result span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  line-height: 1.45;
}

.experience-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.experience-intro {
  position: sticky;
  top: 128px;
}

.experience-intro h2 {
  color: var(--ink);
}

.experience-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.dark-link {
  margin-top: 10px;
  color: var(--blue-dark);
  border-color: rgba(30, 90, 176, 0.32);
}

.dark-link:hover,
.dark-link:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  content: "";
  top: 10px;
  bottom: 16px;
  left: 4px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 30px;
  padding: 0 0 46px 28px;
}

.timeline-item::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--paper);
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.timeline-date {
  padding-top: 2px;
  color: var(--blue-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.timeline-content {
  padding-bottom: 29px;
  border-bottom: 1px solid var(--line);
}

.timeline-content h3 {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1.26rem;
}

.timeline-company {
  margin-bottom: 13px;
  color: var(--blue-dark);
  font-size: 0.79rem;
  font-weight: 700;
}

.timeline-content > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.timeline-item-compact .timeline-content {
  border-bottom: 0;
}

.newsage-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(242, 139, 52, 0.2), transparent 32%),
    linear-gradient(135deg, #0d233b 0%, #173b61 100%);
}

.newsage-section::before {
  position: absolute;
  content: "N";
  right: 2%;
  bottom: -28%;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: 34rem;
  font-weight: 800;
  line-height: 1;
}

.newsage-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 90px;
}

.newsage-label {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 16px;
}

.newsage-label > span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.newsage-label small {
  color: var(--orange);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.newsage-copy h2 {
  color: var(--white);
}

.newsage-copy > p {
  max-width: 670px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.65);
}

.newsage-pillars {
  border-top: 1px solid var(--line-dark);
}

.newsage-pillars article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.newsage-pillars article > span {
  padding-top: 4px;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
}

.newsage-pillars h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.08rem;
}

.newsage-pillars p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insight-card {
  display: flex;
  min-height: 320px;
  padding: 30px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.insight-card:hover,
a.insight-card:focus-visible {
  border-color: rgba(47, 114, 214, 0.4);
  box-shadow: 0 18px 50px rgba(11, 23, 42, 0.09);
  transform: translateY(-4px);
}

.insight-type {
  display: block;
  margin-bottom: 64px;
  color: var(--blue-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.insight-card h3 {
  color: var(--ink);
  font-size: 1.3rem;
}

.insight-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.card-link,
.coming-soon {
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.insight-card-upcoming {
  background: #eef2f7;
  border-style: dashed;
}

.insight-card-upcoming .insight-type,
.insight-card-upcoming .coming-soon {
  color: #7b8797;
}

.contact-section {
  padding: 90px 0;
  color: var(--white);
  background: var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: end;
  gap: 70px;
}

.contact-layout h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.62);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-meta {
  margin: 22px 0 0;
  font-size: 0.78rem;
}

.contact-meta a {
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: #08111f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid rgba(86, 195, 205, 0.75);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 14px;
  }

  .primary-nav > a {
    font-size: 0.78rem;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
    gap: 46px;
  }

  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .stats-grid > div {
    padding-inline: 16px;
  }

  .case-card {
    grid-template-columns: 0.64fr 1.36fr;
  }

  .case-result {
    grid-column: 2;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    padding-left: 0;
    border-left: 0;
  }

  .case-result strong {
    font-size: 2.1rem;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 70px;
    right: 18px;
    left: 18px;
    display: none;
    max-height: calc(100vh - 88px);
    padding: 24px;
    overflow: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    color: var(--white);
    background: rgba(11, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a {
    padding: 11px 4px;
    font-size: 0.94rem;
  }

  .primary-nav .nav-contact {
    margin-top: 6px;
    padding-inline: 12px;
    text-align: center;
  }

  .language-switch {
    width: max-content;
    margin-top: 14px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-profile {
    display: grid;
    grid-template-columns: minmax(180px, 0.55fr) minmax(240px, 0.45fr);
    align-items: end;
    gap: 0;
    margin-top: 16px;
  }

  .portrait-wrap {
    margin-left: 0;
  }

  .profile-card {
    width: auto;
    margin: 0 0 40px -24px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 48px;
  }

  .stats-grid > div:nth-child(4),
  .stats-grid > div:nth-child(5) {
    border-top: 1px solid var(--line-dark);
  }

  .stats-grid > div:nth-child(4) {
    grid-column: 1 / 2;
  }

  .section-heading,
  .experience-layout,
  .newsage-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .expertise-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card,
  .insight-card {
    min-height: 0;
  }

  .card-number,
  .insight-type {
    margin-bottom: 40px;
  }

  .experience-intro {
    position: static;
  }

  .newsage-layout {
    gap: 58px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy small {
    display: none;
  }

  .nav-shell {
    min-height: 70px;
  }

  .hero {
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: max-content;
  }

  .hero-profile {
    grid-template-columns: 1fr;
  }

  .portrait-wrap {
    width: calc(100% - 24px);
  }

  .portrait-wrap::before {
    right: -18px;
  }

  .profile-card {
    width: calc(100% - 10px);
    margin: -46px 0 0 10px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid > div {
    min-height: 116px;
  }

  .stats-grid > div:nth-child(3) {
    border-top: 1px solid var(--line-dark);
  }

  .stats-grid > div:nth-child(4) {
    grid-column: auto;
  }

  .stats-grid > div:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 1px solid var(--line-dark);
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .expertise-card,
  .insight-card {
    padding: 25px;
  }

  .case-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0;
  }

  .case-result {
    grid-column: 1;
    padding-top: 18px;
    border-top: 1px solid var(--line-dark);
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
