:root {
  --ink: #06101c;
  --ink-2: #091827;
  --panel: #0c1c2d;
  --panel-2: #102338;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #edf4fb;
  --muted: #a8b7c8;
  --muted-2: #73849a;
  --green: #30d67a;
  --green-deep: #1fb965;
  --cyan: #2cc7e8;
  --mint: #a7f3d0;
  --light: #f4f8fb;
  --light-text: #152337;
  --light-muted: #5d6b7c;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.30);
  --shell: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(48, 214, 122, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(48, 214, 122, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 75%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% -10%, rgba(44, 199, 232, 0.08), transparent 34%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.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: 18px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--green);
  color: #03200f;
  font-weight: 750;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 116px 0; position: relative; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 16, 28, 0.88);
  border-color: var(--line);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.nav-shell {
  width: min(calc(100% - 48px), var(--shell));
  height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); text-decoration: none; flex: 0 0 auto; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: var(--green); stroke-width: 1.9; stroke-linejoin: round; }
.brand-mark svg path:last-child { stroke: var(--cyan); }
.brand-word { font-size: 18px; font-weight: 780; letter-spacing: -.025em; }
.primary-nav { display: flex; align-items: center; gap: 31px; }
.primary-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color .2s ease;
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--text); }
.primary-nav .nav-button {
  padding: 10px 17px;
  color: #062010;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(48, 214, 122, .17);
}
.primary-nav .nav-button:hover { color: #06190e; background: #48e28b; }
.menu-toggle { display: none; }

.hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  padding: 170px 0 104px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 28, .98) 0%, rgba(6, 16, 28, .72) 46%, rgba(6, 16, 28, .20) 100%),
    radial-gradient(circle at 75% 33%, rgba(48, 214, 122, .10), transparent 34%);
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(100px); opacity: .15; pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; background: var(--green); left: -300px; top: 70px; }
.hero-glow-two { width: 420px; height: 420px; background: var(--cyan); right: -210px; bottom: 50px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 76px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(48,214,122,.10); }
.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(54px, 6.3vw, 86px);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 820;
}
.hero h1 span {
  display: block;
  margin-top: 10px;
  color: transparent;
  background: linear-gradient(105deg, var(--green) 2%, var(--cyan) 66%, #7da8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead { max-width: 660px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #041b0d; box-shadow: 0 14px 35px rgba(48, 214, 122, .18); }
.button-primary:hover { background: #49e28c; box-shadow: 0 18px 42px rgba(48, 214, 122, .24); }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.035); color: var(--text); }
.button-secondary:hover { background: rgba(255,255,255,.075); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 54px 0 0; padding: 0; border-top: 1px solid var(--line); }
.hero-proof div { padding: 22px 22px 0 0; }
.hero-proof dt { margin-bottom: 3px; color: var(--text); font-size: 13px; font-weight: 760; }
.hero-proof dd { margin: 0; color: var(--muted-2); font-size: 12px; line-height: 1.45; }

.hero-console { position: relative; min-height: 550px; display: flex; align-items: center; justify-content: center; }
.console-frame {
  width: 110%;
  margin-right: -18%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: #0b1929;
  box-shadow: 0 36px 90px rgba(0,0,0,.42), 0 0 0 8px rgba(255,255,255,.02);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
}
.console-bar { height: 44px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 15px; color: var(--muted-2); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.console-dots { display: flex; gap: 6px; }
.console-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.18); }
.console-dots span:first-child { background: var(--green); }
.console-live { justify-self: end; display: flex; align-items: center; gap: 6px; }
.console-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.console-frame img { width: 100%; aspect-ratio: 1491/683; object-fit: cover; }
.floating-card {
  position: absolute;
  width: 205px;
  padding: 17px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(11, 26, 43, .88);
  box-shadow: 0 20px 54px rgba(0,0,0,.36);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.floating-card-one { left: -25px; top: 64px; }
.floating-card-two { right: -25px; bottom: 30px; }
.floating-label { display: block; margin-bottom: 5px; color: var(--green); font-size: 9px; font-weight: 780; letter-spacing: .12em; text-transform: uppercase; }
.floating-card strong { display: block; color: var(--text); font-size: 20px; letter-spacing: -.03em; }
.floating-card small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(9,24,39,.62); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.trust-grid > div { position: relative; padding: 31px 34px 31px 56px; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid span { position: absolute; left: 0; top: 31px; color: var(--green); font-size: 11px; font-weight: 800; }
.trust-grid strong { display: block; margin-bottom: 3px; font-size: 14px; }
.trust-grid small { display: block; color: var(--muted-2); font-size: 12px; line-height: 1.5; }

.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.section-heading h2, .approach-copy h2, .team-intro h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.04;
  letter-spacing: -.048em;
  font-weight: 810;
}
.section-heading > p, .approach-copy > p, .team-intro > p, .contact-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.section-systems { background: linear-gradient(180deg, var(--ink) 0%, #081624 100%); }
.system-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  min-height: 590px;
  margin-bottom: 34px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}
.system-card:last-child { margin-bottom: 0; }
.system-krugreen { grid-template-columns: .9fr 1.1fr; }
.system-content { display: flex; flex-direction: column; justify-content: center; }
.system-index { margin-bottom: 34px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.system-content h3 { margin: 0; font-size: clamp(52px, 6vw, 78px); line-height: .95; letter-spacing: -.065em; }
.system-name { margin: 13px 0 24px; color: var(--cyan); font-size: 12px; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.system-description { margin: 0 0 27px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.feature-list { display: grid; gap: 10px; margin: 0 0 32px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 22px; color: #c6d2df; font-size: 13px; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 8px; border: 1px solid var(--green); border-radius: 2px; transform: rotate(45deg); }
.text-link { width: fit-content; color: var(--text); font-size: 13px; font-weight: 760; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.22); padding-bottom: 4px; }
.text-link span { color: var(--green); margin-left: 5px; }
.text-link:hover { border-color: var(--green); }
.system-visual { position: relative; min-height: 480px; }
.visual-frame { position: absolute; inset: 30px 0 auto 0; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 20px; background: #0a1727; box-shadow: var(--shadow); }
.visual-frame img { width: 100%; height: auto; }
.visual-frame-secondary { width: 58%; inset: auto auto 15px -35px; border-radius: 16px; }
.visual-frame-right { inset: auto -18px 16px auto; width: 58%; }
.visual-frame-wide { top: 50px; }

.section-approach { background: var(--light); color: var(--light-text); }
.approach-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: start; }
.section-approach .eyebrow { color: #0e9a51; }
.section-approach .eyebrow span { background: #14a45a; box-shadow: 0 0 0 6px rgba(20,164,90,.10); }
.approach-copy > p { margin-top: 26px; color: var(--light-muted); }
.approach-copy blockquote { margin: 42px 0 0; padding: 25px 0 0 25px; border-left: 2px solid #1eb566; color: #27384c; font-size: 18px; line-height: 1.65; font-weight: 630; }
.approach-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(21,35,55,.14); }
.approach-steps li { display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid rgba(21,35,55,.14); }
.approach-steps li > span { color: #159a54; font-size: 12px; font-weight: 800; }
.approach-steps strong { display: block; margin-bottom: 7px; font-size: 18px; letter-spacing: -.02em; }
.approach-steps p { margin: 0; color: var(--light-muted); font-size: 14px; line-height: 1.65; }

.section-services { background: #081624; }
.section-heading.compact { margin-bottom: 50px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { position: relative; min-height: 300px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.025); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(48,214,122,.30); background: rgba(255,255,255,.04); }
.service-card svg { width: 34px; height: 34px; margin: 42px 0 27px; fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-number { position: absolute; top: 26px; right: 28px; color: var(--muted-2); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin: 0 0 12px; font-size: 20px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.section-team { background: var(--ink); }
.team-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.team-intro { position: sticky; top: 120px; }
.team-intro > p { margin-top: 26px; }
.team-grid { display: grid; gap: 14px; }
.person-card { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 21px; min-height: 104px; padding: 19px 24px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.025); }
.person-initials { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(48,214,122,.24); border-radius: 15px; background: linear-gradient(145deg, rgba(48,214,122,.12), rgba(44,199,232,.07)); color: var(--green); font-size: 15px; font-weight: 800; letter-spacing: .04em; }
.person-card h3 { margin: 0 0 3px; font-size: 16px; letter-spacing: -.015em; }
.person-card p { margin: 0; color: var(--muted); font-size: 13px; }

.section-contact { padding-top: 30px; padding-bottom: 110px; }
.contact-panel { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; overflow: hidden; padding: 72px; border-radius: var(--radius-lg); background: linear-gradient(120deg, #1db762 0%, #29c87a 50%, #32c7bf 100%); color: #052113; box-shadow: 0 35px 85px rgba(0,0,0,.28); }
.contact-panel::after { content: ""; position: absolute; width: 520px; height: 520px; right: -190px; top: -260px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.025); }
.eyebrow-light { color: rgba(3,32,14,.70); }
.eyebrow-light span { background: #063b1d; box-shadow: 0 0 0 6px rgba(6,59,29,.10); }
.contact-copy, .contact-actions { position: relative; z-index: 1; }
.contact-copy h2 { max-width: 640px; }
.contact-copy > p { max-width: 620px; margin-top: 24px; color: rgba(4,37,17,.72); }
.contact-actions { display: grid; gap: 12px; }
.contact-actions a { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 16px 18px; border: 1px solid rgba(4,37,17,.15); border-radius: 14px; background: rgba(255,255,255,.21); color: #052113; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.contact-actions a:hover { background: rgba(255,255,255,.38); transform: translateX(3px); }
.contact-actions a span { grid-column: 1; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .58; }
.contact-actions a strong { grid-column: 1; font-size: 15px; }
.contact-actions a i { grid-column: 2; grid-row: 1 / 3; font-style: normal; font-size: 18px; }
.contact-actions > p { margin: 8px 0 0; color: rgba(4,37,17,.62); font-size: 12px; text-align: right; }

.site-footer { padding: 46px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; }
.brand-footer .brand-mark { width: 30px; height: 30px; }
.footer-grid > p { margin: 0; max-width: 450px; color: var(--muted-2); font-size: 12px; }
.footer-meta { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 20px; color: var(--muted-2); font-size: 11px; }
.footer-meta a { text-decoration: none; }
.footer-meta a:hover { color: var(--text); }

:focus-visible { outline: 3px solid rgba(48,214,122,.70); outline-offset: 3px; }

@media (max-width: 1040px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 760px; }
  .hero-console { width: min(820px, 100%); min-height: 510px; }
  .console-frame { width: 100%; margin: 0; transform: none; }
  .floating-card-one { left: 22px; }
  .floating-card-two { right: 22px; }
  .system-card { grid-template-columns: 1fr; }
  .system-visual { min-height: 480px; }
  .approach-grid, .team-layout { gap: 60px; }
  .contact-panel { gap: 48px; padding: 58px; }
}

@media (max-width: 820px) {
  .shell, .nav-shell { width: min(calc(100% - 36px), var(--shell)); }
  .site-header { background: rgba(6,16,28,.90); border-color: var(--line); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
  .nav-shell { height: 68px; }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 5px; padding: 0; border: 1px solid var(--line-strong); border-radius: 11px; background: rgba(255,255,255,.035); color: var(--text); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 19px; height: 1.5px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6.5px) rotate(-45deg); }
  .primary-nav { position: absolute; inset: 68px 18px auto; display: grid; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: rgba(8,22,36,.98); box-shadow: 0 24px 70px rgba(0,0,0,.42); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: 13px 14px; border-radius: 10px; }
  .primary-nav a:hover { background: rgba(255,255,255,.045); }
  .primary-nav .nav-button { margin-top: 6px; text-align: center; }
  .section { padding: 88px 0; }
  .hero { padding: 132px 0 88px; }
  .hero h1 { font-size: clamp(48px, 11vw, 72px); }
  .hero-console { min-height: 440px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid > div:last-child { border-bottom: 0; }
  .section-heading, .approach-grid, .team-layout, .contact-panel { grid-template-columns: 1fr; }
  .section-heading { gap: 26px; margin-bottom: 46px; }
  .system-card { padding: 38px; }
  .system-visual { min-height: 410px; }
  .approach-grid { gap: 52px; }
  .team-intro { position: static; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 245px; }
  .contact-panel { padding: 48px; }
  .contact-actions { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-meta { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .shell, .nav-shell { width: min(calc(100% - 28px), var(--shell)); }
  .brand-word { font-size: 17px; }
  .hero { padding-top: 118px; }
  .hero h1 { font-size: clamp(44px, 13vw, 58px); }
  .hero h1 span { margin-top: 7px; }
  .hero-lead { font-size: 16px; line-height: 1.7; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 38px; }
  .hero-proof div { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .hero-proof div:last-child { border-bottom: 0; }
  .hero-console { min-height: 320px; align-items: flex-start; margin-top: 6px; }
  .console-frame { border-radius: 15px; }
  .console-bar { height: 36px; font-size: 8px; }
  .floating-card { width: 150px; padding: 12px; border-radius: 12px; }
  .floating-card strong { font-size: 16px; }
  .floating-card small { font-size: 9px; }
  .floating-card-one { top: 135px; left: -4px; }
  .floating-card-two { right: -4px; bottom: 0; }
  .trust-grid > div { padding: 25px 10px 25px 45px; }
  .trust-grid span { top: 25px; }
  .section-heading h2, .approach-copy h2, .team-intro h2, .contact-copy h2 { font-size: clamp(35px, 10vw, 48px); }
  .system-card { padding: 28px 22px; border-radius: 22px; }
  .system-content h3 { font-size: 54px; }
  .system-index { margin-bottom: 24px; }
  .system-visual { min-height: 310px; }
  .visual-frame { top: 18px; border-radius: 13px; }
  .visual-frame-secondary { left: -6px; bottom: 2px; width: 63%; }
  .visual-frame-right { left: auto; right: -6px; }
  .section-approach { padding-top: 82px; }
  .approach-copy blockquote { margin-top: 30px; font-size: 16px; }
  .approach-steps li { grid-template-columns: 42px 1fr; gap: 12px; padding: 24px 0; }
  .service-card { padding: 27px; }
  .person-card { grid-template-columns: 54px 1fr; padding: 16px; }
  .person-initials { width: 50px; height: 50px; }
  .contact-panel { padding: 38px 24px; border-radius: 22px; }
  .contact-actions a { padding: 14px 15px; }
  .contact-actions a strong { font-size: 13px; }
  .contact-actions > p { text-align: left; }
  .site-footer { padding: 38px 0; }
}

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