/* ============================================================
   QCT NETWORKS - Corporate Site
   Theme: clean white, signature blue-sky-cyan
   gradient, big bold type, generous whitespace, accent mark.
   ============================================================ */

/* @import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap'); */

@import url('font.css');

:root {
  --black: #0d0d12;
  --ink: #1a1a22;
  --white: #ffffff;
  --paper: #f6f5f8;
  --tint: #e9f1ff;          /* light blue */
  --tint-line: #cfe0ff;
  --grey-700: #4b4b55;
  --grey-600: #6a6a76;
  --grey-400: #9a9aa6;
  --line: #e7e6ea;

  --blue: #0b5cff;
  --blue-deep: #0a3cd8;
  --sky: #18a0fb;
  --cyan: #46d4ff;
  --grad: linear-gradient(120deg, #0a3cff 0%, #1f6bff 42%, #18a0fb 72%, #46d4ff 100%);
  --grad-soft: linear-gradient(120deg, #0b5cff 0%, #18a0fb 100%);

  --font-display: 'Schibsted Grotesk', sans-serif;
  /* --font-body: 'Inter', sans-serif; */
  --font-body: 'Hanken Grotesk', sans-serif;

  --maxw: 1280px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --nav-h: 78px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 22px 50px -24px rgba(20,16,40,0.30);
  --shadow-blue: 0 26px 56px -22px rgba(11,92,255,0.48);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body); color: var(--ink); background: var(--white);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: var(--white); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(4rem, 9vw, 5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--blue);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.eyebrow::before { content: "\f054"; font: var(--fa-font-solid); font-size: 0.62rem; line-height: 1; color: var(--blue); }
.eyebrow .num { color: inherit; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 6.2vw, 5.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4.3vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); letter-spacing: -0.01em; }
p { color: var(--grey-700); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.5; color: var(--ink); max-width: 60ch; font-weight: 400; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  padding: 1rem 1.8rem; border: 2px solid var(--ink); background: var(--ink); color: var(--white);
  border-radius: 2px; transition: all 0.35s var(--ease); cursor: pointer;
}
.btn .arrow { transition: transform 0.35s var(--ease); font-weight: 700; }
.btn:hover { background: var(--blue); border-color: var(--blue); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--light:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn--blue { background: var(--white); color: var(--blue); border-color: var(--blue); }
.btn--blue:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* ---------- Inline link underline ---------- */
.ul { background-image: linear-gradient(var(--blue), var(--blue)); background-size: 0% 2px;
  background-position: 0 100%; background-repeat: no-repeat; transition: background-size 0.35s var(--ease);
  padding-bottom: 2px; color: var(--blue); font-weight: 500; }
.ul:hover { background-size: 100% 2px; }

/* ============================================================ NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 1000; display: flex; align-items: center;
  background: rgba(255,255,255,0.93); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease); }
.nav.hidden { transform: translateY(-100%); }
.nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); width: 100%;
  display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; letter-spacing: -0.04em; color: var(--ink); display: inline-flex; align-items: baseline; }
.logo span { font-weight: 500; font-size: 0.95rem; letter-spacing: 0.02em; color: var(--grey-600); margin-left: 3px; }
/* .logo::after { content: "›"; color: var(--blue); font-weight: 800; margin-left: 4px; font-size: 1.55rem; } */
.logo img { max-height: 18px; }

.nav__links { display: flex; align-items: center; gap: 2.1rem; list-style: none; }
.nav__links > li > a, .nav__links > li > button {
  font-family: var(--font-body); font-size: 0.97rem; font-weight: 500; color: var(--ink);
  background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.4rem 0; position: relative; }
.nav__links > li > a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--blue); transition: width 0.35s var(--ease); }
.nav__links > li > a:hover::after, .nav__links > li > a.active::after { width: 100%; }
.nav__links > li > a:hover, .nav__links > li > a.active { color: var(--blue); }
.dropdown__toggle.active::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%; background: var(--blue);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown__toggle .chev { font-size: 0.72rem; transition: transform 0.3s var(--ease); }
.dropdown.open .dropdown__toggle .chev { transform: rotate(180deg); }
.dropdown__menu { position: absolute; top: calc(100% + 0.9rem); left: -1rem; min-width: 300px;
  background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.3s var(--ease);
  box-shadow: 0 30px 60px -24px rgba(20,16,40,0.30); }
.dropdown:hover .dropdown__menu, .dropdown.open .dropdown__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown__menu a { display: flex; flex-direction: column; gap: 3px; padding: 0.85rem 1rem; border-radius: 4px; transition: background 0.25s; }
.dropdown__menu a:hover { background: var(--tint); }
.dropdown__menu .d-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; color: var(--ink); }
.dropdown__menu .d-sub { font-size: 0.78rem; color: var(--grey-600); }

.nav__cta { display: inline-flex; }
.nav__cta .btn { padding: 0.65rem 1.3rem; font-size: 0.9rem; }

/* Burger */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--ink); transition: all 0.35s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================ HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: var(--white); overflow: hidden; padding-top: var(--nav-h); }
.hero::after { content: ""; position: absolute; right: -12%; top: 50%; transform: translateY(-50%);
  width: min(55vw, 720px); aspect-ratio: 1; background: var(--grad); border-radius: 50%;
  filter: blur(20px); opacity: 0.92; -webkit-mask-image: radial-gradient(circle, black 55%, transparent 72%); mask-image: radial-gradient(circle, black 55%, transparent 72%); }
.hero::before { content: ""; position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: min(34vw, 420px); aspect-ratio: 1; background: var(--white); border-radius: 50%; opacity: 0.55; filter: blur(30px); z-index: 1; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 4rem 0; }
.hero .eyebrow { margin-bottom: 1.6rem; }
.hero h1 { max-width: 17ch; }
.hero h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__tags { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin-top: 2.2rem; font-size: 0.92rem; font-weight: 600; color: var(--grey-700); }
.hero__tags span { display: inline-flex; align-items: center; gap: 1.2rem; }
.hero__tags span::after { content: "\f054"; font: var(--fa-font-solid); font-size: 0.6rem; color: var(--blue); }
.hero__tags span:last-child::after { content: ""; }
.hero__cta { margin-top: 2.8rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-hint { position: absolute; left: var(--pad); bottom: 2.2rem; z-index: 2; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-400); font-weight: 600; display: flex; align-items: center; gap: 0.8rem; }
.scroll-hint::after { content: ""; width: 46px; height: 2px; background: var(--blue); animation: slidein 2s var(--ease) infinite; }
@keyframes slidein { 0%{transform:scaleX(0);transform-origin:left} 50%{transform:scaleX(1);transform-origin:left} 51%{transform-origin:right} 100%{transform:scaleX(0);transform-origin:right} }

/* ---------- Page header (interior) ---------- */
.pagehead { position: relative; background: var(--black); padding: calc(var(--nav-h) + 4.5rem) 0 clamp(3rem,6vw,4.5rem); overflow: hidden; border-bottom: 4px solid transparent; border-image: var(--grad) 1; }
.pagehead::after { content: ""; position: absolute; right: -6%; top: -40%; width: min(40vw,460px); aspect-ratio: 1; background: var(--grad); border-radius: 50%; filter: blur(30px); opacity: 0.55; -webkit-mask-image: radial-gradient(circle, black 50%, transparent 70%); mask-image: radial-gradient(circle, black 50%, transparent 70%); }
.pagehead__inner { position: relative; z-index: 2; }
.pagehead .eyebrow, .pagehead .eyebrow::before { color: var(--sky); }
.pagehead .eyebrow { margin-bottom: 1.3rem; }
.pagehead h1 { max-width: 18ch; color: #fff; }
.pagehead p { color: rgba(255,255,255,0.72); margin-top: 1.3rem; max-width: 56ch; font-size: 1.1rem; }

/* ============================================================ CONTENT BLOCKS */
.split { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.split .eyebrow { margin-bottom: 1.5rem; }

.deliver-list { list-style: none; margin-top: 2rem; border-top: 1px solid var(--line); }
.deliver-list li { display: flex; align-items: baseline; gap: 1.5rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line);
  font-size: 1.2rem; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; color: var(--ink);
  transition: padding-left 0.35s var(--ease), color 0.3s; }
.deliver-list li:hover { padding-left: 1rem; color: var(--blue); }
.deliver-list .idx { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--blue); min-width: 1.8rem; }

/* ---------- Stats ---------- */
.stats { background: var(--paper); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2vw,1.4rem); }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.7rem,3vw,2.4rem);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1; letter-spacing: -0.03em; color: var(--ink); }
.stat__label { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em; color: var(--grey-600); margin-top: 0.9rem; }

/* ---------- Units ---------- */
.units { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem,2.2vw,1.6rem); margin-top: 3rem; }
.unit { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: clamp(1.9rem, 3.5vw, 3rem); position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s; }
.unit:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: transparent; }
.unit__no { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--blue); letter-spacing: 0.02em; }
.unit h3 { margin: 1.1rem 0 1rem; }
.unit__tags { font-size: 0.92rem; line-height: 1.7; color: var(--grey-600); }
.unit__arrow { position: absolute; top: clamp(1.9rem,3.5vw,3rem); right: clamp(1.9rem,3.5vw,3rem); font-size: 1.1rem; color: var(--blue); transform: rotate(-45deg); transition: transform 0.35s var(--ease); }
.unit:hover .unit__arrow { transform: rotate(-45deg) translateX(5px); }

/* ---------- Solution detail ---------- */
.soln { border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 5.5rem) 0; }
.soln:first-of-type { border-top: none; }
.soln__head { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.soln__no { font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--blue); letter-spacing: 0.04em; }
.soln h2 { margin-top: 0.8rem; }
.caps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,1.8vw,1.3rem); margin-top: 2.5rem; }
.cap { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 1.7rem 1.6rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.cap:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.cap__t { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink); }
.cap__d { font-size: 0.94rem; color: var(--grey-600); margin-top: 0.5rem; }

/* Product highlight */
.product { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: clamp(1.8rem,3vw,2.6rem); margin-top: 1.6rem;
  display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product__tag { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; color: var(--white); background: var(--blue); padding: 0.45rem 0.85rem; border-radius: 3px; align-self: start; }
.product h4 { font-size: 1.3rem; }
.product p { font-size: 0.96rem; color: var(--grey-600); margin-top: 0.5rem; }

/* ---------- Why ---------- */
.why { display: grid; gap: clamp(0.9rem,1.6vw,1.2rem); margin-top: 3rem; }
.why__row { background: var(--white); border: 1px solid var(--line); border-radius: 8px; display: grid; grid-template-columns: 3.5rem 1fr; gap: 1.3rem; padding: 1.5rem 1.8rem; align-items: baseline;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.why__row:hover { transform: translateX(8px); box-shadow: var(--shadow-soft); }
.why__row .n { font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--blue); }
.why__row .t { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem,2vw,1.55rem); letter-spacing: -0.01em; color: var(--ink); }

/* ---------- Industries ---------- */
.inds { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.5rem; }
.ind { font-size: 1.2rem; font-weight: 600; padding: 0.75rem 1.3rem; background: var(--white); border: 1px solid var(--line); border-radius: 40px; color: var(--ink);
  transition: all 0.3s var(--ease); }
.ind:hover { background: var(--blue); color: var(--white); border-color: var(--blue); transform: translateY(-3px); }

/* ---------- Tiles ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: clamp(1rem,1.8vw,1.3rem); margin-top: 2.5rem; }
.tile { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 1.9rem 1.6rem; min-height: 132px;
  display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.tile__k { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: var(--blue); }
.tile__v { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; color: var(--ink); }
.note { font-size: 0.8rem; color: var(--grey-400); margin-top: 1.2rem; }
.tile--list { justify-content: flex-start; gap:0.85rem; }
.tile__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.tile__list li { font-size: 0.96rem; color: inherit; line-height: 1.45; }
.tile-grid--even { grid-auto-rows: 1fr; }


/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.2rem,2vw,1.5rem); margin-top: 3rem; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: clamp(1.9rem,3vw,2.5rem); display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.quote:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.quote__mark { font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 0.6; height: 1.4rem; color: var(--blue); }
.quote__txt { font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; letter-spacing: -0.01em; line-height: 1.32; margin: 1.6rem 0 auto; color: var(--ink); }
.quote__who { margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.quote__name { font-weight: 700; color: var(--ink); }
.quote__role { font-size: 0.8rem; color: var(--grey-600); margin-top: 0.25rem; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(1rem,1.8vw,1.3rem); margin-top: 3rem; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: clamp(1.6rem,2.5vw,2.2rem);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.step__n { font-family: var(--font-display); font-weight: 800; font-size: 0.82rem; color: var(--blue); letter-spacing: 0.04em; }
.step h4 { font-size: 1.2rem; margin: 0.9rem 0 0.6rem; }
.step p { font-size: 0.92rem; color: var(--grey-600); }

/* ---------- CTA band (signature gradient) ---------- */
.cta-band { background: var(--grad); color: var(--white); position: relative; overflow: hidden; }
.cta-band__inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { color: var(--white); max-width: 18ch; }
.cta-band p { color: rgba(255,255,255,0.88); margin-top: 1rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: clamp(1.2rem,2.2vw,1.6rem); align-items: stretch; }
.contact-block { margin-bottom: 2.4rem; }
.contact-block .k { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: var(--blue); margin-bottom: 0.7rem; }
.contact-block .v { font-size: 1.05rem; line-height: 1.65; color: var(--grey-700); }
.contact-block .v strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.field { display: flex; flex-direction: column; margin-bottom: 1.3rem; }
.field label { font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; color: var(--grey-600); margin-bottom: 0.5rem; }
.field input, .field textarea { font-family: var(--font-body); font-size: 1rem; padding: 0.95rem 1.1rem; border: 1px solid var(--line); border-radius: 6px; background: var(--white); color: var(--ink); transition: border-color 0.25s, box-shadow 0.25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(11,92,255,0.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.78rem; color: var(--grey-400); margin-top: 1rem; }

/* ============================================================ FOOTER (light) */
.footer { background: var(--paper); color: var(--grey-700); padding: clamp(3.5rem,6vw,5rem) 0 2rem; border-top: 1px solid var(--line); }
.footer__top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer .logo { margin-bottom: 1rem; }
.footer__col h5 { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: var(--ink); margin-bottom: 1.2rem; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.7rem; }
.footer__col a { color: var(--grey-700); transition: color 0.25s; font-size: 0.96rem; }
.footer__col a:hover { color: var(--blue); }
.footer__about { font-size: 0.95rem; line-height: 1.65; max-width: 34ch; color: var(--grey-600); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; font-size: 0.82rem; color: var(--grey-600); flex-wrap: wrap; gap: 1rem; }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* ============================================================ RESPONSIVE */
@media (max-width: 980px) {
  .split, .soln__head, .cta-band__inner, .footer__top { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2,1fr); }
  .units, .quotes { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2,1fr); }
  .caps { grid-template-columns: repeat(2,1fr); }
  .hero::after { right: -30%; opacity: 0.8; }
}
@media (max-width: 760px) {
  .nav__cta { display: none; }
  .burger { display: flex; }
  .nav__links { position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: auto;
    height: calc(100vh - var(--nav-h)); height: calc(100dvh - var(--nav-h));
    background: var(--white); flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 0; padding: 1.5rem var(--pad); transform: translateX(100%); transition: transform 0.4s var(--ease);
    overflow-y: auto; border-top: 1px solid var(--line); }
  .nav__links.open { transform: translateX(0); }
  .nav__links > li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav__links > li > a, .nav__links > li > button { width: 100%; padding: 1.1rem 0; font-size: 1.05rem; justify-content: space-between; }
  .dropdown__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0.8rem; min-width: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
  .dropdown.open .dropdown__menu { max-height: 520px; }
  .dropdown__menu a { padding: 0.7rem 0.8rem; background: var(--tint); margin-bottom: 1px; border-radius: 4px; }
}
@media (max-width: 520px) {
  .stats__grid, .process, .caps { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
}

/* ============================================================
   CARD VARIETY - Accenture-style mix (markup unchanged, via nth-child)
   Types: white (default) · tint (lavender) · solid (black) · gradient (signature)
   ============================================================ */

/* ---- GRADIENT (signature accent, white text) ---- */
.units .unit:nth-child(4),
.stats__grid .stat:nth-child(4),
.quotes .quote:nth-child(2),
.product:first-of-type {
  background: var(--grad); border-color: transparent; color: var(--white);
}
.units .unit:nth-child(4):hover,
.stats__grid .stat:nth-child(4):hover,
.quotes .quote:nth-child(2):hover,
.product:first-of-type:hover { box-shadow: var(--shadow-blue); }
:is(.units .unit:nth-child(4), .stats__grid .stat:nth-child(4), .quotes .quote:nth-child(2), .product:first-of-type)
  :is(.unit__no, .unit__tags, .stat__num, .stat__label, .quote__txt, .quote__name, .quote__role, .quote__mark, .product p, h3, h4) { color: var(--white); }
:is(.units .unit:nth-child(4), .stats__grid .stat:nth-child(4), .quotes .quote:nth-child(2), .product:first-of-type)
  :is(.unit__no, .stat__label, .unit__tags, .quote__role, .product p) { color: rgba(255,255,255,0.85); }
.units .unit:nth-child(4) .unit__arrow { color: var(--white); }
.quotes .quote:nth-child(2) .quote__who { border-top-color: rgba(255,255,255,0.35); }
.product:first-of-type .product__tag { background: var(--white); color: var(--blue); }

/* ---- SOLID black ---- */
.units .unit:nth-child(3),
.tile-grid .tile:nth-child(4n+2),
.process .step:nth-child(4),
.why .why__row:nth-child(5),
.inds .ind:nth-child(3n+3) {
  background: var(--black); border-color: var(--black); color: var(--white);
}
:is(.units .unit:nth-child(3), .tile-grid .tile:nth-child(4n+2), .process .step:nth-child(4), .why .why__row:nth-child(5))
  :is(.unit h3, .tile__v, .step h4, .why__row .t, .unit__tags, .step p) { color: var(--white); }
:is(.units .unit:nth-child(3), .tile-grid .tile:nth-child(4n+2), .process .step:nth-child(4))
  :is(.unit__tags, .step p) { color: rgba(255,255,255,0.7); }
.units .unit:nth-child(3) .unit__no,
.tile-grid .tile:nth-child(4n+2) .tile__k,
.process .step:nth-child(4) .step__n,
.why .why__row:nth-child(5) .n { color: var(--cyan); }
.units .unit:nth-child(3) .unit__arrow { color: var(--white); }

/* ---- TINT (light lavender) ---- */
.stats__grid .stat:nth-child(2),
.units .unit:nth-child(2),
.caps .cap:nth-child(odd),
.tile-grid .tile:nth-child(4n+3),
.process .step:nth-child(2),
.why .why__row:nth-child(even),
.inds .ind:nth-child(3n+2) {
  background: var(--tint); border-color: var(--tint-line);
}

/* ============================================================
   DARK SECTIONS - balanced black/white rhythm
   Cards remap so they stay visible on black:
   default→dark · tint→navy · solid→blue · gradient→gradient
   ============================================================ */
.section--dark { background: var(--black); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p, .section--dark .lead { color: rgba(255,255,255,0.72); }
.section--dark .eyebrow, .section--dark .eyebrow::before { color: var(--sky); }
.section--dark .soln { border-top-color: rgba(255,255,255,0.12); }
.section--dark .soln__no { color: var(--sky); }
.section--dark .note { color: rgba(255,255,255,0.5); }

.section--dark .deliver-list { border-top-color: rgba(255,255,255,0.15); }
.section--dark .deliver-list li { border-bottom-color: rgba(255,255,255,0.12); color: #fff; }
.section--dark .deliver-list li:hover { color: var(--sky); }
.section--dark .deliver-list .idx { color: var(--sky); }

/* base cards on dark */
.section--dark :is(.stat,.unit,.cap,.tile,.quote,.step,.why__row,.product) {
  background: #15151c; border-color: rgba(255,255,255,0.12);
}
.section--dark :is(.stat,.unit,.cap,.tile,.quote,.step,.why__row,.product):hover {
  box-shadow: 0 26px 56px -26px rgba(0,0,0,0.85);
}
.section--dark :is(.stat__num,.unit h3,.cap__t,.tile__v,.quote__txt,.quote__name,.step h4,.why__row .t,.product h4) { color: #fff; }
.section--dark :is(.stat__label,.unit__tags,.cap__d,.quote__role,.step p,.product p) { color: rgba(255,255,255,0.65); }
.section--dark :is(.unit__no,.tile__k,.step__n,.why__row .n) { color: var(--sky); }
.section--dark .quote__mark { color: var(--sky); }
.section--dark .quote__who { border-top-color: rgba(255,255,255,0.18); }
.section--dark .unit__arrow { color: var(--sky); }
.section--dark .ind { background: #15151c; border-color: rgba(255,255,255,0.15); color: #fff; }
.section--dark .ind:hover { background: var(--blue); border-color: var(--blue); }

/* TINT cells -> navy */
.section--dark .stats__grid .stat:nth-child(2),
.section--dark .units .unit:nth-child(2),
.section--dark .caps .cap:nth-child(odd),
.section--dark .tile-grid .tile:nth-child(4n+3),
.section--dark .process .step:nth-child(2),
.section--dark .why .why__row:nth-child(even),
.section--dark .inds .ind:nth-child(3n+2) {
  background: #0f1b33; border-color: rgba(70,120,255,0.30);
}
/* SOLID cells -> solid blue */
.section--dark .units .unit:nth-child(3),
.section--dark .tile-grid .tile:nth-child(4n+2),
.section--dark .process .step:nth-child(4),
.section--dark .why .why__row:nth-child(5),
.section--dark .inds .ind:nth-child(3n+3) {
  background: var(--blue); border-color: var(--blue);
}

.tile-grid.tile-grid--plain .tile, .tile-grid.tile-grid--plain .tile:nth-child(n) { background: var(--white) !important; border-color: var(--line) !important; color: var(--ink) !important; }
.tile-grid.tile-grid--plain .tile .tile__k { color: var(--blue) !important; }
.tile-grid.tile-grid--plain .tile .tile__v { color: var(--ink) !important; }

/* ---- images ---- */
/* Centered logo-wall showcase (partners / clients) */
.showcase { text-align: center; }
.showcase .eyebrow { justify-content: center; }
.showcase h2, .showcase p { margin-left: auto; margin-right: auto; }
.showcase__media { margin-top: 2.5rem; }
.showcase__media img { display: block; margin: 0 auto; width: 100%; height: auto; }
img.partner { max-width: 760px; }   /* wide logo strip */
img.client  { max-width: 980px; }   /* large client wall */

/* ============================================================
   UTILITY CLASSES — apply anywhere as classnames
   Spacing scale: 0=0 · 1=.25rem · 2=.5rem · 3=.75rem · 4=1rem
                  5=1.5rem · 6=2rem · 7=3rem · 8=4rem
   ============================================================ */
.m-0{margin:0!important}.mt-0{margin-top:0!important}.mb-0{margin-bottom:0!important}
.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:.75rem!important}
.mt-4{margin-top:1rem!important}.mt-5{margin-top:1.5rem!important}.mt-6{margin-top:2rem!important}
.mt-7{margin-top:3rem!important}.mt-8{margin-top:4rem!important}
.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:.75rem!important}
.mb-4{margin-bottom:1rem!important}.mb-5{margin-bottom:1.5rem!important}.mb-6{margin-bottom:2rem!important}
.mb-7{margin-bottom:3rem!important}.mb-8{margin-bottom:4rem!important}
.my-4{margin-top:1rem!important;margin-bottom:1rem!important}.my-6{margin-top:2rem!important;margin-bottom:2rem!important}
.mx-auto{margin-left:auto!important;margin-right:auto!important}

.p-0{padding:0!important}
.p-4{padding:1rem!important}.p-5{padding:1.5rem!important}.p-6{padding:2rem!important}
.pt-4{padding-top:1rem!important}.pt-6{padding-top:2rem!important}
.pb-4{padding-bottom:1rem!important}.pb-6{padding-bottom:2rem!important}
.px-4{padding-left:1rem!important;padding-right:1rem!important}
.py-4{padding-top:1rem!important;padding-bottom:1rem!important}.py-6{padding-top:2rem!important;padding-bottom:2rem!important}

/* 2-tile grid with centered content */
.tile-grid--cert { grid-template-columns: repeat(2, 1fr); }
.tile-grid--cert .tile { align-items: center; text-align: center; }
@media (max-width: 480px) {
  .tile-grid--cert { grid-template-columns: 1fr; }
}


/* text align */
.text-left{text-align:left!important}.text-center{text-align:center!important}.text-right{text-align:right!important}

/* font weight */
.fw-light{font-weight:300!important}.fw-regular{font-weight:400!important}.fw-medium{font-weight:500!important}
.fw-semibold{font-weight:600!important}.fw-bold,.bold{font-weight:700!important}.fw-extrabold{font-weight:800!important}

/* misc text */
.uppercase{text-transform:uppercase!important;letter-spacing:0.04em}
.italic{font-style:italic!important}
.text-blue{color:var(--blue)!important}.text-muted{color:var(--grey-600)!important}.text-white{color:#fff!important}

/* display helpers */
.d-none{display:none!important}.d-block{display:block!important}.d-flex{display:flex!important}
.items-center{align-items:center!important}.justify-center{justify-content:center!important}
.gap-2{gap:.5rem!important}.gap-4{gap:1rem!important}
.w-100{width:100%!important}

/* 2-column grid utility (e.g. big list cards) */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem,2.2vw,1.6rem); margin-top: 2.5rem; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }


/* contact cards (balanced equal-height grid) */
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: 14px; padding: clamp(1.6rem,2.5vw,2.2rem); }
.contact-card .k { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: var(--blue); margin-bottom: 0.9rem; }
.contact-card .v { font-size: 1rem; line-height: 1.7; color: var(--grey-700); }
.contact-card .v b { color: var(--ink); font-weight: 700; }
.contact-card .ul { color: var(--blue); }

/* logo wall (partner / technology brand logos) */
.logo-wall { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1rem; margin-top: 2.5rem; }
.logo-wall__item { display: flex; align-items: center; justify-content: center; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.4rem; min-height: 92px; }
.logo-wall__item img { max-width: 100%; max-height: 46px; width: auto; height: auto; filter: grayscale(1); opacity: 0.7; transition: filter 0.25s, opacity 0.25s; }
.logo-wall__item:hover img { filter: grayscale(0); opacity: 1; }
.logo-wall__item span { font-size: 0.85rem; color: var(--grey-400); }


/* fix: keep chip text readable on hover (tint/solid variants kept dark bg) */
.inds .ind:nth-child(3n+2):hover,
.inds .ind:nth-child(3n+3):hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.section--dark .inds .ind:nth-child(3n+2):hover,
.section--dark .inds .ind:nth-child(3n+3):hover { background: var(--blue); border-color: var(--blue); color: #fff; }

/* per-pillar media placeholder (product image / supplier / reference logos) */
.pillar-media { margin-top: 2.25rem; border: 1.5px dashed var(--line); border-radius: 14px; min-height: 150px; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.pillar-media img { max-width: 100%; height: auto; border-radius: 10px; display: block; }
.pillar-media figcaption { font-size: 0.85rem; color: var(--grey-400); text-align: center; }
.section--dark .pillar-media { border-color: rgba(255,255,255,0.22); }
.section--dark .pillar-media figcaption { color: rgba(255,255,255,0.5); }
