:root{
  --navy:#081936;
  --blue:#1265f0;
  --cyan:#03bdd4;
  --line:#dce8f7;
  --muted:#60708a;
  --soft:#f3f8ff;
  --shadow:0 22px 58px rgba(8,25,54,.12);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:Inter,system-ui,sans-serif;
  color:var(--navy);
  background:#fff;
  line-height:1.55;
  --accent:var(--blue);
  --accent-2:var(--cyan);
  --hero-glow:rgba(18,101,240,.18);
  --footer-fade-from:#fff;
}

.service-cloud{
  --accent:#1265f0;
  --accent-2:#03bdd4;
  --hero-glow:rgba(3,189,212,.2);
  --footer-fade-from:#f3f9ff;
}

.service-cyber{
  --accent:#14b86a;
  --accent-2:#22d3ee;
  --hero-glow:rgba(20,184,106,.22);
  --footer-fade-from:#061f18;
}

.service-network{
  --accent:#2563eb;
  --accent-2:#7c3aed;
  --hero-glow:rgba(124,58,237,.22);
  --footer-fade-from:#fff;
}

.service-productivity{
  --accent:#0ea5e9;
  --accent-2:#f59e0b;
  --hero-glow:rgba(245,158,11,.2);
  --footer-fade-from:#f0f9ff;
}

.service-ai{
  --accent:#1265f0;
  --accent-2:#03bdd4;
  --hero-glow:rgba(3,189,212,.24);
}

.service-project{
  --accent:#334155;
  --accent-2:#1265f0;
  --hero-glow:rgba(51,65,85,.2);
}

.service-managed{
  --accent:#0891b2;
  --accent-2:#16a34a;
  --hero-glow:rgba(22,163,74,.2);
  --footer-fade-from:#fff;
}

.service-comms{
  --accent:#7c3aed;
  --accent-2:#06b6d4;
  --hero-glow:rgba(124,58,237,.22);
  --footer-fade-from:#f5f3ff;
}

.service-app{
  --accent:#2563eb;
  --accent-2:#d946ef;
  --hero-glow:rgba(217,70,239,.2);
  --footer-fade-from:#fff;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

.header{
  height:78px;
  background:#fff;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 6%;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 8px 24px rgba(15,23,42,.04);
}

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

.brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
  flex:0 0 auto;
}

.brand-logo-horizontal{
  width:210px;
  height:auto;
  object-fit:contain;
  flex:0 0 auto;
  margin-top:28px;
}

.brand h1{
  font-size:1.22rem;
  line-height:1;
  font-weight:900;
}

.brand p{
  font-size:.78rem;
  color:var(--muted);
  margin-top:4px;
}

.nav{
  display:flex;
  gap:34px;
  font-size:.9rem;
  font-weight:800;
  align-items:center;
}

.nav a,
.nav-trigger{
  display:flex;
  gap:6px;
  align-items:center;
}

.nav a:hover,
.nav-dropdown:hover .nav-trigger{
  color:var(--blue);
}

.nav-dropdown{
  position:relative;
  display:flex;
  align-items:center;
  height:78px;
}

.nav-trigger{
  cursor:default;
}

.nav-menu{
  position:absolute;
  top:68px;
  left:50%;
  transform:translate(-50%,10px);
  width:285px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:8px;
  box-shadow:0 22px 48px rgba(8,25,54,.14);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.22s ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.nav-menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:#34425a;
  font-size:.84rem;
  line-height:1.2;
}

.nav-menu a:hover{
  background:#eef6ff;
  color:var(--blue);
}

.mobile-card-back{
  display:none;
}

.mobile-home-arrow{
  display:none;
}

@media(min-width:901px){
  .brand-logo-horizontal{
    filter:brightness(0) invert(1);
  }

  .header{
    background:transparent;
    border-bottom:0;
    position:absolute;
    left:0;
    right:0;
    z-index:100;
    isolation:isolate;
    box-shadow:none;
  }

  .header:before{
    content:"";
    position:absolute;
    right:0;
    bottom:0;
    left:34%;
    height:1px;
    z-index:-1;
    pointer-events:none;
    background:linear-gradient(90deg,transparent 0%,color-mix(in srgb,var(--accent) 0%,transparent) 24%,color-mix(in srgb,var(--accent) 56%,transparent) 68%,var(--accent) 100%);
  }

  .nav a,
  .nav-trigger{
    color:#fff;
    text-shadow:0 2px 14px rgba(0,0,0,.36);
  }

  .nav a:hover,
  .nav-dropdown:hover .nav-trigger{
    color:rgba(255,255,255,.82);
  }

  .nav-menu a{
    color:#34425a;
    text-shadow:none;
  }

  body > main > .service-hero{
    padding-top:124px;
  }
}

.service-hero{
  min-height:430px;
  padding:72px 6%;
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:48px;
  align-items:center;
  background:
    linear-gradient(135deg,rgba(8,25,54,.88),rgba(18,101,240,.72)),
    var(--hero-image);
  background-size:cover;
  background-position:var(--hero-position, center);
  color:#fff;
  position:relative;
  overflow:hidden;
}

.service-hero:not(.hero)::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at var(--glow-x, 74%) var(--glow-y, 30%),var(--hero-glow),transparent 32%);
  pointer-events:none;
}

.service-hero:not(.hero) > *{
  position:relative;
  z-index:1;
}

.service-hero.hero{
  min-height:430px;
  padding:72px 6% 170px;
  display:flex;
  gap:0;
  grid-template-columns:none;
  align-items:center;
  background:
    linear-gradient(100deg,rgba(7,20,45,.96) 0%,rgba(8,25,54,.88) 46%,rgba(10,47,111,.5) 100%),
    var(--hero-image);
  background-size:cover;
  background-position:center;
  --color:var(--accent);
}

.service-hero.hero .content{
  max-width:760px;
  width:100%;
  margin:0;
  padding:0;
  position:relative;
  z-index:2;
  transform:translateY(76px);
}

.waves{
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  height:200px;
  background-color:var(--color);
  box-shadow:inset 0 0 50px rgba(0,0,0,.5);
  transition:500ms;
  z-index:1;
}

.waves::before,
.waves::after{
  content:"";
  position:absolute;
  width:300vw;
  height:300vw;
  top:-65vw;
  left:50%;
  transform:translate(-50%,-75%);
}

.waves::before{
  border-radius:44%;
  background:#081936;
  animation:waves 8s linear infinite;
}

.waves::after{
  border-radius:44%;
  background:rgba(8,25,54,.58);
  animation:waves 15s linear infinite;
}

.cloud-hero{
  --color:#1265f0;
}

.network-hero{
  --color:#2563eb;
}

.productivity-hero{
  --color:#0ea5e9;
}

.cyber-hero{
  --color:#14b86a;
}

.ai-hero{
  --color:#03bdd4;
}

.app-hero{
  --color:#d946ef;
}

.project-hero{
  --color:#334155;
}

.managed-hero{
  --color:#16a34a;
}

.comms-hero{
  --color:#7c3aed;
}

.eyebrow{
  display:inline-block;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;
  padding:7px 13px;
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:16px;
}

.service-hero h2{
  font-family:'Plus Jakarta Sans';
  font-size:clamp(2.4rem,5vw,4.7rem);
  line-height:1.02;
  letter-spacing:-.07em;
  max-width:760px;
}

.service-hero p{
  color:rgba(255,255,255,.86);
  font-size:1.02rem;
  max-width:620px;
  margin-top:18px;
}

.service-hero.hero h2{
  position:relative;
  z-index:2;
  font-size:4.5rem;
  line-height:1;
  letter-spacing:0;
  margin:0 0 10px;
  color:rgba(255,255,255,.9);
}

.service-hero.hero p{
  position:relative;
  z-index:2;
  color:rgba(255,255,255,.58);
  font-size:1.1rem;
  line-height:1.4;
  margin-top:0;
}

.hero-panel{
  background:rgba(255,255,255,.95);
  color:var(--navy);
  border-radius:18px;
  padding:24px;
  box-shadow:0 26px 58px rgba(0,0,0,.18);
  animation:panelFloat 5.5s ease-in-out infinite;
  border-top:4px solid var(--accent);
}

.hero-panel h3{
  font-family:'Plus Jakarta Sans';
  letter-spacing:-.04em;
  margin-bottom:12px;
}

.hero-panel ul{
  display:grid;
  gap:10px;
  list-style:none;
}

.hero-panel li{
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
  color:#35455f;
  font-size:.9rem;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
  transition:transform .25s, background .25s, border-color .25s;
}

.hero-panel li:hover{
  background:#eef6ff;
  border-color:#b9d2ff;
  transform:translateX(4px);
}

.hero-panel li::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  box-shadow:0 0 0 5px color-mix(in srgb,var(--accent) 12%,transparent);
  flex:0 0 auto;
}

.section{
  padding:58px 6%;
}

.section-soft{
  background:linear-gradient(180deg,#fff 0%,#f7fbff 100%);
}

.content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  max-width:1180px;
  margin:0 auto;
}

.content-grid.enhanced{
  grid-template-columns:1.05fr .95fr;
  align-items:start;
}

.copy-block h3,
.service-card h3{
  font-family:'Plus Jakarta Sans';
  font-size:1.55rem;
  letter-spacing:-.04em;
  margin-bottom:12px;
}

.copy-block p{
  color:#465a76;
  margin-bottom:14px;
}

.section-label{
  display:inline-block;
  color:var(--accent);
  background:color-mix(in srgb,var(--accent) 10%,#fff);
  border:1px solid #cfe1ff;
  border-radius:999px;
  padding:7px 13px;
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:14px;
}

.lead{
  font-size:1.02rem;
}

.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
  border-top:4px solid var(--accent);
}

.service-card.dark{
  background:linear-gradient(145deg,#071f4f,color-mix(in srgb,var(--accent) 42%,#062766));
  color:#fff;
  border:0;
}

.service-card.dark .service-list li{
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.88);
}

.service-list{
  display:grid;
  gap:10px;
  list-style:none;
}

.service-list li{
  padding:12px 14px;
  border-radius:12px;
  background:var(--soft);
  color:#34425a;
  font-weight:800;
  border-left:4px solid var(--accent);
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:24px;
}

.process-step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:18px;
  box-shadow:0 14px 30px rgba(8,25,54,.07);
  transition:transform .28s, box-shadow .28s, border-color .28s;
  animation:riseIn .65s ease both;
}

.process-step:nth-child(2){
  animation-delay:.12s;
}

.process-step:nth-child(3){
  animation-delay:.24s;
}

.process-step:hover{
  transform:translateY(-6px);
  border-color:#b9d2ff;
  box-shadow:0 22px 42px rgba(18,101,240,.14);
}

.process-step span{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--accent);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:.75rem;
  font-weight:900;
  margin-bottom:14px;
}

.process-step b{
  display:block;
  margin-bottom:6px;
}

.process-step p{
  color:#53657e;
  font-size:.86rem;
}

.card-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  background:color-mix(in srgb,var(--accent) 10%,#fff);
  color:var(--accent);
  display:grid;
  place-items:center;
  margin-bottom:12px;
}

.card-icon svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  stroke-width:2.2;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.use-case-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  perspective:1200px;
}

.use-case{
  min-height:178px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(255,255,255,.9)),
    radial-gradient(circle at 92% 12%,color-mix(in srgb,var(--accent-2) 18%,transparent),transparent 34%);
  border:1px solid color-mix(in srgb,var(--accent) 14%,var(--line));
  border-radius:18px;
  padding:18px;
  position:relative;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(8,25,54,.07);
  transform:translateY(0) rotateX(0);
  transform-style:preserve-3d;
  animation:useCaseRise .7s ease both;
  transition:transform .34s ease, box-shadow .34s ease, border-color .34s ease, background .34s ease;
}

.use-case:nth-child(2){
  animation-delay:.08s;
}

.use-case:nth-child(3){
  animation-delay:.16s;
}

.use-case:nth-child(4){
  animation-delay:.24s;
}

.use-case::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent 0%,rgba(255,255,255,.72) 42%,transparent 58%);
  transform:translateX(-120%);
  transition:transform .7s ease;
  pointer-events:none;
}

.use-case::after{
  content:"";
  position:absolute;
  inset:auto -34px -48px auto;
  width:118px;
  height:118px;
  border-radius:50%;
  background:
    radial-gradient(circle,color-mix(in srgb,var(--accent-2) 20%,transparent) 0%,color-mix(in srgb,var(--accent) 8%,transparent) 54%,transparent 72%);
  transition:transform .34s ease, opacity .34s ease;
  opacity:.88;
}

.use-case:hover{
  transform:translateY(-8px) rotateX(2deg);
  border-color:color-mix(in srgb,var(--accent) 42%,#b9d2ff);
  box-shadow:0 24px 48px rgba(8,25,54,.13);
}

.use-case:hover::before{
  transform:translateX(120%);
}

.use-case:hover::after{
  transform:scale(1.18) translate(-8px,-8px);
  opacity:1;
}

.use-case b{
  display:block;
  margin-bottom:4px;
  font-family:'Plus Jakarta Sans';
  letter-spacing:-.025em;
  transition:color .3s ease;
}

.use-case p{
  color:#53657e;
  font-size:.84rem;
  position:relative;
  z-index:1;
}

.use-case b,
.use-case .card-icon{
  position:relative;
  z-index:1;
}

.use-case:hover b{
  color:var(--accent);
}

.use-case .card-icon{
  transition:transform .34s ease, background .34s ease, color .34s ease, box-shadow .34s ease;
}

.use-case:hover .card-icon{
  transform:translateY(-2px) scale(1.08) rotate(-3deg);
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#fff;
  box-shadow:0 14px 26px color-mix(in srgb,var(--accent) 22%,transparent);
}

.cta{
  background:#f7fbff;
  border-top:1px solid var(--line);
  text-align:center;
}

.cta h3{
  font-family:'Plus Jakarta Sans';
  font-size:2rem;
  letter-spacing:-.05em;
}

.cta p{
  color:var(--muted);
  margin:8px auto 20px;
  max-width:650px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:12px;
  background:var(--accent);
  color:#fff;
  font-weight:900;
  box-shadow:0 14px 28px color-mix(in srgb,var(--accent) 26%,transparent);
  transition:transform .25s, box-shadow .25s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 34px color-mix(in srgb,var(--accent) 32%,transparent);
}

/* Service-specific page treatments */
.service-cloud .section:not(.cta){
  background:linear-gradient(180deg,#fff 0%,#f3f9ff 100%);
}

.service-cloud .service-card{
  border-radius:24px;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  border-top:0;
  border-left:5px solid var(--accent);
}

.service-cyber .section:not(.cta){
  background:#061f18;
  color:#fff;
}

.service-cyber .copy-block p,
.service-cyber .service-list li{
  color:rgba(255,255,255,.82);
}

.service-cyber .copy-block h3,
.service-cyber .service-card h3{
  color:#fff;
}

.service-cyber .service-card{
  background:linear-gradient(160deg,rgba(20,184,106,.18),rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  border-top:4px solid var(--accent);
  box-shadow:0 22px 52px rgba(0,0,0,.22);
}

.service-cyber .service-list li{
  background:rgba(255,255,255,.08);
  border-left-color:#22d3ee;
}

.service-cyber .process-step{
  background:linear-gradient(160deg,rgba(255,255,255,.12),rgba(255,255,255,.06));
  border-color:rgba(255,255,255,.16);
  box-shadow:0 18px 38px rgba(0,0,0,.22);
}

.service-cyber .process-step b{
  color:#fff;
}

.service-cyber .process-step p{
  color:rgba(255,255,255,.78);
}

.service-cyber .use-case{
  background:
    linear-gradient(160deg,rgba(255,255,255,.12),rgba(255,255,255,.055)),
    radial-gradient(circle at 92% 12%,rgba(34,211,238,.14),transparent 34%);
  border-color:rgba(255,255,255,.16);
  box-shadow:0 18px 38px rgba(0,0,0,.22);
}

.service-cyber .use-case b{
  color:#fff;
}

.service-cyber .use-case p{
  color:rgba(255,255,255,.78);
}

.service-cyber .use-case:hover{
  border-color:rgba(34,211,238,.42);
  box-shadow:0 24px 48px rgba(0,0,0,.28);
}

.service-network .section:not(.cta){
  background:linear-gradient(180deg,#fff 0%,#f6f8ff 100%);
}

.service-network .service-card{
  border-radius:10px 28px 10px 28px;
  border-top:0;
  border-right:5px solid var(--accent-2);
}

.service-network .service-list li{
  border-radius:999px;
}

.service-productivity .section:not(.cta){
  background:linear-gradient(180deg,#fffaf0 0%,#f0f9ff 100%);
}

.service-productivity .service-card{
  border-top:0;
  background:#fff;
  box-shadow:0 18px 44px rgba(245,158,11,.12);
}

.service-productivity .service-list li{
  background:#fff7e8;
  border-left-color:#f59e0b;
}

.service-ai .section-soft{
  background:linear-gradient(135deg,#06152d 0%,#081936 48%,#0a2f6f 100%);
  color:#fff;
}

.service-ai .section-soft .copy-block p,
.service-ai .section-soft .process-step p{
  color:rgba(255,255,255,.78);
}

.service-ai .section-soft .copy-block h3,
.service-ai .section-soft .process-step b{
  color:#fff;
}

.service-ai .section-soft .process-step{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  box-shadow:0 20px 42px rgba(0,0,0,.2);
}

.service-ai .service-card.dark{
  background:linear-gradient(145deg,#031a3f,#063b73 55%,#075d78);
}

.service-app .section-soft{
  background:linear-gradient(180deg,#fff 0%,#f7f3ff 100%);
}

.service-app .process-step,
.service-app .use-case{
  border-radius:24px;
  border-color:#ead7ff;
}

.service-app .service-card.dark{
  background:linear-gradient(145deg,#101b4c,#263cbb 54%,#a21caf);
}

.service-managed .section:not(.cta){
  background:linear-gradient(180deg,#f2fff9 0%,#fff 100%);
}

.service-managed .service-card{
  border-top:0;
  border-bottom:5px solid #16a34a;
}

.service-managed .service-list li{
  background:#ecfdf5;
  border-left-color:#16a34a;
}

.service-project:not(.why-page) .section:not(.cta){
  background:linear-gradient(180deg,#f8fafc 0%,#fff 100%);
}

.service-project:not(.why-page) .service-card{
  border-top:0;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  border-left:5px solid #334155;
}

.service-project:not(.why-page) .service-list li{
  background:#f1f5f9;
  border-left-color:#1265f0;
}

.service-comms .section:not(.cta){
  background:linear-gradient(180deg,#fff 0%,#f5f3ff 100%);
}

.service-comms .service-card{
  border-top:0;
  background:#fff;
  border-radius:28px;
  box-shadow:0 20px 48px rgba(124,58,237,.12);
}

.service-comms .service-list li{
  background:#f4f0ff;
  border-left-color:#7c3aed;
}

@media(min-width:901px){
  .service-cloud .service-hero{
    grid-template-columns:1.15fr .75fr;
    min-height:520px;
  }

  .service-cloud .hero-panel{
    border-radius:28px;
    transform:translateY(28px);
    animation:none;
  }

  .service-cloud .hero-panel li{
    border-radius:999px;
  }

  .service-cyber .service-hero{
    grid-template-columns:.82fr 1fr;
    min-height:540px;
  }

  .service-cyber .hero-panel{
    background:rgba(3,24,17,.74);
    color:#fff;
    border:1px solid rgba(34,211,238,.22);
    border-top:0;
    border-left:5px solid #14b86a;
    border-radius:8px;
    box-shadow:0 26px 62px rgba(0,0,0,.34);
    animation:none;
  }

  .service-cyber .hero-panel li{
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.14);
    color:rgba(255,255,255,.88);
  }

  .service-network .service-hero{
    grid-template-columns:1fr 1fr;
    min-height:500px;
  }

  .service-network .hero-panel{
    border-radius:34px 8px 34px 8px;
    rotate:-1deg;
    animation:none;
  }

  .service-network .hero-panel li{
    border-left:4px solid var(--accent-2);
  }

  .service-productivity .service-hero{
    grid-template-columns:1.05fr .85fr;
  }

  .service-productivity .hero-panel{
    border-radius:18px;
    border-top:0;
    border-bottom:5px solid #f59e0b;
    background:#fffdf8;
    animation:none;
  }

  .service-productivity .hero-panel ul{
    grid-template-columns:1fr 1fr;
  }

  .service-ai .service-hero{
    grid-template-columns:.95fr 1.05fr;
  }

  .service-ai .hero-panel{
    background:rgba(255,255,255,.08);
    color:#fff;
    border:1px solid rgba(3,189,212,.24);
    border-top:0;
    border-radius:24px;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08),0 30px 70px rgba(0,0,0,.28);
  }

  .service-ai .hero-panel li{
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.12);
    color:rgba(255,255,255,.86);
  }

  .service-ai .hero-panel li::before{
    box-shadow:0 0 0 5px rgba(3,189,212,.12),0 0 24px rgba(3,189,212,.34);
  }

  .service-app .service-hero{
    grid-template-columns:.9fr 1.1fr;
  }

  .service-app .hero-panel{
    border-radius:30px;
    background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(250,245,255,.96));
    border-top:0;
    border-right:5px solid #d946ef;
    animation:none;
  }

  .service-app .hero-panel li{
    border-style:dashed;
  }

  .service-managed .service-hero{
    grid-template-columns:1fr .78fr;
    min-height:500px;
  }

  .service-managed .hero-panel{
    border-radius:16px;
    border-top:0;
    border-left:5px solid #16a34a;
    animation:none;
  }

  .service-managed .hero-panel li{
    border-left:4px solid #16a34a;
  }

  .service-project:not(.why-page) .service-hero{
    grid-template-columns:.8fr 1.05fr;
  }

  .service-project:not(.why-page) .hero-panel{
    border-radius:10px;
    border-top:0;
    border-left:5px solid #334155;
    animation:none;
  }

  .service-project:not(.why-page) .hero-panel li{
    border-radius:8px;
  }

  .service-comms .service-hero{
    grid-template-columns:.92fr .82fr;
    min-height:520px;
  }

  .service-comms .hero-panel{
    border-radius:22px;
    padding:24px;
    border-top:0;
    border-left:5px solid #7c3aed;
    background:rgba(255,255,255,.94);
    box-shadow:0 26px 58px rgba(28,17,64,.24);
    animation:none;
  }

  .service-comms .hero-panel li{
    border-radius:14px;
    border-left:4px solid #7c3aed;
  }

  .service-comms .service-hero h2{
    max-width:620px;
  }

  .service-cloud .service-hero.hero,
  .service-cyber .service-hero.hero,
  .service-network .service-hero.hero,
  .service-productivity .service-hero.hero,
  .service-ai .service-hero.hero,
  .service-app .service-hero.hero,
  .service-managed .service-hero.hero,
  .service-project:not(.why-page) .service-hero.hero,
  .service-comms .service-hero.hero{
    min-height:430px;
  }

  .service-ai .content-grid.enhanced,
  .service-app .content-grid.enhanced{
    grid-template-columns:.85fr 1.15fr;
  }

  .service-cloud .content-grid,
  .service-managed .content-grid{
    grid-template-columns:1.18fr .82fr;
  }

  .service-cyber .content-grid,
  .service-network .content-grid,
  .service-project:not(.why-page) .content-grid{
    grid-template-columns:.85fr 1.15fr;
  }
}

@keyframes panelFloat{
  0%,
  100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-8px);
  }
}

@keyframes riseIn{
  from{
    opacity:0;
    transform:translateY(38px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes waves{
  0%{
    transform:translate(-50%,-75%) rotate(0deg);
  }
  100%{
    transform:translate(-50%,-75%) rotate(360deg);
  }
}

@keyframes useCaseRise{
  from{
    opacity:0;
    transform:translateY(18px) scale(.98);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@media(prefers-reduced-motion:reduce){
  .hero-panel,
  .process-step,
  .use-case,
  .waves::before,
  .waves::after{
    animation:none;
  }

  .hero-panel li,
  .process-step,
  .use-case,
  .use-case::before,
  .use-case::after,
  .use-case .card-icon,
  .btn{
    transition:none;
  }
}

@media(min-width:901px){
  body > main > .service-hero.hero{
    min-height:430px;
    display:flex;
    padding:124px 6% 170px;
  }

  .content-grid.enhanced:has(.process-grid){
    grid-template-columns:minmax(0,1.55fr) minmax(280px,.65fr);
  }

  .content-grid.enhanced:has(.process-grid) .process-grid{
    gap:18px;
  }

  .content-grid.enhanced:has(.process-grid) .process-step{
    min-height:190px;
    padding:22px;
  }

  .content-grid.enhanced:has(.process-grid) > .service-card{
    justify-self:center;
    align-self:start;
    width:min(100%,380px);
    margin-top:84px;
    transform:translateX(24px);
  }
}

.footer{
  background:
    linear-gradient(180deg,var(--footer-fade-from) 0%,color-mix(in srgb,var(--footer-fade-from) 88%,#06152d) 18%,color-mix(in srgb,var(--footer-fade-from) 54%,#06152d) 42%,#06152d 76%,#09294c 100%);
  color:#dce8f7;
  padding:92px 6% 26px;
  margin-top:0;
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  color:#b9c7dc;
  font-size:.86rem;
}

@media(max-width:900px){
  .service-hero,
  .content-grid,
  .content-grid.enhanced{
    grid-template-columns:1fr;
  }

  .process-grid,
  .use-case-grid{
    grid-template-columns:1fr;
  }

  .nav{
    display:none;
  }
}

@media(max-width:620px){
  html,
  body{
    max-width:100%;
    overflow-x:hidden;
  }

  .header,
  .section,
  .footer{
    padding-left:5%;
    padding-right:5%;
    max-width:100vw;
    overflow-x:hidden;
  }

  body:not(.why-page) .header,
  body.why-page .header{
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:54px;
    background:transparent;
    border-bottom:0;
    box-shadow:none;
    z-index:110;
  }

  body:not(.why-page) .brand-logo-horizontal,
  body.why-page .brand-logo-horizontal{
    width:120px;
    margin-top:0;
    filter:brightness(0) invert(1) drop-shadow(0 8px 16px rgba(0,0,0,.28));
  }

  .mobile-home-arrow{
    position:fixed;
    top:15px;
    right:5%;
    z-index:120;
    width:22px;
    height:22px;
    border:0;
    border-radius:50%;
    background:transparent;
    display:block;
    opacity:.82;
    box-shadow:none;
    backdrop-filter:none;
    transform:translateY(0);
    transition:opacity .32s ease, transform .32s ease;
  }

  .mobile-home-arrow.is-hidden{
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px);
  }

  .mobile-home-arrow:hover{
    opacity:1;
  }

  .mobile-home-arrow img{
    width:100%;
    height:100%;
    object-fit:contain;
    filter:brightness(0) invert(1) drop-shadow(0 6px 12px rgba(0,0,0,.35));
  }

  .footer-row a{
    display:none;
  }

  .mobile-card-back{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:24px;
    height:24px;
    margin:0 8px 0 0;
    color:var(--accent);
    font-size:0;
    vertical-align:middle;
  }

  .mobile-card-back::before{
    content:"\2039";
    width:24px;
    height:24px;
    border-radius:50%;
    background:var(--accent);
    color:#fff;
    display:grid;
    place-items:center;
    font-size:1.1rem;
    font-weight:900;
    line-height:1;
    box-shadow:0 6px 14px color-mix(in srgb,var(--accent) 22%,transparent);
    flex:0 0 auto;
  }

  .service-hero.hero,
  .service-hero.hero.ai-hero{
    width:100%;
    max-width:100vw;
    min-height:290px;
    margin:0 0 18px;
    padding:56px 5% 42px;
    border-radius:0;
    gap:0;
    box-shadow:none;
  }

  body.why-page .why-hero{
    width:100%;
    max-width:100vw;
    margin:0 0 18px;
    padding:96px 5% 56px;
    border-radius:0;
    box-shadow:none;
  }

  body.why-page .why-hero h2{
    font-size:clamp(1.25rem,6.8vw,1.7rem);
    line-height:1.08;
    max-width:92%;
    overflow-wrap:break-word;
  }

  body.why-page .why-hero p{
    font-size:clamp(.66rem,3.2vw,.82rem);
    line-height:1.45;
    max-width:92%;
    overflow-wrap:break-word;
  }

  .service-hero.hero h2{
    font-size:clamp(1.05rem,6.2vw,1.55rem);
    line-height:1.06;
    margin-bottom:4px;
    max-width:92%;
    overflow-wrap:break-word;
  }

  .service-hero.hero p{
    font-size:clamp(.62rem,3.2vw,.78rem);
    line-height:1.32;
    max-width:90%;
    margin-top:0;
    overflow-wrap:break-word;
  }

  .service-hero.hero .content{
    width:min(100%,90vw);
    max-width:90vw;
    padding:0;
    transform:translateY(28px);
  }

  .service-hero.hero .eyebrow{
    padding:4px 8px;
    font-size:.46rem;
    margin-bottom:8px;
    letter-spacing:.06em;
  }

  .waves{
    height:30px;
    opacity:.92;
  }

  .waves::before,
  .waves::after{
    width:150vw;
    height:150vw;
    top:-33vw;
  }

  .hero-panel{
    padding:18px;
    border-radius:15px;
    animation:none;
  }

  .process-step{
    background:linear-gradient(180deg,#fff 0%,#f8fbff 100%);
    border:1px solid rgba(207,225,255,.9);
    border-radius:18px;
    padding:18px;
    box-shadow:0 16px 36px rgba(8,25,54,.08);
    animation:none;
  }

  .process-step:hover{
    transform:none;
    border-color:rgba(207,225,255,.9);
    box-shadow:0 16px 36px rgba(8,25,54,.08);
  }

  .process-step span{
    display:none;
  }

  .process-step .card-icon{
    width:40px;
    height:40px;
    border-radius:14px;
    margin-bottom:12px;
  }

  .process-step b{
    font-family:'Plus Jakarta Sans';
    font-size:1.02rem;
    letter-spacing:-.03em;
    margin-bottom:6px;
  }

  .process-step p{
    font-size:.86rem;
    line-height:1.45;
  }

  .service-card{
    position:relative;
  }

  .service-card h3{
    display:inline-block;
    vertical-align:middle;
  }

  .service-list{
    margin-top:12px;
  }
}
