:root {
  --ink: #071a27;
  --ink-2: #102b3b;
  --navy: #041522;
  --navy-2: #071e2d;
  --blue: #2f9cff;
  --cyan: #4fe0ff;
  --mint: #83f1bf;
  --violet: #9e8cff;
  --paper: #f5f8fa;
  --white: #ffffff;
  --text: #183241;
  --muted: #657883;
  --line: #dce5e9;
  --line-dark: rgba(255, 255, 255, 0.12);
  --success: #16845c;
  --error: #c23d4b;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-soft: 0 18px 60px rgba(5, 26, 36, 0.08);
  --shadow-button: 0 2px 4px rgba(3, 18, 28, 0.12), 0 10px 30px rgba(3, 18, 28, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 14px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
h2 { font-size: clamp(42px, 5.2vw, 76px); line-height: .98; font-weight: 650; }
p { color: var(--text); }

.button {
  --button-bg: var(--ink);
  --button-color: var(--white);
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-color);
  font-size: 14px;
  font-weight: 700;
  box-shadow: var(--shadow-button);
  transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(255,255,255,.16), transparent 80%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease);
}
.button:hover::before { transform: translateX(120%); }
.button:hover { transform: translateY(-2px); box-shadow: 0 4px 6px rgba(3,18,28,.12), 0 16px 42px rgba(3,18,28,.22), inset 0 1px 0 rgba(255,255,255,.24); }
.button:active { transform: translateY(0); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button-small { min-height: 44px; padding: 0 19px; font-size: 13px; }
.button-ghost { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); box-shadow: none; backdrop-filter: blur(10px); }
.button-light { background: var(--white); color: var(--ink); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(79,224,255,.6); outline-offset: 3px; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  padding: 14px 0;
  transition: padding .35s var(--ease), background .35s ease, box-shadow .35s ease;
}
.site-header.scrolled { padding: 9px 0; background: rgba(4, 21, 34, .82); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(255,255,255,.08); }
.nav-shell { width: min(var(--container), calc(100% - 36px)); margin-inline: auto; display: flex; align-items: center; min-height: 54px; position: relative; z-index: 1002; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); flex-shrink: 0; }
.brand-name { font-size: 17px; font-weight: 850; letter-spacing: .15em; }
.brand-mark { position: relative; width: 29px; height: 29px; display: inline-block; }
.brand-mark::before, .brand-mark::after, .brand-mark span { content: ""; position: absolute; border: 2px solid currentColor; border-radius: 8px; transform: rotate(45deg); }
.brand-mark::before { inset: 1px 10px 10px 1px; opacity: .95; }
.brand-mark::after { inset: 10px 1px 1px 10px; color: var(--cyan); }
.brand-mark span:first-child { inset: 6px 6px 6px 6px; border-width: 1px; opacity: .5; }
.brand-mark span:last-child { width: 4px; height: 4px; border: 0; background: var(--mint); border-radius: 50%; left: 12.5px; top: 12.5px; }
.desktop-nav { margin-left: auto; margin-right: 28px; display: flex; align-items: center; gap: 28px; }
.nav-link { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 620; position: relative; padding: 11px 0; background: transparent; cursor: pointer; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 5px; height: 1px; background: var(--cyan); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }
.nav-dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 6px; }
.dropdown-toggle svg { width: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .25s ease; }
.nav-dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translate(-50%, 12px);
  width: 290px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .3s var(--ease), visibility .22s;
}
.nav-dropdown:hover .dropdown-menu, .nav-dropdown.open .dropdown-menu { visibility: visible; opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 10px; font-size: 13px; color: var(--text); }
.dropdown-menu a:hover { background: var(--paper); color: var(--ink); }
.header-cta { background: var(--white); color: var(--ink); box-shadow: 0 6px 24px rgba(0,0,0,.16); }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); align-items: center; justify-content: center; position: relative; z-index: 2; cursor: pointer; }
.menu-toggle span { position: absolute; width: 19px; height: 1px; background: var(--white); transition: transform .3s var(--ease), top .3s var(--ease); }
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 1001; inset: 0; width: 100%; height: 100vh; min-height: 100dvh; padding-top: 80px; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; background: #041522; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .25s ease, visibility .25s; }
.mobile-menu[aria-hidden="false"] { visibility: visible; opacity: 1; pointer-events: auto; }
.mobile-menu-inner { width: min(560px, calc(100% - 40px)); margin: 40px auto 0; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.mobile-menu-inner > a:not(.button) { width: 100%; padding: 12px 0; color: var(--white); font-size: clamp(30px, 9vw, 48px); line-height: 1; letter-spacing: -.04em; border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .button { margin-top: 24px; width: 100%; background: var(--white); color: var(--ink); }

/* Keep the mobile drawer fully opaque in iOS Safari. Backdrop filters on a
   fixed parent can otherwise cause the drawer background to be clipped. */
body.menu-open .site-header,
body.menu-open .site-header.scrolled {
  background: #041522;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}
body.menu-open .mobile-cta-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(47,156,255,.18), transparent 31%),
    radial-gradient(circle at 86% 25%, rgba(79,224,255,.12), transparent 34%),
    linear-gradient(132deg, #03111c 0%, #071e2d 54%, #041622 100%);
  color: var(--white);
  padding: 130px 0 92px;
  display: flex;
  align-items: center;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 88%); }
.hero::after { content: ""; position: absolute; width: 700px; height: 700px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; left: -460px; top: 25%; box-shadow: 0 0 0 110px rgba(255,255,255,.018), 0 0 0 220px rgba(255,255,255,.012); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .98fr) minmax(500px, 1.02fr); gap: clamp(44px, 6vw, 95px); align-items: center; }
.hero-copy { padding-top: 24px; }
.hero-eyebrow { color: var(--cyan); margin-bottom: 24px; }
.hero-title { font-size: clamp(54px, 6vw, 88px); line-height: .96; font-weight: 640; margin-bottom: 30px; max-width: 760px; }
.rotating-wrap { display: block; color: var(--cyan); overflow: hidden; min-height: 1.06em; padding-bottom: .05em; }
.rotating-text { display: inline-block; will-change: transform, opacity; }
.rotating-text.swap-out { animation: swapOut .36s var(--ease) forwards; }
.rotating-text.swap-in { animation: swapIn .5s var(--ease) forwards; }
@keyframes swapOut { to { transform: translateY(-110%); opacity: 0; } }
@keyframes swapIn { from { transform: translateY(110%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hero-description { max-width: 610px; color: rgba(232,245,250,.74); font-size: clamp(17px, 1.55vw, 20px); line-height: 1.7; margin-bottom: 31px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .button:first-child { background: linear-gradient(135deg, #42a8ff, #2776ff); }
.trust-line { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .02em; margin: 22px 0 0; }
.trust-line span { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 18px rgba(131,241,191,.7); }
.hero-visual { position: relative; min-width: 0; perspective: 1100px; }
.visual-glow { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .35; }
.glow-one { width: 250px; height: 250px; background: var(--blue); right: 2%; top: 5%; }
.glow-two { width: 210px; height: 210px; background: var(--mint); left: 8%; bottom: 0; opacity: .13; }
.visual-shell { position: relative; min-height: 600px; background: linear-gradient(155deg, rgba(255,255,255,.11), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.16); border-radius: 34px; box-shadow: inset 0 1px 0 rgba(255,255,255,.17), 0 40px 100px rgba(0,0,0,.38); backdrop-filter: blur(14px); overflow: hidden; transform-style: preserve-3d; transition: transform .25s ease-out; }
.visual-shell::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 20%, rgba(79,224,255,.08), transparent 35%), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 34px 34px, 34px 34px; }
.visual-topbar { height: 54px; padding: 0 22px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; z-index: 2; }
.visual-status { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.68); font-size: 11px; letter-spacing: .05em; }
.visual-status span { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 10px var(--mint); }
.visual-dots { display: flex; gap: 6px; }
.visual-dots span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.25); }
.ecosystem { position: relative; height: 490px; }
.network-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.network-path { fill: none; stroke: url(#lineGradient); stroke-width: 1.4; filter: url(#lineGlow); stroke-dasharray: 6 12; animation: dashFlow 7s linear infinite; }
.path-b { animation-delay: -2s; }
.path-c { animation-delay: -4s; }
.path-d { animation-delay: -6s; }
@keyframes dashFlow { to { stroke-dashoffset: -180; } }
.core-node { position: absolute; left: 50%; top: 50%; width: 164px; height: 164px; transform: translate(-50%, -50%); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(circle at 35% 30%, rgba(79,224,255,.24), rgba(47,156,255,.07) 38%, rgba(4,21,34,.9) 72%); border: 1px solid rgba(79,224,255,.35); box-shadow: 0 0 60px rgba(47,156,255,.18), inset 0 0 35px rgba(79,224,255,.08); z-index: 3; }
.core-node::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.core-ring { position: absolute; border: 1px solid rgba(79,224,255,.17); border-radius: 50%; animation: ringPulse 4s ease-in-out infinite; }
.ring-one { inset: -18px; }
.ring-two { inset: -42px; animation-delay: -2s; }
@keyframes ringPulse { 0%,100% { transform: scale(.94); opacity: .3; } 50% { transform: scale(1.04); opacity: .9; } }
.core-icon { font-size: 32px; font-weight: 800; color: var(--white); line-height: 1; text-shadow: 0 0 24px rgba(79,224,255,.65); }
.core-node strong { font-size: 11px; letter-spacing: .2em; margin-top: 11px; }
.core-node small { font-size: 9px; color: rgba(255,255,255,.5); margin-top: 3px; }
.system-card { position: absolute; z-index: 4; width: 184px; min-height: 72px; padding: 12px 14px; display: flex; align-items: center; gap: 11px; border-radius: 17px; background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045)); border: 1px solid rgba(255,255,255,.14); box-shadow: 0 18px 40px rgba(0,0,0,.26); backdrop-filter: blur(16px); animation: cardFloat 5s ease-in-out infinite; }
.system-card strong { display: block; color: var(--white); font-size: 12px; letter-spacing: -.01em; }
.system-card span { display: block; color: rgba(255,255,255,.5); font-size: 9px; margin-top: 3px; }
.card-m365 { left: 18px; top: 49px; }
.card-cloud { right: 18px; top: 40px; animation-delay: -1.4s; }
.card-security { left: 18px; bottom: 40px; animation-delay: -2.7s; }
.card-ai { right: 18px; bottom: 37px; animation-delay: -3.9s; }
@keyframes cardFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.system-icon { width: 39px; height: 39px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; }
.system-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.icon-blue { color: #68b5ff; background: rgba(47,156,255,.13); }
.icon-blue svg rect { fill: currentColor; stroke: none; opacity: .9; }
.icon-cyan { color: var(--cyan); background: rgba(79,224,255,.11); }
.icon-green { color: var(--mint); background: rgba(131,241,191,.1); }
.icon-violet { color: #b4a8ff; background: rgba(158,140,255,.12); }
.visual-footer { position: relative; z-index: 2; height: 55px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; padding: 0 22px; gap: 14px; color: rgba(255,255,255,.48); font-size: 10px; }
.visual-footer p { color: inherit; margin: 0; }
.signal-bars { display: flex; align-items: end; height: 16px; gap: 2px; }
.signal-bars span { width: 2px; background: var(--cyan); opacity: .55; animation: signal 1.1s ease-in-out infinite; }
.signal-bars span:nth-child(1) { height: 4px; }
.signal-bars span:nth-child(2) { height: 8px; animation-delay: -.2s; }
.signal-bars span:nth-child(3) { height: 13px; animation-delay: -.4s; }
.signal-bars span:nth-child(4) { height: 9px; animation-delay: -.6s; }
.signal-bars span:nth-child(5) { height: 5px; animation-delay: -.8s; }
@keyframes signal { 50% { transform: scaleY(.45); opacity: .25; } }
.secure-chip { margin-left: auto; display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6); }
.secure-chip span { width: 6px; height: 6px; border-radius: 50%; background: var(--mint); }
.hero-edge { position: absolute; z-index: 3; left: 0; bottom: -1px; width: 100%; height: 55px; background: var(--paper); clip-path: polygon(0 85%, 100% 0, 100% 100%, 0 100%); }

.section-light { background: var(--paper); }
.pain-strip { padding: 115px 0 120px; }
.section-heading.compact { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
.section-heading.compact h2 { font-size: clamp(34px, 4vw, 57px); margin-bottom: 0; max-width: 720px; }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pain-card { min-height: 285px; padding: 26px; border: 1px solid var(--line); background: rgba(255,255,255,.72); border-radius: 20px; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s ease, background .4s ease; }
.pain-card:hover { transform: translateY(-8px); background: var(--white); box-shadow: var(--shadow-soft); }
.pain-number { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 28px; border-radius: 999px; background: #e9f3f8; color: #406275; font-size: 10px; font-weight: 800; margin-bottom: auto; }
.pain-card h3 { font-size: 21px; line-height: 1.18; margin: 28px 0 15px; }
.pain-card p { margin: 0; color: var(--muted); font-size: 14px; }

.intro-section { padding: 145px 0; background: var(--white); }
.intro-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.sticky-heading { position: sticky; top: 125px; }
.sticky-heading h2 { margin-top: 22px; margin-bottom: 0; font-size: clamp(45px, 5.5vw, 74px); }
.intro-copy > p { font-size: 18px; max-width: 720px; color: var(--muted); }
.intro-copy .lead { font-size: clamp(25px, 3vw, 37px); line-height: 1.24; color: var(--ink); letter-spacing: -.03em; }
.text-link { display: inline-flex; gap: 9px; align-items: center; font-weight: 750; border-bottom: 1px solid var(--ink); padding-bottom: 4px; margin: 12px 0 55px; }
.text-link span { transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(4px, -4px); }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principles-grid article { padding: 25px 24px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principles-grid span { color: var(--blue); font-size: 11px; font-weight: 800; }
.principles-grid h3 { font-size: 19px; margin: 34px 0 10px; }
.principles-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.services-section { padding: 130px 0 140px; background: #edf3f6; }
.services-heading { max-width: 900px; margin-bottom: 65px; }
.services-heading h2 { margin: 22px 0 22px; }
.services-heading p { max-width: 700px; color: var(--muted); font-size: 18px; }
.service-list { border-top: 1px solid #cfdce2; }
.service-card { --spot-x: 50%; --spot-y: 50%; position: relative; min-height: 178px; display: grid; grid-template-columns: 140px minmax(0, 1fr) 90px 50px; gap: 28px; align-items: center; padding: 25px 20px; border-bottom: 1px solid #cfdce2; overflow: hidden; isolation: isolate; transition: color .4s ease, padding .4s var(--ease); }
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(280px circle at var(--spot-x) var(--spot-y), rgba(79,224,255,.21), transparent 70%), linear-gradient(105deg, var(--ink), var(--ink-2)); opacity: 0; transition: opacity .4s ease; z-index: -1; }
.service-card:hover { color: var(--white); padding-left: 34px; padding-right: 34px; }
.service-card:hover::before { opacity: 1; }
.service-index { font-size: 14px; font-weight: 800; color: var(--blue); }
.service-index span { color: var(--muted); font-weight: 600; }
.service-card:hover .service-index span { color: rgba(255,255,255,.4); }
.service-content h3 { font-size: clamp(27px, 3vw, 42px); line-height: 1.1; margin: 0 0 12px; }
.service-content p { max-width: 680px; color: var(--muted); font-size: 14px; margin: 0; transition: color .4s ease; }
.service-card:hover .service-content p { color: rgba(255,255,255,.6); }
.service-icon { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; background: rgba(47,156,255,.08); color: var(--blue); transition: transform .45s var(--ease), background .4s ease, color .4s ease; }
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.service-icon svg rect { fill: currentColor; stroke: none; }
.service-card:hover .service-icon { transform: rotate(-7deg) scale(1.08); background: rgba(255,255,255,.1); color: var(--cyan); }
.service-arrow { font-size: 27px; transition: transform .4s var(--ease); }
.service-card:hover .service-arrow { transform: translate(5px, -5px); }

.process-section { padding: 140px 0; color: var(--white); background: linear-gradient(135deg, #061826, #092737); }
.process-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(70px, 9vw, 140px); align-items: start; }
.process-heading { position: sticky; top: 125px; }
.process-heading .eyebrow { color: var(--cyan); }
.process-heading h2 { margin: 22px 0 26px; }
.process-heading p { color: rgba(255,255,255,.58); font-size: 17px; max-width: 510px; margin-bottom: 32px; }
.timeline { position: relative; }
.timeline-line { position: absolute; left: 33px; top: 26px; bottom: 30px; width: 1px; background: rgba(255,255,255,.13); }
.timeline-line span { position: absolute; left: 0; top: 0; width: 1px; height: 0; background: linear-gradient(var(--cyan), var(--mint)); box-shadow: 0 0 10px rgba(79,224,255,.4); transition: height .15s linear; }
.timeline-step { position: relative; display: grid; grid-template-columns: 66px 1fr; gap: 25px; padding: 0 0 68px; }
.timeline-step:last-child { padding-bottom: 0; }
.step-number { position: relative; z-index: 2; width: 66px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: #0d3042; border: 1px solid rgba(255,255,255,.12); color: var(--cyan); font-size: 12px; font-weight: 800; box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.timeline-step h3 { font-size: clamp(28px, 3vw, 42px); margin: 4px 0 12px; }
.timeline-step p { margin: 0; color: rgba(255,255,255,.56); max-width: 520px; }

.outcomes-section { position: relative; overflow: hidden; padding: 145px 0 150px; background: #04121d; color: var(--white); }
.outcomes-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 90px 90px; }
.outcome-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .15; }
.orb-a { width: 500px; height: 500px; background: var(--blue); top: -200px; right: -120px; }
.orb-b { width: 430px; height: 430px; background: var(--mint); bottom: -220px; left: -100px; }
.outcomes-section .container { position: relative; z-index: 2; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px, 9vw, 140px); }
.outcome-heading { position: sticky; top: 120px; align-self: start; }
.outcome-heading .eyebrow { color: var(--mint); }
.outcome-heading h2 { margin: 22px 0 0; font-size: clamp(52px, 6.2vw, 92px); }
.outcome-row { position: relative; display: grid; grid-template-columns: 54px 1fr; align-items: center; min-height: 122px; border-bottom: 1px solid rgba(255,255,255,.12); overflow: hidden; }
.outcome-row span { color: var(--cyan); font-size: 11px; font-weight: 800; }
.outcome-row p { position: relative; z-index: 2; color: var(--white); font-size: clamp(24px, 2.6vw, 38px); line-height: 1.2; letter-spacing: -.025em; margin: 0; transition: transform .35s var(--ease); }
.outcome-row i { position: absolute; left: 54px; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.outcome-row:hover p { transform: translateX(10px); }
.outcome-row:hover i { transform: scaleX(1); }

.contact-section { padding: 140px 0; background: var(--paper); }
.contact-shell { padding: clamp(30px, 5vw, 70px); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 28px 90px rgba(5,26,36,.1); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.contact-copy h2 { font-size: clamp(46px, 5.6vw, 75px); margin: 24px 0 28px; }
.contact-copy > p { color: var(--muted); font-size: 17px; max-width: 500px; }
.contact-note { margin-top: 42px; display: flex; align-items: center; gap: 15px; }
.contact-note-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: var(--white); font-size: 19px; }
.contact-note small { display: block; color: var(--muted); font-size: 11px; }
.contact-note a { font-weight: 750; }
.contact-trust { margin-top: 35px; font-size: 12px !important; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label > span { display: block; font-size: 12px; font-weight: 760; margin: 0 0 8px 4px; color: var(--text); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); background: #f8fafb; color: var(--ink); border-radius: 14px; padding: 14px 15px; outline: 0; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.contact-form input, .contact-form select { height: 52px; }
.contact-form textarea { resize: vertical; min-height: 135px; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #93a1a9; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { background: var(--white); border-color: var(--blue); box-shadow: 0 0 0 4px rgba(47,156,255,.1); }
.contact-form .invalid { border-color: var(--error); box-shadow: 0 0 0 4px rgba(194,61,75,.08); }
.field-error { min-height: 16px; display: block; color: var(--error); font-size: 11px; margin: 5px 0 0 4px; }
.form-submit { align-self: flex-start; min-width: 190px; background: linear-gradient(135deg, #42a8ff, #2776ff); }
.form-status { min-height: 24px; margin: 0; font-size: 13px; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

.site-footer { padding: 90px 0 28px; background: #061622; color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1fr 1.7fr; gap: 90px; padding-bottom: 65px; }
.brand-footer { margin-bottom: 24px; }
.footer-brand p { max-width: 500px; color: rgba(255,255,255,.5); font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 45px; }
.footer-links h3 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-links a, .footer-links p { display: block; color: rgba(255,255,255,.67); font-size: 13px; margin: 0 0 11px; }
.footer-links a:hover { color: var(--white); }
.footer-links .footer-cta { margin-top: 15px; color: var(--cyan); font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 25px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.4); font-size: 11px; }
.footer-bottom div { display: flex; gap: 25px; }
.footer-bottom a:hover { color: var(--white); }
.mobile-cta-bar { display: none; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav { gap: 18px; margin-right: 18px; }
  .hero-grid { grid-template-columns: 1fr 480px; gap: 45px; }
  .visual-shell { min-height: 550px; }
  .ecosystem { height: 440px; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain-card { min-height: 240px; }
  .service-card { grid-template-columns: 100px minmax(0, 1fr) 75px 36px; }
}

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding-top: 120px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(100%, 650px); margin: 15px auto 0; }
  .intro-grid, .process-grid, .outcomes-section .container, .contact-shell, .footer-top { grid-template-columns: 1fr; }
  .sticky-heading, .process-heading, .outcome-heading { position: static; }
  .principles-grid { margin-top: 10px; }
  .service-card { grid-template-columns: 78px minmax(0, 1fr) 62px 30px; gap: 20px; }
  .process-heading { max-width: 680px; }
  .contact-shell { gap: 55px; }
  .footer-links { gap: 30px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 30px, var(--container)); }
  h2 { font-size: clamp(38px, 12vw, 54px); }
  .site-header { padding-top: 9px; }
  .nav-shell { width: calc(100% - 22px); }
  .hero { padding: 105px 0 72px; align-items: flex-start; }
  .hero-grid { gap: 42px; }
  .hero-title { font-size: clamp(43px, 13vw, 59px); line-height: .99; }
  .hero-description { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .trust-line { align-items: flex-start; }
  .visual-shell { min-height: 475px; border-radius: 24px; }
  .ecosystem { height: 375px; }
  .system-card { width: 137px; min-height: 61px; padding: 9px; gap: 8px; border-radius: 14px; }
  .system-icon { width: 32px; height: 32px; border-radius: 9px; }
  .system-icon svg { width: 17px; }
  .system-card strong { font-size: 10px; }
  .system-card span { font-size: 8px; }
  .card-m365, .card-security { left: 8px; }
  .card-cloud, .card-ai { right: 8px; }
  .card-m365 { top: 32px; }
  .card-cloud { top: 27px; }
  .card-security { bottom: 30px; }
  .card-ai { bottom: 27px; }
  .core-node { width: 120px; height: 120px; }
  .core-icon { font-size: 25px; }
  .core-node strong { font-size: 9px; }
  .ring-one { inset: -13px; }
  .ring-two { inset: -26px; }
  .network-lines { opacity: .8; }
  .visual-footer { padding: 0 14px; }
  .visual-footer p { display: none; }
  .pain-strip, .intro-section, .services-section, .process-section, .outcomes-section, .contact-section { padding-top: 90px; padding-bottom: 90px; }
  .section-heading.compact { display: block; }
  .section-heading.compact .eyebrow { margin-bottom: 18px; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 215px; }
  .intro-grid { gap: 45px; }
  .intro-copy .lead { font-size: 25px; }
  .intro-copy > p { font-size: 16px; }
  .principles-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; grid-template-columns: 55px 1fr 35px; gap: 12px; padding: 24px 6px; }
  .service-card:hover { padding-left: 10px; padding-right: 10px; }
  .service-index { font-size: 11px; }
  .service-index span { display: none; }
  .service-content h3 { font-size: 26px; }
  .service-content p { font-size: 13px; }
  .service-icon { display: none; }
  .service-arrow { grid-column: 3; grid-row: 1; align-self: start; font-size: 22px; }
  .timeline-line { left: 25px; }
  .timeline-step { grid-template-columns: 50px 1fr; gap: 18px; padding-bottom: 50px; }
  .step-number { width: 50px; height: 44px; border-radius: 13px; }
  .outcomes-section .container { gap: 45px; }
  .outcome-heading h2 { font-size: 52px; }
  .outcome-row { min-height: 105px; grid-template-columns: 40px 1fr; }
  .outcome-row p { font-size: 25px; }
  .contact-shell { width: calc(100% - 20px); padding: 28px 20px; border-radius: 24px; }
  .contact-copy h2 { font-size: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
  .form-submit { width: 100%; }
  .footer-top { gap: 45px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; padding-bottom: 80px; }
  .mobile-cta-bar { position: fixed; z-index: 950; left: 10px; right: 10px; bottom: 10px; min-height: 62px; padding: 8px 8px 8px 16px; border-radius: 18px; background: rgba(255,255,255,.94); backdrop-filter: blur(16px); box-shadow: 0 18px 50px rgba(4,21,34,.2); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
  .mobile-cta-bar span { font-size: 11px; font-weight: 700; max-width: 150px; line-height: 1.3; }
}

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


/* WordPress integration */
.admin-bar .site-header { top: 32px; }
.contact-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* Editable WordPress logo */
.brand-logo {
  width: auto;
  max-width: 178px;
  max-height: 46px;
  object-fit: contain;
  display: block;
}
.brand-footer .brand-logo { max-height: 52px; }

.mobile-submenu {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 8px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-submenu a {
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.25;
  padding: 8px 0 8px 18px;
  border-left: 1px solid rgba(79,224,255,.34);
}
.mobile-submenu a:hover { color: var(--white); }

/* Microsoft 365 service page */
.service-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(47,156,255,.2), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(131,241,191,.12), transparent 34%),
    linear-gradient(132deg, #03111c 0%, #071e2d 58%, #041622 100%);
  color: var(--white);
  padding: 140px 0 100px;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(450px, 1.05fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}
.service-hero-title {
  font-size: clamp(52px, 6vw, 88px);
  line-height: .96;
  max-width: 850px;
  margin: 0 0 28px;
  font-weight: 680;
}
.service-hero-description {
  max-width: 690px;
  color: rgba(255,255,255,.74);
  font-size: clamp(17px, 1.6vw, 21px);
  margin-bottom: 34px;
}
.service-hero-panel {
  position: relative;
  min-height: 560px;
  perspective: 1000px;
}
.panel-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: .7;
}
.panel-orb.orb-one { width: 210px; height: 210px; top: 25px; right: 40px; background: rgba(79,224,255,.18); }
.panel-orb.orb-two { width: 240px; height: 240px; bottom: 35px; left: 25px; background: rgba(131,241,191,.13); }
.m365-dashboard-card {
  position: absolute;
  inset: 70px 34px 70px 34px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.055));
  box-shadow: 0 40px 120px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.2);
  backdrop-filter: blur(22px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}
.dashboard-topbar strong {
  color: var(--mint);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.dashboard-meter {
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
  margin: 40px 0;
}
.dashboard-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--mint));
  box-shadow: 0 0 28px rgba(79,224,255,.45);
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.dashboard-grid article {
  min-height: 112px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(4,21,34,.58);
  border: 1px solid rgba(255,255,255,.1);
}
.dashboard-grid strong { display: block; color: var(--white); font-size: 22px; letter-spacing: -.03em; }
.dashboard-grid small { display: block; color: rgba(255,255,255,.58); margin-top: 8px; }
.floating-task {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 22px 65px rgba(0,0,0,.2);
}
.floating-task span {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--cyan);
  font-size: 12px;
}
.task-a { top: 38px; left: 8px; }
.task-b { right: 0; top: 245px; }
.task-c { left: 48px; bottom: 28px; }
.service-problems { padding: 110px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.problem-card {
  min-height: 270px;
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s ease;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: 0 24px 80px rgba(5,26,36,.12); }
.problem-card span, .scope-card .scope-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eaf6ff;
  color: var(--blue);
  font-weight: 850;
  margin-bottom: 32px;
}
.problem-card h3 { font-size: 25px; line-height: 1.05; margin-bottom: 16px; }
.problem-card p { color: var(--muted); font-size: 14px; margin: 0; }
.service-intro { padding: 135px 0; background: var(--white); }
.scope-section { padding: 135px 0; background: #061622; color: var(--white); position: relative; overflow: hidden; }
.scope-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,224,255,.12), transparent 64%);
  top: -280px;
  right: -180px;
}
.scope-section .container { position: relative; z-index: 2; }
.scope-section .services-heading p { color: rgba(255,255,255,.62); }
.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 58px;
}
.scope-card {
  min-height: 258px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .35s var(--ease), background .35s ease, border-color .35s ease;
}
.scope-card:hover { transform: translateY(-7px); background: rgba(255,255,255,.09); border-color: rgba(79,224,255,.28); }
.scope-card .scope-icon { background: rgba(79,224,255,.12); color: var(--cyan); margin-bottom: 28px; }
.scope-card h3 { color: var(--white); font-size: 24px; line-height: 1.1; margin-bottom: 14px; }
.scope-card p { color: rgba(255,255,255,.62); font-size: 14px; margin: 0; }
.deliverables-section { padding: 120px 0; background: var(--paper); }
.deliverables-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 7vw, 95px);
  align-items: start;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: clamp(32px, 5vw, 70px);
  box-shadow: var(--shadow-soft);
}
.deliverables-shell h2 { margin: 24px 0 24px; font-size: clamp(40px, 4.7vw, 68px); }
.deliverables-shell p { color: var(--muted); }
.deliverables-list { display: grid; gap: 0; }
.deliverables-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.deliverables-list div:first-child { padding-top: 0; }
.deliverables-list span { color: var(--blue); font-size: 12px; font-weight: 850; }
.deliverables-list p { color: var(--ink); font-size: clamp(19px, 2vw, 26px); line-height: 1.25; margin: 0; letter-spacing: -.02em; }
.m365-process-section { background: #071e2d; }
.faq-section { padding: 125px 0; background: var(--white); }
.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 8vw, 120px);
}
.faq-list { display: grid; gap: 14px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f9fbfc;
  padding: 0 22px;
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 780;
  font-size: 19px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--blue); font-size: 24px; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--muted); margin: -4px 0 22px; }
.service-contact { background: var(--paper); }

@media (max-width: 1100px) {
  .service-hero-grid { grid-template-columns: 1fr 430px; gap: 44px; }
  .service-hero-panel { min-height: 520px; }
  .problem-grid, .scope-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .service-hero-grid, .deliverables-shell, .faq-grid { grid-template-columns: 1fr; }
  .service-hero-panel { max-width: 620px; width: 100%; margin-inline: auto; }
  .service-hero-title { max-width: 760px; }
}

@media (max-width: 680px) {
  .brand-logo { max-width: 145px; max-height: 40px; }
  .mobile-menu-inner { margin-top: 26px; gap: 4px; }
  .mobile-menu-inner > a:not(.button) { font-size: clamp(27px, 8.5vw, 42px); }
  .mobile-submenu a { font-size: 13px; padding-top: 6px; padding-bottom: 6px; }
  .service-hero { padding: 112px 0 78px; }
  .service-hero-title { font-size: clamp(42px, 12.5vw, 58px); }
  .service-hero-description { font-size: 16px; }
  .service-hero-panel { min-height: 450px; }
  .m365-dashboard-card { inset: 58px 6px 58px; padding: 18px; border-radius: 25px; }
  .dashboard-grid { gap: 10px; }
  .dashboard-grid article { min-height: 92px; padding: 14px; border-radius: 17px; }
  .dashboard-grid strong { font-size: 17px; }
  .dashboard-grid small { font-size: 11px; }
  .floating-task { min-height: 48px; padding: 8px 12px 8px 8px; font-size: 11px; border-radius: 15px; }
  .floating-task span { width: 32px; height: 32px; border-radius: 10px; }
  .task-a { left: 0; top: 28px; }
  .task-b { right: 0; top: 205px; }
  .task-c { left: 14px; bottom: 24px; }
  .service-problems, .service-intro, .scope-section, .deliverables-section, .faq-section { padding-top: 90px; padding-bottom: 90px; }
  .problem-grid, .scope-grid { grid-template-columns: 1fr; }
  .problem-card, .scope-card { min-height: auto; }
  .deliverables-shell { width: calc(100% - 20px); padding: 28px 20px; border-radius: 24px; }
  .deliverables-list div { grid-template-columns: 38px 1fr; gap: 12px; }
  .faq-list summary { font-size: 17px; }
}

/* Cloud & Platform Migration page visual */
.migration-dashboard-card {
  gap: 24px;
}
.migration-path {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  margin: 22px 0 18px;
}
.migration-path div {
  min-height: 112px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(4,21,34,.54);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
}
.migration-path strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  letter-spacing: -.03em;
}
.migration-path small {
  display: block;
  color: rgba(255,255,255,.58);
  margin-top: 5px;
}
.migration-path > span {
  height: 2px;
  background: linear-gradient(90deg, rgba(79,224,255,.18), var(--cyan), rgba(131,241,191,.36));
  position: relative;
}
.migration-path > span::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 680px) {
  .migration-path {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 14px 0;
  }
  .migration-path div {
    min-height: 72px;
    border-radius: 17px;
  }
  .migration-path strong { font-size: 17px; }
  .migration-path > span {
    width: 2px;
    height: 22px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(79,224,255,.18), var(--cyan), rgba(131,241,191,.36));
  }
  .migration-path > span::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1px;
    transform: translateX(-50%) rotate(135deg);
  }
}
