/* =============================================
   PATCHED NETWORKS – styles.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #07070e;
  --bg-card:      #0c0c1a;
  --bg-card2:     #0f0f20;
  --bg-strip:     #09091a;
  --purple:       #7c3aed;
  --purple-mid:   #9333ea;
  --purple-light: #a855f7;
  --purple-glow:  rgba(124,58,237,.25);
  --cyan:         #06b6d4;
  --green:        #22c55e;
  --orange:       #f97316;
  --pink:         #ec4899;
  --white:        #ffffff;
  --gray:         #9ca3af;
  --gray-light:   #d1d5db;
  --border:       rgba(124,58,237,.2);
  --border-soft:  rgba(255,255,255,.07);
  --font-head:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography helpers ───────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}

/* ── Buttons ──────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem 1.6rem;
  border-radius: 4px;
  border: 2px solid var(--purple);
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .15s;
}
.btn-primary:hover { background: var(--purple-mid); border-color: var(--purple-mid); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem 1.6rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--purple-light); background: rgba(124,58,237,.1); transform: translateY(-1px); }

/* ── NAVIGATION ───────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,7,14,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.logo-icon { width: 38px; height: 42px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.logo-text span {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gray);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-light);
  border-radius: 4px;
  transition: color .2s, background .2s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-link svg { width: 10px; height: 10px; opacity: .6; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 200px;
  background: #0e0e1e;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block;
  padding: .55rem .85rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray);
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.nav-dropdown a:hover { color: var(--white); background: rgba(124,58,237,.15); }

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-cta .btn-outline {
  font-size: .75rem;
  padding: .55rem 1.2rem;
  border-radius: 4px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: #0a0a15;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: .7rem .5rem;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border-soft);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav .mobile-cta { margin-top: 1rem; }

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

/* background grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

/* Left column */
.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
}
.hero-title .white { color: var(--white); }
.hero-title .purple {
  background: linear-gradient(135deg, #9333ea 0%, #a855f7 50%, #c026d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.hero-tagline span { margin: 0 .4rem; color: var(--purple-light); }

.hero-body {
  font-size: .95rem;
  color: var(--gray);
  max-width: 420px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Right column */
.hero-right {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Engineer badge */
.hero-badge {
  position: absolute;
  top: 0; right: 0;
  border: 2px solid var(--purple);
  border-radius: 4px;
  padding: .65rem 1rem;
  background: rgba(124,58,237,.08);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.hero-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-badge-text strong {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-badge-code {
  font-family: monospace;
  font-size: 1.3rem;
  color: var(--purple-light);
  opacity: .85;
}

/* Hero image container */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .65;
  filter: saturate(1.3) hue-rotate(-10deg);
}
/* dark gradient overlay on image */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,7,14,1) 0%,
    rgba(7,7,14,.4) 40%,
    rgba(7,7,14,.1) 100%
  );
  pointer-events: none;
}

/* Network arc lines SVG */
.hero-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

/* Van overlay */
.hero-van {
  position: absolute;
  bottom: 0; right: 0;
  width: 280px;
  z-index: 6;
}
.hero-van img { width: 100%; object-fit: contain; }

/* Van placeholder if no image */
.van-placeholder {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 240px; height: 120px;
  background: linear-gradient(135deg, #1a1a30 0%, #0e0e20 100%);
  border-radius: 6px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}
.van-placeholder-inner {
  text-align: center;
}
.van-placeholder-inner .van-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-bottom: .25rem;
}
.van-placeholder-inner strong {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.1;
}
.van-placeholder-inner span {
  font-size: .55rem;
  letter-spacing: .2em;
  color: var(--gray);
  text-transform: uppercase;
}

/* Dot nodes on arcs */
.arc-node {
  animation: pulse-node 2.5s ease-in-out infinite;
}
@keyframes pulse-node {
  0%, 100% { opacity: .9; r: 5; }
  50%       { opacity: .5; r: 3; }
}
.arc-line {
  stroke-dasharray: 8 6;
  animation: dash-flow 3s linear infinite;
}
@keyframes dash-flow {
  to { stroke-dashoffset: -60; }
}

/* ── SERVICES SECTION ─────────────────────── */
.services {
  background: var(--bg);
  padding: 6rem 2rem;
}
.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

/* Service Card */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 16px 48px rgba(124,58,237,.15);
}

/* Card image area */
.service-card-img {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #0a0a18;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .7;
  transition: transform .4s, opacity .3s;
}
.service-card:hover .service-card-img img { transform: scale(1.04); opacity: .85; }

/* Card icon badge */
.service-card-icon {
  position: absolute;
  top: 12px; left: 12px;
  width: 40px; height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.service-card-icon svg { width: 22px; height: 22px; }

/* card icon colour variants */
.icon-purple { background: rgba(124,58,237,.2); border: 1px solid rgba(124,58,237,.4); }
.icon-purple svg { color: var(--purple-light); }
.icon-cyan   { background: rgba(6,182,212,.15);  border: 1px solid rgba(6,182,212,.35); }
.icon-cyan   svg { color: var(--cyan); }
.icon-green  { background: rgba(34,197,94,.15);  border: 1px solid rgba(34,197,94,.35); }
.icon-green  svg { color: var(--green); }
.icon-orange { background: rgba(249,115,22,.15);  border: 1px solid rgba(249,115,22,.35); }
.icon-orange svg { color: var(--orange); }
.icon-pink   { background: rgba(168,85,247,.15);  border: 1px solid rgba(168,85,247,.4); }
.icon-pink   svg { color: #d946ef; }

/* card body */
.service-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.service-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}
.service-card-desc {
  font-size: .8rem;
  color: var(--gray);
  line-height: 1.55;
}

/* card checklist */
.service-checklist { display: flex; flex-direction: column; gap: .3rem; margin-top: .1rem; }
.service-checklist li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--gray-light);
}
.check-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-icon svg { width: 9px; height: 9px; }
.check-purple { border-color: var(--purple-light); color: var(--purple-light); }
.check-cyan   { border-color: var(--cyan);         color: var(--cyan); }
.check-green  { border-color: var(--green);        color: var(--green); }
.check-orange { border-color: var(--orange);       color: var(--orange); }
.check-pink   { border-color: #d946ef;             color: #d946ef; }

/* learn more */
.service-learn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: .5rem;
  border-top: 1px solid var(--border-soft);
  transition: gap .2s;
}
.service-learn:hover { gap: .6rem; }
.learn-purple { color: var(--purple-light); }
.learn-cyan   { color: var(--cyan); }
.learn-green  { color: var(--green); }
.learn-orange { color: var(--orange); }
.learn-pink   { color: #d946ef; }

/* ── FEATURES STRIP ───────────────────────── */
.features-strip {
  background: var(--bg-strip);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 2.5rem 2rem;
}
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .75rem 1rem;
  border-right: 1px solid var(--border-soft);
}
.feature-item:last-child { border-right: none; }

.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(124,58,237,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon-wrap svg { width: 22px; height: 22px; color: var(--purple-light); }

.feature-text { display: flex; flex-direction: column; gap: .15rem; }
.feature-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}
.feature-desc {
  font-size: .75rem;
  color: var(--gray);
  line-height: 1.45;
}

/* ── WHO WE HELP ──────────────────────────── */
.who-help {
  background: var(--bg);
  padding: 6rem 2rem;
}
.who-help-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 4rem;
  align-items: center;
}

.who-help-left {}
.who-help-header { margin-bottom: 2.5rem; }
.who-help-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.audience-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  cursor: pointer;
  transition: transform .2s;
}
.audience-item:hover { transform: translateY(-3px); }

.audience-icon {
  width: 64px; height: 64px;
  border: 1.5px solid rgba(124,58,237,.35);
  border-radius: 8px;
  background: rgba(124,58,237,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}
.audience-item:hover .audience-icon {
  border-color: var(--purple-light);
  background: rgba(124,58,237,.15);
}
.audience-icon svg { width: 30px; height: 30px; color: var(--purple-light); }
.audience-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-light);
  max-width: 80px;
  line-height: 1.3;
}

/* Right quote panel */
.who-help-right {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.who-help-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light), transparent);
}

.quote-mark {
  font-size: 5rem;
  line-height: .7;
  color: var(--purple);
  font-family: Georgia, serif;
  margin-bottom: 1rem;
  display: block;
  opacity: .6;
}
.quote-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.quote-text .highlight { color: var(--purple-light); }
.quote-sub {
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.quote-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.uk-flag {
  font-size: 2rem;
  line-height: 1;
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: #050510;
  border-top: 1px solid var(--border-soft);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

/* mountain silhouette */
.footer-mountain {
  position: absolute;
  bottom: 0; right: 0;
  width: 380px;
  pointer-events: none;
  opacity: .35;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* footer left */
.footer-left { display: flex; flex-direction: column; gap: 1.25rem; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.footer-ready {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.footer-ready strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-ready span {
  font-size: .875rem;
  color: var(--gray);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .75rem 1.5rem;
  border-radius: 4px;
  width: fit-content;
  transition: background .2s;
}
.footer-cta:hover { background: var(--purple-mid); }

/* footer right */
.footer-right { display: flex; flex-direction: column; gap: 1.5rem; }

.footer-contact { display: flex; flex-direction: column; gap: .65rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--gray-light);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--purple-light); flex-shrink: 0; }

.footer-social {
  display: flex;
  gap: .75rem;
}
.social-btn {
  width: 40px; height: 40px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(124,58,237,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: border-color .2s, background .2s, color .2s;
}
.social-btn:hover { border-color: var(--purple-light); background: rgba(124,58,237,.2); color: var(--white); }
.social-btn svg { width: 18px; height: 18px; }

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .75rem;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .features-inner { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { height: 340px; width: 100%; }
  .hero-badge { top: 1rem; right: 1rem; }
  .who-help-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-mountain { width: 220px; opacity: .2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: none; }
  .who-help-grid { justify-content: center; }
  .hero-title { font-size: clamp(2.8rem, 8vw, 4.5rem); }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-inner { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════
   INNER PAGE STYLES
═══════════════════════════════════════════ */

/* ── Active nav link ─────────────────────── */
.nav-active { color: var(--white) !important; }
.nav-active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: .85rem; right: .85rem;
  height: 2px;
  background: var(--purple-light);
  border-radius: 2px;
}
.nav-item { position: relative; }

/* ── Page Hero ───────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #09091c 0%, #0d0d22 50%, #070712 100%);
  border-bottom: 1px solid var(--border-soft);
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 320px;
  background: radial-gradient(ellipse, rgba(124,58,237,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1rem;
}
.page-hero-label span {
  display: inline-block;
  width: 22px; height: 1.5px;
  background: var(--purple-light);
}
.page-hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.page-hero-title .accent { color: var(--purple-light); }
.page-hero-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.page-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero-icon {
  width: 72px; height: 72px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(124,58,237,.12);
  border: 1px solid rgba(124,58,237,.3);
}
.page-hero-icon svg { width: 36px; height: 36px; color: var(--purple-light); }
.page-hero-icon.cyan   { background: rgba(6,182,212,.1);  border-color: rgba(6,182,212,.3); }
.page-hero-icon.cyan   svg { color: var(--cyan); }
.page-hero-icon.green  { background: rgba(34,197,94,.1);  border-color: rgba(34,197,94,.3); }
.page-hero-icon.green  svg { color: var(--green); }
.page-hero-icon.orange { background: rgba(249,115,22,.1); border-color: rgba(249,115,22,.3); }
.page-hero-icon.orange svg { color: var(--orange); }
.page-hero-icon.pink   { background: rgba(217,70,239,.1); border-color: rgba(217,70,239,.3); }
.page-hero-icon.pink   svg { color: #d946ef; }

/* ── Breadcrumb ──────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: .45rem;
  font-size: .73rem; color: var(--gray);
  margin-bottom: 1.5rem;
  justify-content: center;
}
.breadcrumb a { color: var(--gray); transition: color .18s; }
.breadcrumb a:hover { color: var(--purple-light); }
.breadcrumb-sep { color: rgba(255,255,255,.2); }
.breadcrumb-current { color: var(--purple-light); }

/* ── Content sections ────────────────────── */
.page-section { padding: 5rem 2rem; }
.page-section.dark  { background: var(--bg); }
.page-section.strip { background: var(--bg-strip); }
.page-section.card  { background: var(--bg-card); }
.section-inner { max-width: 1280px; margin: 0 auto; }

/* Section headers */
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .section-label { display: block; margin-bottom: .5rem; }
.section-head .section-title { margin-bottom: .75rem; }
.section-head > p { font-size: .95rem; color: var(--gray); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.section-head.left { text-align: left; }
.section-head.left > p { margin-left: 0; }

/* ── Grids ───────────────────────────────── */
.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col.top { align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.four-col  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child  { order: 1; }

/* ── Rich body text ──────────────────────── */
.rich-body h2 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--white); margin-bottom: .8rem;
}
.rich-body h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.15rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--white); margin-bottom: .45rem;
}
.rich-body p   { font-size: .92rem; color: var(--gray); line-height: 1.75; margin-bottom: .9rem; }
.rich-body p:last-child { margin-bottom: 0; }
.rich-body .accent { color: var(--purple-light); }

/* ── Detail cards ────────────────────────── */
.detail-card {
  background: var(--bg-card2);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.detail-card:hover {
  border-color: var(--border);
  box-shadow: 0 14px 44px rgba(124,58,237,.13);
  transform: translateY(-3px);
}
.detail-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.detail-card-icon svg { width: 24px; height: 24px; color: var(--purple-light); }
.detail-card-icon.cyan   { background: rgba(6,182,212,.1);  border-color: rgba(6,182,212,.25); }
.detail-card-icon.cyan   svg { color: var(--cyan); }
.detail-card-icon.green  { background: rgba(34,197,94,.1);  border-color: rgba(34,197,94,.25); }
.detail-card-icon.green  svg { color: var(--green); }
.detail-card-icon.orange { background: rgba(249,115,22,.1); border-color: rgba(249,115,22,.25); }
.detail-card-icon.orange svg { color: var(--orange); }
.detail-card-icon.pink   { background: rgba(217,70,239,.1); border-color: rgba(217,70,239,.25); }
.detail-card-icon.pink   svg { color: #d946ef; }
.detail-card h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.05rem; letter-spacing: .07em;
  text-transform: uppercase; color: var(--white); margin-bottom: .45rem;
}
.detail-card p { font-size: .86rem; color: var(--gray); line-height: 1.6; }

/* ── Highlight list ──────────────────────── */
.highlight-list { display: flex; flex-direction: column; gap: .7rem; margin-top: .5rem; }
.highlight-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .9rem; color: var(--gray-light); line-height: 1.5;
}
.hl-icon {
  width: 20px; height: 20px;
  border-radius: 50%; border: 1.5px solid var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.hl-icon svg { width: 10px; height: 10px; color: var(--purple-light); }
.hl-icon.cyan   { border-color: var(--cyan); }
.hl-icon.cyan   svg { color: var(--cyan); }
.hl-icon.green  { border-color: var(--green); }
.hl-icon.green  svg { color: var(--green); }
.hl-icon.orange { border-color: var(--orange); }
.hl-icon.orange svg { color: var(--orange); }

/* ── Process steps ───────────────────────── */
.process-list { display: flex; flex-direction: column; gap: 1.5rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(124,58,237,.15); border: 1.5px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900; font-size: 1rem;
  color: var(--purple-light); flex-shrink: 0;
}
.step-content h4 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--white); margin-bottom: .3rem;
}
.step-content p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ── Stats bar ───────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-soft);
  border: 1px solid var(--border-soft); border-radius: 8px; overflow: hidden;
}
.stats-bar.two { grid-template-columns: repeat(2, 1fr); }
.stat-item { background: var(--bg-card2); padding: 2rem; text-align: center; }
.stat-num {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple-light); line-height: 1; margin-bottom: .35rem;
}
.stat-label { font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); }

/* ── Value cards ─────────────────────────── */
.value-card {
  background: var(--bg-card2); border: 1px solid var(--border-soft);
  border-radius: 8px; padding: 1.75rem;
  border-top: 2px solid var(--purple);
}
.value-card .vc-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.value-card .vc-icon svg { width: 22px; height: 22px; color: var(--purple-light); }
.value-card h3 {
  font-family: var(--font-head); font-weight: 800;
  font-size: 1.05rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--white); margin-bottom: .45rem;
}
.value-card p { font-size: .86rem; color: var(--gray); line-height: 1.6; }

/* ── Team cards ──────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { background: var(--bg-card2); border: 1px solid var(--border-soft); border-radius: 10px; overflow: hidden; text-align: center; }
.team-card-photo {
  height: 220px;
  background: linear-gradient(135deg, #0d0d22 0%, #1a1040 100%);
  display: flex; align-items: center; justify-content: center;
}
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(124,58,237,.2); border: 2px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.photo-placeholder svg { width: 36px; height: 36px; color: var(--purple-light); }
.team-card-body { padding: 1.25rem; }
.team-card-name { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; letter-spacing: .07em; text-transform: uppercase; color: var(--white); margin-bottom: .2rem; }
.team-card-role { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-light); }

/* ── Testimonial cards ───────────────────── */
.testimonial-card {
  background: var(--bg-card2); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 2rem;
}
.testimonial-quote { font-size: 3rem; color: var(--purple); line-height: .7; font-family: Georgia, serif; display: block; opacity: .5; margin-bottom: .75rem; }
.testimonial-text { font-size: .9rem; color: var(--gray-light); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(124,58,237,.2); border: 1.5px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.testimonial-avatar svg { width: 20px; height: 20px; color: var(--purple-light); }
.testimonial-info strong { display: block; font-size: .85rem; font-weight: 700; color: var(--white); }
.testimonial-info span  { font-size: .75rem; color: var(--gray); }

/* ── Pricing cards ───────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card {
  background: var(--bg-card2); border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 2rem; display: flex; flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.pricing-card.popular { border-color: var(--purple); box-shadow: 0 0 40px rgba(124,58,237,.2); }
.pricing-badge {
  display: inline-flex; background: var(--purple); color: var(--white);
  font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: .2rem .65rem; border-radius: 100px; margin-bottom: .75rem; width: fit-content;
}
.pricing-tier { font-family: var(--font-head); font-weight: 900; font-size: 1.3rem; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: .4rem; }
.pricing-desc { font-size: .8rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.5; }
.pricing-price { font-family: var(--font-head); font-weight: 900; font-size: 2rem; color: var(--purple-light); margin-bottom: 1.5rem; }
.pricing-price small { font-size: .875rem; color: var(--gray); font-family: var(--font-body); font-weight: 400; }
.pricing-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--gray-light); }
.pricing-features li svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.pricing-card .btn-primary,
.pricing-card .btn-outline { width: 100%; justify-content: center; font-size: .8rem; padding: .7rem; }

/* ── FAQ ─────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--bg-card2); border: 1px solid var(--border-soft); border-radius: 6px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 1.1rem 1.25rem; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  cursor: pointer; text-align: left; color: var(--white);
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  transition: background .2s;
}
.faq-question:hover { background: rgba(124,58,237,.06); }
.faq-arrow {
  width: 22px; height: 22px; border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform .3s, border-color .2s;
}
.faq-arrow svg { width: 10px; height: 10px; color: var(--purple-light); }
.faq-item.open .faq-arrow { transform: rotate(180deg); border-color: var(--purple-light); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 1.25rem;
  font-size: .875rem; color: var(--gray); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.25rem 1.25rem; }

/* ── CTA Band ────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0e0e24 0%, #150e30 50%, #0a0a18 100%);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-band h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: .04em; text-transform: uppercase; color: var(--white); margin-bottom: .75rem; }
.cta-band p  { font-size: .95rem; color: var(--gray); margin-bottom: 2rem; line-height: 1.7; }
.cta-band-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact form ────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr .55fr; gap: 4rem; align-items: start; }
.contact-form-wrap { background: var(--bg-card2); border: 1px solid var(--border-soft); border-radius: 10px; padding: 2.5rem; }
.contact-form-wrap h2 { font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; letter-spacing: .06em; text-transform: uppercase; color: var(--white); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--border-soft);
  border-radius: 5px; padding: .8rem 1rem;
  color: var(--white); font-family: var(--font-body); font-size: .9rem;
  outline: none; transition: border-color .2s; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); }
.form-group select option { background: #0e0e1a; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.22); }
.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { background: var(--bg-card2); border: 1px solid var(--border-soft); border-radius: 8px; padding: 1.5rem; }
.contact-detail h3 { font-family: var(--font-head); font-weight: 800; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--gray-light); margin-bottom: .75rem; line-height: 1.45; }
.contact-detail-item svg { width: 16px; height: 16px; color: var(--purple-light); flex-shrink: 0; margin-top: 2px; }
.contact-detail-item a { color: var(--gray-light); transition: color .2s; }
.contact-detail-item a:hover { color: var(--purple-light); }
.contact-detail-item:last-child { margin-bottom: 0; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success .success-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(34,197,94,.15); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.form-success .success-icon svg { width: 28px; height: 28px; color: var(--green); }
.form-success h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; letter-spacing: .06em; text-transform: uppercase; color: var(--white); margin-bottom: .5rem; }
.form-success p { font-size: .9rem; color: var(--gray); line-height: 1.6; }

/* ── Info box ────────────────────────────── */
.info-box {
  background: rgba(124,58,237,.07); border: 1px solid rgba(124,58,237,.22);
  border-radius: 8px; padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.info-box svg { width: 20px; height: 20px; color: var(--purple-light); flex-shrink: 0; margin-top: 2px; }
.info-box p { font-size: .875rem; color: var(--gray-light); line-height: 1.6; margin: 0; }
.info-box.green { background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.22); }
.info-box.green svg { color: var(--green); }

/* ── Service link cards ──────────────────── */
.service-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.service-link-card {
  background: var(--bg-card2); border: 1px solid var(--border-soft);
  border-radius: 8px; padding: 1.4rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color .2s, background .2s, transform .2s;
}
.service-link-card:hover { border-color: var(--border); background: rgba(124,58,237,.07); transform: translateY(-2px); }
.slc-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.slc-icon svg { width: 20px; height: 20px; color: var(--purple-light); }
.slc-body h4 { font-family: var(--font-head); font-weight: 800; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: .25rem; }
.slc-body p  { font-size: .78rem; color: var(--gray); line-height: 1.45; }
.slc-link { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-light); display: inline-flex; align-items: center; gap: .25rem; margin-top: .35rem; transition: gap .15s; }
.service-link-card:hover .slc-link { gap: .45rem; }

/* ── Comparison table ────────────────────── */
.compare-wrap { overflow-x: auto; margin-top: 2rem; }
.compare-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border-soft); border-radius: 8px; overflow: hidden; min-width: 600px; }
.compare-table th {
  background: rgba(124,58,237,.1); padding: 1rem 1.25rem; text-align: left;
  font-family: var(--font-head); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--white); border-bottom: 1px solid var(--border);
}
.compare-table th:first-child { width: 38%; }
.compare-table td { padding: .875rem 1.25rem; font-size: .85rem; color: var(--gray-light); border-bottom: 1px solid var(--border-soft); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.ctick { color: var(--green); font-weight: 600; }
.ccross { color: rgba(255,255,255,.2); }
.chigh { color: var(--purple-light); font-weight: 600; }

/* ── Why-us reason alternating ───────────── */
.reason-section { padding: 4rem 0; border-bottom: 1px solid var(--border-soft); }
.reason-section:last-child { border-bottom: none; }
.reason-num {
  font-family: var(--font-head); font-weight: 900;
  font-size: 5rem; line-height: 1; color: rgba(124,58,237,.12);
  margin-bottom: -.5rem;
}

/* ── Responsive - inner pages ────────────── */
@media (max-width: 1024px) {
  .three-col { grid-template-columns: repeat(2, 1fr); }
  .four-col  { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .service-link-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse > :first-child { order: 0; }
  .two-col.reverse > :last-child  { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .three-col { grid-template-columns: 1fr; }
  .four-col  { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .service-link-grid { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .page-section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3.5rem; }
  .cta-band  { padding: 3.5rem 1.5rem; }
}

/* ════════════════════════════════════════════
   INNER PAGE STYLES
════════════════════════════════════════════ */

/* ── Page Hero ─────────────────────────────── */
.page-hero {
  padding: 148px 2rem 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0b1c 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gray); transition: color .2s; }
.breadcrumb a:hover { color: var(--purple-light); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--purple-light); }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 20px;
  border: 1px solid;
  margin-bottom: 1.25rem;
}
.tag-purple { color: var(--purple-light); border-color: rgba(168,85,247,.35); background: rgba(168,85,247,.08); }
.tag-cyan   { color: var(--cyan);         border-color: rgba(6,182,212,.35);  background: rgba(6,182,212,.08); }
.tag-green  { color: var(--green);        border-color: rgba(34,197,94,.35);  background: rgba(34,197,94,.08); }
.tag-orange { color: var(--orange);       border-color: rgba(249,115,22,.35); background: rgba(249,115,22,.08); }
.tag-pink   { color: #d946ef;             border-color: rgba(217,70,239,.35); background: rgba(217,70,239,.08); }
.tag-white  { color: var(--gray-light);   border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.05); }
.page-hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1.25rem;
}
.page-hero-title .accent { color: var(--purple-light); }
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.page-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── Content Sections ─────────────────────── */
.content-section { padding: 5rem 2rem; }
.content-section.alt { background: #09091a; }
.content-inner { max-width: 1280px; margin: 0 auto; }
.section-header-left { margin-bottom: 3rem; }
.section-header-centre { text-align: center; margin-bottom: 3rem; }

/* ── Split Grid ──────────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-grid.gap-lg { gap: 6rem; }
.split-grid-text { display: flex; flex-direction: column; gap: 1.25rem; }
.split-grid-text h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.split-grid-text h2 .accent { color: var(--purple-light); }
.split-grid-text p { font-size: .95rem; color: var(--gray); line-height: 1.7; }
.split-grid-visual {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}
.split-grid-visual::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 70%);
  pointer-events: none;
}
.visual-icon-big {
  width: 100px; height: 100px;
  border-radius: 16px;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-icon-big svg { width: 48px; height: 48px; }
.visual-icon-purple { border-color: rgba(168,85,247,.5); background: rgba(168,85,247,.1); color: var(--purple-light); }
.visual-icon-cyan   { border-color: rgba(6,182,212,.5);  background: rgba(6,182,212,.1);  color: var(--cyan); }
.visual-icon-green  { border-color: rgba(34,197,94,.5);  background: rgba(34,197,94,.1);  color: var(--green); }
.visual-icon-orange { border-color: rgba(249,115,22,.5); background: rgba(249,115,22,.1); color: var(--orange); }
.visual-icon-pink   { border-color: rgba(217,70,239,.5); background: rgba(217,70,239,.1); color: #d946ef; }

/* ── Feature Check List ─────────────────── */
.check-list { display: flex; flex-direction: column; gap: .65rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--gray-light);
  line-height: 1.5;
}
.check-list .ci {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-list .ci svg { width: 10px; height: 10px; }
.ci-p { border-color: var(--purple-light); color: var(--purple-light); }
.ci-c { border-color: var(--cyan);  color: var(--cyan); }
.ci-g { border-color: var(--green); color: var(--green); }
.ci-o { border-color: var(--orange);color: var(--orange); }
.ci-k { border-color: #d946ef;      color: #d946ef; }
.ci-w { border-color: var(--gray-light); color: var(--gray-light); }

/* ── Feature Cards Grid ──────────────────── */
.feat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color .25s, transform .25s;
}
.feat-card:hover { border-color: var(--border); transform: translateY(-3px); }
.feat-card-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feat-card-icon svg { width: 24px; height: 24px; }
.fci-p { background: rgba(168,85,247,.1); color: var(--purple-light); }
.fci-c { background: rgba(6,182,212,.1);  color: var(--cyan); }
.fci-g { background: rgba(34,197,94,.1);  color: var(--green); }
.fci-o { background: rgba(249,115,22,.1); color: var(--orange); }
.fci-k { background: rgba(217,70,239,.1); color: #d946ef; }
.fci-w { background: rgba(255,255,255,.05); color: var(--gray-light); }
.feat-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}
.feat-card p { font-size: .82rem; color: var(--gray); line-height: 1.55; }

/* ── Process Steps ──────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: steps;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color .25s;
}
.step-card:hover { border-color: var(--border); }
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple);
  font-size: 1.2rem;
  z-index: 2;
}
.step-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--purple-light);
  opacity: .3;
  margin-bottom: .75rem;
}
.step-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}
.step-card p { font-size: .8rem; color: var(--gray); line-height: 1.55; }

/* ── Pricing ─────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: border-color .25s, transform .25s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--purple);
  background: #0e0e22;
  box-shadow: 0 0 40px rgba(124,58,237,.2);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 12px;
}
.pricing-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: .5rem;
}
.pricing-desc {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.5;
}
.pricing-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.75rem; }
.pricing-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .82rem; color: var(--gray-light); line-height: 1.4;
}
.pricing-list .ci { margin-top: 1px; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: .7rem;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--purple);
  color: var(--purple-light);
  background: transparent;
  transition: background .2s, color .2s;
}
.pricing-cta:hover { background: var(--purple); color: var(--white); }
.pricing-card.featured .pricing-cta { background: var(--purple); color: var(--white); }
.pricing-card.featured .pricing-cta:hover { background: var(--purple-mid); }

/* ── Stats Strip ─────────────────────────── */
.stats-strip {
  background: var(--bg-strip);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 3rem 2rem;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid var(--border-soft);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .02em;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.stat-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: .25rem;
}

/* ── FAQ ─────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .75rem; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  user-select: none;
}
.faq-q span {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
  transition: transform .3s, background .2s;
}
.faq-icon svg { width: 12px; height: 12px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(124,58,237,.2); }
.faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .875rem;
  color: var(--gray);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* ── CTA Section ─────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0e0e22 0%, #0b0b18 100%);
  border-top: 1px solid var(--border-soft);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section-inner { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-section h2 .accent { color: var(--purple-light); }
.cta-section p {
  font-size: .95rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact Page ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form-wrap { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-card2);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: #0e0e1a; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  width: 100%;
  justify-content: center;
}
.form-submit:hover { background: var(--purple-mid); transform: translateY(-1px); }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color .2s;
}
.contact-info-card:hover { border-color: var(--border); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 8px;
  background: rgba(124,58,237,.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-text { display: flex; flex-direction: column; gap: .2rem; }
.contact-info-text strong {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}
.contact-info-text a, .contact-info-text span {
  font-size: .9rem;
  color: var(--white);
  transition: color .2s;
}
.contact-info-text a:hover { color: var(--purple-light); }
.response-promise {
  background: rgba(124,58,237,.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: .5rem;
}
.response-promise svg { width: 22px; height: 22px; color: var(--purple-light); flex-shrink: 0; }
.response-promise p { font-size: .82rem; color: var(--gray-light); line-height: 1.5; }
.response-promise strong { color: var(--white); }

/* ── Why Us – Comparison Table ────────────── */
.compare-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
.compare-table thead th {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--bg-card2);
  color: var(--gray-light);
}
.compare-table thead th.highlight-col {
  background: rgba(124,58,237,.15);
  color: var(--purple-light);
}
.compare-table tbody td { color: var(--gray-light); }
.compare-table tbody td.feature-name { color: var(--gray); font-weight: 500; }
.compare-table tbody td.highlight-col { background: rgba(124,58,237,.05); }
.compare-table tbody tr:hover td { background: rgba(255,255,255,.02); }
.tick { color: var(--green); }
.cross { color: #ef4444; }
.partial { color: var(--orange); }

/* ── Testimonials ─────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: border-color .25s;
}
.testimonial-card:hover { border-color: var(--border); }
.testimonial-stars {
  display: flex; gap: .2rem;
  margin-bottom: 1rem;
}
.testimonial-stars svg { width: 16px; height: 16px; color: #fbbf24; fill: #fbbf24; }
.testimonial-quote {
  font-size: .875rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .875rem; color: var(--white); }
.testimonial-role { font-size: .75rem; color: var(--gray); }

/* ── Values / About ──────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.value-card:hover { border-color: var(--border); transform: translateY(-4px); }
.value-icon {
  width: 60px; height: 60px;
  border-radius: 12px;
  background: rgba(124,58,237,.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--purple-light);
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}
.value-card p { font-size: .82rem; color: var(--gray); line-height: 1.55; }

/* ── Why Us differentiator cards ──────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color .25s, transform .25s;
}
.why-card:hover { border-color: var(--border); transform: translateY(-2px); }
.why-card-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(124,58,237,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--purple-light);
}
.why-card-icon svg { width: 26px; height: 26px; }
.why-card-body h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}
.why-card-body p { font-size: .84rem; color: var(--gray); line-height: 1.6; }

/* ── Sector challenges ────────────────────── */
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.challenge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1.75rem;
  transition: border-color .25s;
}
.challenge-card:hover { border-color: var(--border); }
.challenge-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .92rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}
.challenge-card p { font-size: .82rem; color: var(--gray); line-height: 1.55; }
.challenge-icon {
  width: 40px; height: 40px;
  border-radius: 6px;
  background: rgba(124,58,237,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  margin-bottom: .85rem;
}
.challenge-icon svg { width: 20px; height: 20px; }

/* ── Relevant Services (solution pages) ──── */
.rel-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.rel-service-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  transition: border-color .2s, background .2s;
}
.rel-service-link:hover {
  border-color: var(--purple);
  background: rgba(124,58,237,.06);
}
.rel-service-link span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
}
.rel-service-link svg { width: 20px; height: 20px; color: var(--purple-light); flex-shrink: 0; }
.rel-service-arrow { margin-left: auto; color: var(--purple); font-size: .9rem; }

/* ── About team ──────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.team-card:hover { border-color: var(--border); transform: translateY(-4px); }
.team-avatar {
  height: 160px;
  background: linear-gradient(135deg, #0e0e22, #1a1a35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-avatar-inner {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
}
.team-info { padding: 1.25rem; }
.team-info h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .2rem;
}
.team-info span { font-size: .78rem; color: var(--purple-light); }

/* ── Inner page responsive ────────────────── */
@media (max-width: 1100px) {
  .feat-cards { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:not(:last-child)::after { display: none; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .rel-services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .challenge-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-soft); }
  .stat-item:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .feat-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .challenge-grid { grid-template-columns: 1fr; }
  .rel-services { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; }
}

/* ════════════════════════════════════════════
   INNER PAGE STYLES
════════════════════════════════════════════ */
.page-hero{padding:148px 2rem 80px;position:relative;overflow:hidden;background:linear-gradient(180deg,#0b0b1c 0%,var(--bg) 100%);border-bottom:1px solid var(--border-soft)}
.page-hero::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(124,58,237,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(124,58,237,.05) 1px,transparent 1px);background-size:60px 60px;pointer-events:none}
.page-hero::after{content:'';position:absolute;top:-200px;right:-200px;width:600px;height:600px;background:radial-gradient(circle,rgba(124,58,237,.12) 0%,transparent 70%);pointer-events:none}
.page-hero-inner{max-width:1280px;margin:0 auto;position:relative;z-index:1}
.breadcrumb{display:flex;align-items:center;gap:.5rem;margin-bottom:1.5rem;font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase}
.breadcrumb a{color:var(--gray);transition:color .2s}.breadcrumb a:hover{color:var(--purple-light)}
.breadcrumb .sep{color:var(--border)}.breadcrumb .current{color:var(--purple-light)}
.page-hero-tag{display:inline-flex;align-items:center;gap:.5rem;font-size:.72rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;padding:.35rem .9rem;border-radius:20px;border:1px solid;margin-bottom:1.25rem}
.tag-purple{color:var(--purple-light);border-color:rgba(168,85,247,.35);background:rgba(168,85,247,.08)}
.tag-cyan{color:var(--cyan);border-color:rgba(6,182,212,.35);background:rgba(6,182,212,.08)}
.tag-green{color:var(--green);border-color:rgba(34,197,94,.35);background:rgba(34,197,94,.08)}
.tag-orange{color:var(--orange);border-color:rgba(249,115,22,.35);background:rgba(249,115,22,.08)}
.tag-pink{color:#d946ef;border-color:rgba(217,70,239,.35);background:rgba(217,70,239,.08)}
.tag-white{color:var(--gray-light);border-color:rgba(255,255,255,.2);background:rgba(255,255,255,.05)}
.page-hero-title{font-family:var(--font-head);font-weight:900;font-size:clamp(2.8rem,5vw,4.5rem);letter-spacing:.03em;text-transform:uppercase;line-height:1.05;color:var(--white);max-width:800px;margin-bottom:1.25rem}
.page-hero-title .accent{color:var(--purple-light)}
.page-hero-sub{font-size:1.05rem;color:var(--gray);max-width:600px;line-height:1.7;margin-bottom:2rem}
.page-hero-actions{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center}
.content-section{padding:5rem 2rem}.content-section.alt{background:#09091a}
.content-inner{max-width:1280px;margin:0 auto}
.section-header-left{margin-bottom:3rem}.section-header-centre{text-align:center;margin-bottom:3rem}
.split-grid{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.split-grid-text{display:flex;flex-direction:column;gap:1.25rem}
.split-grid-text h2{font-family:var(--font-head);font-weight:900;font-size:clamp(1.8rem,3vw,2.8rem);letter-spacing:.04em;text-transform:uppercase;line-height:1.1}
.split-grid-text h2 .accent{color:var(--purple-light)}
.split-grid-text p{font-size:.95rem;color:var(--gray);line-height:1.7}
.split-grid-visual{background:var(--bg-card2);border:1px solid var(--border);border-radius:12px;padding:3rem;display:flex;align-items:center;justify-content:center;min-height:340px;position:relative;overflow:hidden}
.split-grid-visual::before{content:'';position:absolute;top:-80px;right:-80px;width:300px;height:300px;background:radial-gradient(circle,rgba(124,58,237,.12) 0%,transparent 70%);pointer-events:none}
.visual-icon-big{width:100px;height:100px;border-radius:16px;border:2px solid;display:flex;align-items:center;justify-content:center}
.visual-icon-big svg{width:48px;height:48px}
.visual-icon-purple{border-color:rgba(168,85,247,.5);background:rgba(168,85,247,.1);color:var(--purple-light)}
.visual-icon-cyan{border-color:rgba(6,182,212,.5);background:rgba(6,182,212,.1);color:var(--cyan)}
.visual-icon-green{border-color:rgba(34,197,94,.5);background:rgba(34,197,94,.1);color:var(--green)}
.visual-icon-orange{border-color:rgba(249,115,22,.5);background:rgba(249,115,22,.1);color:var(--orange)}
.visual-icon-pink{border-color:rgba(217,70,239,.5);background:rgba(217,70,239,.1);color:#d946ef}
.check-list{display:flex;flex-direction:column;gap:.65rem}
.check-list li{display:flex;align-items:flex-start;gap:.65rem;font-size:.9rem;color:var(--gray-light);line-height:1.5}
.check-list .ci{width:20px;height:20px;border-radius:50%;border:1.5px solid;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:1px}
.check-list .ci svg{width:10px;height:10px}
.ci-p{border-color:var(--purple-light);color:var(--purple-light)}.ci-c{border-color:var(--cyan);color:var(--cyan)}
.ci-g{border-color:var(--green);color:var(--green)}.ci-o{border-color:var(--orange);color:var(--orange)}
.ci-k{border-color:#d946ef;color:#d946ef}.ci-w{border-color:var(--gray-light);color:var(--gray-light)}
.feat-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.feat-card{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:8px;padding:1.75rem;transition:border-color .25s,transform .25s}
.feat-card:hover{border-color:var(--border);transform:translateY(-3px)}
.feat-card-icon{width:48px;height:48px;border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:1rem}
.feat-card-icon svg{width:24px;height:24px}
.fci-p{background:rgba(168,85,247,.1);color:var(--purple-light)}.fci-c{background:rgba(6,182,212,.1);color:var(--cyan)}
.fci-g{background:rgba(34,197,94,.1);color:var(--green)}.fci-o{background:rgba(249,115,22,.1);color:var(--orange)}
.fci-k{background:rgba(217,70,239,.1);color:#d946ef}.fci-w{background:rgba(255,255,255,.05);color:var(--gray-light)}
.feat-card h3{font-family:var(--font-head);font-weight:800;font-size:1rem;letter-spacing:.08em;text-transform:uppercase;color:var(--white);margin-bottom:.5rem}
.feat-card p{font-size:.82rem;color:var(--gray);line-height:1.55}
.steps-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;counter-reset:steps}
.step-card{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:8px;padding:1.75rem 1.5rem;position:relative;transition:border-color .25s}
.step-card:hover{border-color:var(--border)}
.step-card:not(:last-child)::after{content:'→';position:absolute;right:-1.25rem;top:50%;transform:translateY(-50%);color:var(--purple);font-size:1.2rem;z-index:2}
.step-number{font-family:var(--font-head);font-weight:900;font-size:2.5rem;line-height:1;color:var(--purple-light);opacity:.3;margin-bottom:.75rem}
.step-card h3{font-family:var(--font-head);font-weight:800;font-size:.95rem;letter-spacing:.1em;text-transform:uppercase;color:var(--white);margin-bottom:.5rem}
.step-card p{font-size:.8rem;color:var(--gray);line-height:1.55}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;align-items:start}
.pricing-card{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:10px;padding:2rem;position:relative;transition:border-color .25s,transform .25s}
.pricing-card:hover{transform:translateY(-4px)}
.pricing-card.featured{border-color:var(--purple);background:#0e0e22;box-shadow:0 0 40px rgba(124,58,237,.2)}
.pricing-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--purple);color:var(--white);font-size:.65rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;padding:.3rem .9rem;border-radius:12px}
.pricing-name{font-family:var(--font-head);font-weight:800;font-size:1rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gray-light);margin-bottom:.5rem}
.pricing-desc{font-size:.8rem;color:var(--gray);margin-bottom:1.5rem;padding-bottom:1.5rem;border-bottom:1px solid var(--border-soft);line-height:1.5}
.pricing-list{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.75rem}
.pricing-list li{display:flex;align-items:flex-start;gap:.6rem;font-size:.82rem;color:var(--gray-light);line-height:1.4}
.pricing-cta{display:block;text-align:center;padding:.7rem;border-radius:4px;font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;border:1.5px solid var(--purple);color:var(--purple-light);background:transparent;transition:background .2s,color .2s}
.pricing-cta:hover{background:var(--purple);color:var(--white)}
.pricing-card.featured .pricing-cta{background:var(--purple);color:var(--white)}
.stats-strip{background:var(--bg-strip);border-top:1px solid var(--border-soft);border-bottom:1px solid var(--border-soft);padding:3rem 2rem}
.stats-grid{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.stat-item{text-align:center;padding:1rem;border-right:1px solid var(--border-soft)}.stat-item:last-child{border-right:none}
.stat-number{font-family:var(--font-head);font-weight:900;font-size:clamp(2rem,4vw,3rem);background:linear-gradient(135deg,#a855f7,#7c3aed);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;display:block}
.stat-label{font-size:.78rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--gray);margin-top:.25rem}
.faq-list{display:flex;flex-direction:column;gap:.75rem;max-width:860px;margin:0 auto}
.faq-item{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:8px;overflow:hidden;transition:border-color .2s}
.faq-item.open{border-color:var(--border)}
.faq-q{display:flex;justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;cursor:pointer;gap:1rem;user-select:none}
.faq-q span{font-size:.9rem;font-weight:600;color:var(--white);line-height:1.4}
.faq-icon{width:24px;height:24px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--purple-light);transition:transform .3s,background .2s}
.faq-icon svg{width:12px;height:12px}
.faq-item.open .faq-icon{transform:rotate(45deg);background:rgba(124,58,237,.2)}
.faq-a{padding:0 1.5rem;max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s ease;font-size:.875rem;color:var(--gray);line-height:1.7}
.faq-item.open .faq-a{max-height:400px;padding:0 1.5rem 1.25rem}
.cta-section{background:linear-gradient(135deg,#0e0e22 0%,#0b0b18 100%);border-top:1px solid var(--border-soft);padding:5rem 2rem;text-align:center;position:relative;overflow:hidden}
.cta-section::before{content:'';position:absolute;top:-150px;left:50%;transform:translateX(-50%);width:700px;height:400px;background:radial-gradient(ellipse,rgba(124,58,237,.15) 0%,transparent 70%);pointer-events:none}
.cta-section-inner{position:relative;z-index:1}
.cta-section h2{font-family:var(--font-head);font-weight:900;font-size:clamp(2rem,4vw,3rem);letter-spacing:.04em;text-transform:uppercase;color:var(--white);margin-bottom:.75rem}
.cta-section h2 .accent{color:var(--purple-light)}
.cta-section p{font-size:.95rem;color:var(--gray);max-width:500px;margin:0 auto 2rem;line-height:1.6}
.cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.contact-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:5rem;align-items:start}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{display:flex;flex-direction:column;gap:.4rem;margin-bottom:1rem}
.form-label{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gray)}
.form-input,.form-select,.form-textarea{background:var(--bg-card2);border:1px solid var(--border-soft);border-radius:4px;color:var(--white);font-family:var(--font-body);font-size:.9rem;padding:.75rem 1rem;transition:border-color .2s;outline:none;width:100%}
.form-input:focus,.form-select:focus,.form-textarea:focus{border-color:var(--purple);box-shadow:0 0 0 3px rgba(124,58,237,.12)}
.form-input::placeholder,.form-textarea::placeholder{color:var(--gray)}
.form-select{appearance:none;cursor:pointer}.form-select option{background:#0e0e1a}
.form-textarea{resize:vertical;min-height:130px}
.form-submit{display:inline-flex;align-items:center;gap:.5rem;background:var(--purple);color:var(--white);font-family:var(--font-body);font-size:.875rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.85rem 2rem;border-radius:4px;border:none;cursor:pointer;transition:background .2s,transform .15s;width:100%;justify-content:center}
.form-submit:hover{background:var(--purple-mid);transform:translateY(-1px)}
.contact-info-cards{display:flex;flex-direction:column;gap:1rem}
.contact-info-card{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:8px;padding:1.5rem;display:flex;gap:1rem;align-items:flex-start;transition:border-color .2s}
.contact-info-card:hover{border-color:var(--border)}
.contact-info-icon{width:44px;height:44px;border-radius:8px;background:rgba(124,58,237,.1);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--purple-light)}
.contact-info-icon svg{width:20px;height:20px}
.contact-info-text{display:flex;flex-direction:column;gap:.2rem}
.contact-info-text strong{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gray)}
.contact-info-text a,.contact-info-text span{font-size:.9rem;color:var(--white);transition:color .2s}
.contact-info-text a:hover{color:var(--purple-light)}
.response-promise{background:rgba(124,58,237,.08);border:1px solid var(--border);border-radius:8px;padding:1.25rem 1.5rem;display:flex;align-items:center;gap:.85rem;margin-top:.5rem}
.response-promise svg{width:22px;height:22px;color:var(--purple-light);flex-shrink:0}
.response-promise p{font-size:.82rem;color:var(--gray-light);line-height:1.5}
.response-promise strong{color:var(--white)}
.compare-wrap{overflow-x:auto}
.compare-table{width:100%;border-collapse:collapse;font-size:.85rem}
.compare-table th,.compare-table td{padding:1rem 1.25rem;text-align:left;border-bottom:1px solid var(--border-soft)}
.compare-table thead th{font-family:var(--font-head);font-weight:800;font-size:.9rem;letter-spacing:.1em;text-transform:uppercase;background:var(--bg-card2);color:var(--gray-light)}
.compare-table thead th.hl{background:rgba(124,58,237,.15);color:var(--purple-light)}
.compare-table tbody td{color:var(--gray-light)}.compare-table tbody td.fn{color:var(--gray);font-weight:500}
.compare-table tbody td.hl{background:rgba(124,58,237,.05)}
.compare-table tbody tr:hover td{background:rgba(255,255,255,.02)}
.tick{color:#22c55e}.cross{color:#ef4444}.partial{color:#f97316}
.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.testimonial-card{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:10px;padding:2rem;transition:border-color .25s}
.testimonial-card:hover{border-color:var(--border)}
.testimonial-stars{display:flex;gap:.2rem;margin-bottom:1rem}
.testimonial-stars svg{width:16px;height:16px;color:#fbbf24;fill:#fbbf24}
.testimonial-quote{font-size:.875rem;color:var(--gray-light);line-height:1.7;margin-bottom:1.5rem;font-style:italic}
.testimonial-author{display:flex;align-items:center;gap:.75rem}
.testimonial-avatar{width:40px;height:40px;border-radius:50%;background:linear-gradient(135deg,var(--purple),var(--purple-mid));display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:800;font-size:1rem;color:var(--white);flex-shrink:0}
.testimonial-name{font-weight:600;font-size:.875rem;color:var(--white)}.testimonial-role{font-size:.75rem;color:var(--gray)}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.value-card{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:10px;padding:2rem;text-align:center;transition:border-color .25s,transform .25s}
.value-card:hover{border-color:var(--border);transform:translateY(-4px)}
.value-icon{width:60px;height:60px;border-radius:12px;background:rgba(124,58,237,.1);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;margin:0 auto 1.25rem;color:var(--purple-light)}
.value-icon svg{width:28px;height:28px}
.value-card h3{font-family:var(--font-head);font-weight:800;font-size:1rem;letter-spacing:.1em;text-transform:uppercase;color:var(--white);margin-bottom:.5rem}
.value-card p{font-size:.82rem;color:var(--gray);line-height:1.55}
.why-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.why-card{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:10px;padding:2rem;display:flex;gap:1.25rem;align-items:flex-start;transition:border-color .25s,transform .25s}
.why-card:hover{border-color:var(--border);transform:translateY(-2px)}
.why-card-icon{width:52px;height:52px;border-radius:10px;border:1px solid var(--border);background:rgba(124,58,237,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0;color:var(--purple-light)}
.why-card-icon svg{width:26px;height:26px}
.why-card-body h3{font-family:var(--font-head);font-weight:800;font-size:1rem;letter-spacing:.08em;text-transform:uppercase;color:var(--white);margin-bottom:.5rem}
.why-card-body p{font-size:.84rem;color:var(--gray);line-height:1.6}
.challenge-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}
.challenge-card{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:8px;padding:1.75rem;transition:border-color .25s}
.challenge-card:hover{border-color:var(--border)}
.challenge-icon{width:40px;height:40px;border-radius:6px;background:rgba(124,58,237,.1);display:flex;align-items:center;justify-content:center;color:var(--purple-light);margin-bottom:.85rem}
.challenge-icon svg{width:20px;height:20px}
.challenge-card h3{font-family:var(--font-head);font-weight:800;font-size:.92rem;letter-spacing:.1em;text-transform:uppercase;color:var(--white);margin-bottom:.5rem}
.challenge-card p{font-size:.82rem;color:var(--gray);line-height:1.55}
.rel-services{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.rel-service-link{display:flex;align-items:center;gap:.75rem;background:var(--bg-card);border:1px solid var(--border-soft);border-radius:8px;padding:1.25rem 1.5rem;transition:border-color .2s,background .2s}
.rel-service-link:hover{border-color:var(--purple);background:rgba(124,58,237,.06)}
.rel-service-link span{font-family:var(--font-head);font-weight:700;font-size:.85rem;letter-spacing:.08em;text-transform:uppercase;color:var(--white)}
.rel-service-link svg{width:20px;height:20px;color:var(--purple-light);flex-shrink:0}
.rel-service-arrow{margin-left:auto;color:var(--purple)}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.team-card{background:var(--bg-card);border:1px solid var(--border-soft);border-radius:10px;overflow:hidden;text-align:center;transition:border-color .25s,transform .25s}
.team-card:hover{border-color:var(--border);transform:translateY(-4px)}
.team-avatar{height:160px;background:linear-gradient(135deg,#0e0e22,#1a1a35);display:flex;align-items:center;justify-content:center}
.team-avatar-inner{width:80px;height:80px;border-radius:50%;background:linear-gradient(135deg,var(--purple),var(--purple-mid));display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:900;font-size:2rem;color:var(--white)}
.team-info{padding:1.25rem}
.team-info h3{font-family:var(--font-head);font-weight:800;font-size:.95rem;letter-spacing:.08em;text-transform:uppercase;color:var(--white);margin-bottom:.2rem}
.team-info span{font-size:.78rem;color:var(--purple-light)}
@media(max-width:1100px){.feat-cards{grid-template-columns:repeat(2,1fr)}.steps-grid{grid-template-columns:repeat(2,1fr)}.step-card:not(:last-child)::after{display:none}.values-grid{grid-template-columns:repeat(2,1fr)}.team-grid{grid-template-columns:repeat(2,1fr)}.testimonial-grid{grid-template-columns:repeat(2,1fr)}.rel-services{grid-template-columns:repeat(2,1fr)}}
@media(max-width:900px){.split-grid{grid-template-columns:1fr;gap:2.5rem}.contact-grid{grid-template-columns:1fr}.why-grid{grid-template-columns:1fr}.challenge-grid{grid-template-columns:repeat(2,1fr)}.stats-grid{grid-template-columns:repeat(2,1fr)}.stat-item{border-right:none;border-bottom:1px solid var(--border-soft)}.stat-item:last-child{border-bottom:none}.pricing-grid{grid-template-columns:1fr;max-width:420px;margin:0 auto}}
@media(max-width:640px){.feat-cards{grid-template-columns:1fr}.steps-grid{grid-template-columns:1fr}.values-grid{grid-template-columns:1fr}.team-grid{grid-template-columns:repeat(2,1fr)}.testimonial-grid{grid-template-columns:1fr}.challenge-grid{grid-template-columns:1fr}.rel-services{grid-template-columns:1fr}.form-row{grid-template-columns:1fr}.page-hero-actions{flex-direction:column}}
