:root {
  --ink: #0d1b2a;
  --ink-soft: #435167;
  --navy: #07111f;
  --navy-2: #0b1c31;
  --line: #dce4ec;
  --line-dark: rgba(255,255,255,.12);
  --paper: #ffffff;
  --mist: #f4f7fa;
  --accent: #2ee6a6;
  --accent-2: #71a7ff;
  --accent-3: #93ffd9;
  --shadow: 0 22px 70px rgba(8, 26, 46, .12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shell: min(1180px, calc(100% - 40px));
  --header-h: 82px;
  --font-body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 116px 0; }
.section-dark { background: var(--navy); color: white; }
.section-tint { background: var(--mist); }

h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.3rem, 7vw, 6.6rem); font-weight: 800; }
h2 { font-size: clamp(2.35rem, 4.8vw, 4.25rem); font-weight: 800; }
h3 { font-size: 1.35rem; font-weight: 700; }
p { margin: 0; color: var(--ink-soft); }
.section-dark p { color: #aebed0; }

.eyebrow {
  margin-bottom: 20px;
  color: #3d6672;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.eyebrow.light { color: var(--accent-3); }
.gradient-text {
  color: transparent;
  background: linear-gradient(110deg, var(--accent-3), var(--accent-2));
  background-clip: text;
  -webkit-background-clip: text;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #031711;
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(46, 230, 166, .2);
}
.button-primary:hover { background: #6df1c2; box-shadow: 0 14px 36px rgba(46, 230, 166, .28); }
.button-ghost { color: white; border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.button-small { min-height: 44px; padding-inline: 18px; font-size: .9rem; }
.button-full { width: 100%; }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-h);
  color: white;
  background: rgba(7, 17, 31, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--accent);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-copy { display: flex; flex-direction: column; font-family: var(--font-display); line-height: .95; letter-spacing: -.03em; }
.brand-copy strong { font-size: 1rem; }
.brand-copy span { margin-top: 5px; color: #91a5ba; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 34px); margin-left: auto; }
.desktop-nav a { color: #c9d4df; font-size: .9rem; font-weight: 600; transition: color .2s ease; }
.desktop-nav a:hover { color: white; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language-switcher { display: flex; gap: 6px; align-items: center; color: #617589; font-size: .77rem; font-weight: 800; }
.lang-btn { padding: 4px 2px; border: 0; background: none; color: #71859a; cursor: pointer; font-weight: 800; }
.lang-btn.is-active { color: white; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 17px; height: 1.5px; margin: 4px auto; background: white; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(2.7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-2.7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-h) 0 0; background: var(--navy); }
.mobile-menu nav { display: grid; gap: 8px; padding-top: 32px; }
.mobile-menu a:not(.button) { padding: 14px 0; color: white; border-bottom: 1px solid var(--line-dark); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.mobile-menu .button { margin-top: 18px; }

.hero { position: relative; min-height: calc(100vh - var(--header-h)); overflow: hidden; }
.hero-grid { position: relative; z-index: 2; min-height: calc(100vh - var(--header-h)); display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; padding-top: 86px; padding-bottom: 90px; }
.hero-copy { max-width: 700px; }
.hero h1 { max-width: 760px; }
.hero-lead { max-width: 650px; margin-top: 28px; font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; border-top: 1px solid var(--line-dark); }
.hero-proof div { padding: 20px 20px 0 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { margin-bottom: 3px; font-family: var(--font-display); font-size: .94rem; }
.hero-proof span { color: #7d91a7; font-size: .78rem; line-height: 1.4; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .22; }
.hero-orb-one { width: 430px; height: 430px; right: 4%; top: 16%; background: radial-gradient(circle, #2ee6a6 0%, transparent 68%); }
.hero-orb-two { width: 500px; height: 500px; right: -8%; bottom: -15%; background: radial-gradient(circle, #4b82ff 0%, transparent 70%); }
.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.hero-visual::before { content: ""; position: absolute; width: 390px; height: 390px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.hero-visual::after { content: ""; position: absolute; width: 510px; height: 510px; border: 1px dashed rgba(255,255,255,.08); border-radius: 50%; }
.system-card-main { position: relative; z-index: 3; width: min(330px, 76%); padding: 26px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: rgba(13, 31, 52, .82); box-shadow: 0 35px 90px rgba(0,0,0,.35); backdrop-filter: blur(16px); }
.system-card-label { color: #71859c; font-size: .68rem; font-weight: 800; letter-spacing: .16em; }
.system-score { display: flex; gap: 9px; align-items: center; margin-top: 14px; color: white; font-family: var(--font-display); font-weight: 700; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(46,230,166,.1); }
.mini-chart { height: 130px; display: flex; align-items: end; gap: 8px; margin: 26px 0 20px; padding: 18px 14px 0; background: linear-gradient(180deg, rgba(255,255,255,.03), transparent); border-bottom: 1px solid rgba(255,255,255,.1); }
.mini-chart span { flex: 1; min-height: 12px; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--accent), #1d7f70); }
.system-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.system-metrics div { padding: 10px 8px; border-radius: 10px; background: rgba(255,255,255,.04); }
.system-metrics span { display: block; color: #758ba1; font-size: .67rem; }
.system-metrics strong { color: var(--accent); font-size: 1.1rem; }
.orbit-card { position: absolute; z-index: 4; min-width: 126px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(10, 25, 43, .92); box-shadow: 0 12px 34px rgba(0,0,0,.22); }
.orbit-card span { display: block; color: var(--accent); font-size: .63rem; font-weight: 800; }
.orbit-card strong { display: block; margin-top: 2px; color: white; font-family: var(--font-display); font-size: .88rem; }
.orbit-one { top: 10%; left: 3%; }
.orbit-two { top: 18%; right: -2%; }
.orbit-three { bottom: 18%; right: 0; }
.orbit-four { bottom: 9%; left: 8%; }
.orbit-five { top: 45%; left: -5%; }

.capability-strip { border-bottom: 1px solid var(--line); background: var(--paper); }
.strip-grid { min-height: 74px; display: flex; gap: 28px; align-items: center; justify-content: space-between; overflow-x: auto; scrollbar-width: none; }
.strip-grid::-webkit-scrollbar { display: none; }
.strip-grid span { white-space: nowrap; color: #647386; font-size: .73rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.strip-grid span::before { content: "+"; margin-right: 7px; color: #0aaa77; }

.section-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.section-heading h2 { max-width: 780px; }
.section-heading > p { max-width: 500px; font-size: 1.04rem; }
.section-heading.narrow { grid-template-columns: 1.12fr .88fr; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 475px; padding: 38px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: #b9c8d6; box-shadow: var(--shadow); }
.service-number { display: inline-block; margin-bottom: 45px; color: #8b9bad; font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { font-size: 1.65rem; }
.service-card > p { max-width: 540px; margin-top: 13px; }
.service-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 22px; margin: 28px 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-list li { position: relative; padding-left: 16px; color: #33465a; font-size: .88rem; line-height: 1.4; }
.service-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: #1cb981; }
.service-card-featured { color: white; border-color: #193855; background: var(--navy-2); }
.service-card-featured p, .service-card-featured .service-list li { color: #b1c0cf; }
.service-card-featured .service-list { border-color: rgba(255,255,255,.12); }
.featured-tag { position: absolute; top: 30px; right: 30px; padding: 7px 10px; border: 1px solid rgba(46,230,166,.25); border-radius: 999px; color: var(--accent); background: rgba(46,230,166,.08); font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.services-footer { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.services-footer p { max-width: 690px; }

.process-grid { display: grid; grid-template-columns: repeat(5,1fr); border-top: 1px solid #ccd7e1; }
.process-step { min-height: 260px; padding: 28px 25px 10px 0; border-right: 1px solid #d7e0e8; }
.process-step:not(:first-child) { padding-left: 25px; }
.process-step:last-child { border-right: 0; }
.process-step > span { display: inline-block; margin-bottom: 64px; color: #57a896; font-size: .7rem; font-weight: 800; }
.process-step h3 { margin-bottom: 12px; }
.process-step p { font-size: .9rem; }

.technology-section { overflow: hidden; }
.technology-section .section-heading > p { color: #aebed0; }
.tech-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; }
.tech-rail { display: grid; align-content: start; }
.tech-tab { width: 100%; padding: 18px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); background: transparent; color: #73889e; text-align: left; cursor: pointer; font-weight: 700; transition: color .2s ease, padding .2s ease; }
.tech-tab::before { content: ""; display: inline-block; width: 0; height: 1px; margin-right: 0; vertical-align: middle; background: var(--accent); transition: width .2s ease, margin .2s ease; }
.tech-tab.is-active { color: white; }
.tech-tab.is-active::before { width: 20px; margin-right: 10px; }
.tech-panel { min-height: 350px; padding: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); }
.tech-cloud { display: none; grid-template-columns: repeat(4,1fr); gap: 12px; }
.tech-cloud.is-active { display: grid; }
.tech-cloud span { min-height: 92px; display: flex; align-items: flex-end; padding: 15px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; color: #d7e1eb; background: rgba(4,15,27,.35); font-family: var(--font-display); font-size: .85rem; font-weight: 700; }
.tech-note { margin-top: 30px; color: #60758b !important; font-size: .72rem; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.about-copy { position: sticky; top: calc(var(--header-h) + 38px); }
.about-copy h2 { margin-bottom: 25px; }
.large-copy { font-size: 1.17rem; line-height: 1.6; color: #24374a; }
.about-copy > p + p { margin-top: 18px; }
.about-copy .text-link { margin-top: 28px; }
.principles-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.principles-grid article { min-height: 255px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fbfcfd; }
.principles-grid article > span { display: inline-block; margin-bottom: 48px; color: #5a9f8d; font-size: .7rem; font-weight: 800; }
.principles-grid h3 { margin-bottom: 10px; }
.principles-grid p { font-size: .9rem; }

.outcomes-section .eyebrow { margin-bottom: 38px; }
.outcomes-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #ccd8e2; border-left: 1px solid #ccd8e2; }
.outcome { min-height: 245px; padding: 30px; border-right: 1px solid #ccd8e2; border-bottom: 1px solid #ccd8e2; }
.outcome > span { display: inline-block; margin-bottom: 45px; color: #23836d; font-family: var(--font-display); font-size: 1.4rem; }
.outcome h3 { margin-bottom: 10px; }
.outcome p { font-size: .9rem; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-intro h2 { max-width: 520px; }
.faq-intro p { max-width: 500px; margin-top: 24px; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 24px 52px 24px 0; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 20px; color: #628072; font-family: var(--font-body); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 50px 24px 0; }

.contact-section { padding: 116px 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-copy h2 { max-width: 620px; }
.contact-copy > p { max-width: 560px; margin-top: 25px; font-size: 1.06rem; }
.contact-points { margin-top: 46px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-points div { display: grid; grid-template-columns: 42px 1fr; gap: 10px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.contact-points span { color: var(--accent); font-size: .68rem; font-weight: 800; }
.contact-points p { font-size: .87rem; }
.contact-form { padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: #0c1d31; box-shadow: 0 24px 80px rgba(0,0,0,.22); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; color: #d9e2eb; font-size: .82rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; outline: none; color: white; background: #071522; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input, .contact-form select { height: 48px; padding: 0 14px; }
.contact-form textarea { resize: vertical; min-height: 130px; padding: 13px 14px; }
.contact-form select option { color: var(--ink); background: white; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(46,230,166,.65); box-shadow: 0 0 0 3px rgba(46,230,166,.08); }
.contact-form [aria-invalid="true"] { border-color: #ff8f8f; }
.form-note { margin-top: 12px; color: #71869b !important; font-size: .7rem; text-align: center; }
.form-status { min-height: 20px; margin-top: 8px; color: var(--accent-3); font-size: .8rem; text-align: center; }

.site-footer { padding: 54px 0 24px; color: #afbdca; background: #040b13; }
.footer-top { display: grid; grid-template-columns: .65fr 1fr .7fr; gap: 50px; align-items: start; padding-bottom: 46px; }
.brand-footer { color: white; }
.footer-top > p { max-width: 430px; color: #8495a7; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 24px; justify-self: end; }
.footer-links a { color: #aebccc; font-size: .86rem; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: #556778; font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 14px; }
  .hero-visual { min-height: 500px; max-width: 650px; width: 100%; margin: -20px auto 0; }
  .section-heading { gap: 50px; }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .process-step:nth-child(3) { border-right: 0; }
  .process-step:nth-child(n+4) { border-top: 1px solid #d7e0e8; }
  .tech-cloud { grid-template-columns: repeat(2,1fr); }
  .about-grid, .faq-grid, .contact-grid { gap: 55px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 30px, 700px); --header-h: 72px; }
  .section { padding: 86px 0; }
  .desktop-cta { display: none; }
  .header-actions { gap: 12px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding-top: 70px; padding-bottom: 60px; gap: 40px; }
  .hero-proof { grid-template-columns: 1fr; gap: 0; }
  .hero-proof div { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .hero-visual { min-height: 430px; }
  .hero-visual::before { width: 300px; height: 300px; }
  .hero-visual::after { width: 395px; height: 395px; }
  .orbit-card { min-width: 105px; padding: 10px 12px; }
  .section-heading, .section-heading.narrow { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
  .section-heading > p { max-width: 620px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-step:nth-child(2), .process-step:nth-child(4) { border-right: 0; }
  .process-step:nth-child(3) { border-right: 1px solid #d7e0e8; }
  .process-step:nth-child(n+3) { border-top: 1px solid #d7e0e8; }
  .process-step:last-child { grid-column: 1 / -1; }
  .tech-layout { grid-template-columns: 1fr; }
  .tech-rail { display: flex; overflow-x: auto; scrollbar-width: none; }
  .tech-tab { min-width: max-content; padding: 14px 18px 14px 0; margin-right: 16px; }
  .tech-tab.is-active::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { position: static; }
  .outcomes-grid { grid-template-columns: repeat(2,1fr); }
  .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.85rem, 15vw, 4rem); }
  h2 { font-size: clamp(2.05rem, 11vw, 3rem); }
  .language-switcher { gap: 4px; }
  .brand-copy span { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 390px; margin-top: 10px; transform: scale(.96); }
  .system-card-main { width: 72%; padding: 20px; }
  .mini-chart { height: 100px; }
  .orbit-one { left: -2%; }
  .orbit-two { right: -3%; }
  .orbit-three { right: -2%; }
  .orbit-four { left: 2%; }
  .orbit-five { display: none; }
  .service-card { padding: 28px 23px; }
  .service-list { grid-template-columns: 1fr; }
  .featured-tag { top: 24px; right: 22px; }
  .services-footer { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; border-top: 0; }
  .process-step, .process-step:not(:first-child) { min-height: auto; padding: 22px 0; border-right: 0 !important; border-top: 1px solid #d7e0e8; }
  .process-step > span { margin-bottom: 26px; }
  .process-step:last-child { grid-column: auto; }
  .tech-panel { padding: 22px; }
  .tech-cloud { grid-template-columns: 1fr; }
  .tech-cloud span { min-height: 68px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article { min-height: 220px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .footer-top > p { grid-column: auto; grid-row: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
