/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ===== RESET — clean slate ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BRAND VARIABLES — our design system ===== */
:root {
  --ink: #1E1C2E;
  --indigo: #3D3AE0;
  --base: #F5F6F8;
  --surface: #FFFFFF;
  --muted: #6A7280;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== BASE ===== */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--base);
  line-height: 1.5;
}

/* ===== TOP WRAP (holds hero background) ===== */
.top-wrap {
  position: relative;
  overflow: hidden;
  background: var(--base);
}
.top-wrap {
  margin-top: -82px;
  padding-top: 82px;
}

/* ===== HERO BACKGROUND — aurora mesh ===== */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-pattern .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}
.hero-pattern .b1 {
  width: 520px; height: 520px;
  background: rgba(61,58,224,0.28);
  top: -160px; left: -80px;
}
.hero-pattern .b2 {
  width: 440px; height: 440px;
  background: rgba(165,161,255,0.45);
  top: -120px; right: -60px;
}
.hero-pattern .b3 {
  width: 360px; height: 360px;
  background: rgba(61,58,224,0.14);
  bottom: -140px; left: 45%;
}
.hero-pattern .grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}
.hero-pattern {
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
}

/* ===== HERO (light) ===== */
.hero {
  background: transparent;
  text-align: center;
  padding: 40px 24px 50px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 13px; font-weight: 500; letter-spacing: 1.5px;
  color: var(--indigo); background: rgba(61,58,224,0.08);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display); font-size: 68px; font-weight: 800;
  line-height: 1.03; letter-spacing: -2px; color: var(--ink); margin-bottom: 24px;
}
.hero-title .accent { color: var(--indigo); }

.hero-sub { font-size: 18px; color: var(--muted); max-width: 540px; margin-bottom: 36px; }

.hero-buttons { display: flex; gap: 14px; margin-bottom: 40px; }
.hero .btn-primary { background: var(--indigo); color: #fff; }
.hero .btn-primary:hover { background: #2c29b8; }
.hero .btn-outline { background: transparent; color: var(--ink); border: 1px solid rgba(30,28,46,0.2); }
.hero .btn-outline:hover { border-color: var(--ink); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hero-tags span {
  font-size: 13px; font-weight: 500; color: var(--muted);
  background: var(--surface); border: 1px solid rgba(30,28,46,0.08);
  padding: 8px 16px; border-radius: 100px;
}

/* ===== NAVBAR (full width, sticky, scroll-aware) ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.navbar.scrolled {
  background: var(--surface);
  border-bottom: 1px solid rgba(30,28,46,0.06);
  box-shadow: 0 4px 20px rgba(30,28,46,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 48px;
}

/* logo */
.navbar .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.navbar .logo-word { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); }
.navbar .logo-word .accent { color: var(--indigo); }
.navbar .logo-tag { font-size: 10px; letter-spacing: 0.18em; color: var(--muted); margin-top: 4px; font-weight: 600; }

/* links */
.navbar .nav-links { display: flex; align-items: center; gap: 38px; }
.navbar .nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: #33323f;
  text-decoration: none;
  transition: color 0.2s ease;
}
.navbar .nav-links a:hover { color: var(--indigo); }

/* CTA */
.navbar .nav-cta {
  background: var(--indigo);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 22px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
.navbar .nav-cta:hover { background: #2c29b8; }

/* ===== CARDS STRIP ===== */
.cards-strip {
  padding-top: 90px;
}

/* ===== SERVICE CARDS ===== */
.hero-cards {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

 .s-card {
  background: var(--surface);
  border: 1px solid rgba(30,28,46,0.06);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(30,28,46,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.s-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(30,28,46,0.12);
}

/* image zone */
.s-image {
  background: #1E1C2E;
  padding: 24px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.s-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* text zone */
.s-body {
  padding: 28px 28px 30px;
}

.s-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.s-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.s-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--indigo);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.s-link:hover { gap: 10px; }

/* ===== BUTTONS (shared) ===== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}

.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: #2c29b8; }

.btn-outline { background: transparent; color: var(--ink); border: 1px solid rgba(30,28,46,0.2); }
.btn-outline:hover { border-color: var(--ink); }

/* ===== CARD ANNOTATIONS ===== */
.s-card { position: relative; }   /* lets us position notes freely inside */
.hero-cards { overflow: visible; }

.s-note {
  position: absolute;
  top: -70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--indigo);
  z-index: 10;
  pointer-events: none;
}

.s-note span {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
  max-width: 160px;
  text-align: center;
}

.s-arrow {
  width: 50px;
  height: 50px;
}

/* left card note sits above-left, arrow curves down-right into the card */
.s-note-left { left: -30px; }

/* right card note sits above-right, arrow curves down-left into the card */
.s-note-right { right: -30px; }
.s-note-right span { text-align: right; }

.s-arrow-text {
  font-size: 42px;
  line-height: 1;
  transform: scaleX(-1);
  display: inline-block;
  margin-top: 4px;
}

/* ===== THE NASENOVA DIFFERENCE ===== */
.why {
  background: var(--base);
  padding: 100px 24px;
}

.why-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.why-image img {
  width: 100%;
  max-height: 480px;          /* caps the height so it isn't huge */
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.section-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--indigo);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 36px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

/* minimal icons — no filled tile, just the line icon */
.why-icon {
  flex-shrink: 0;
  color: var(--indigo);
  padding-top: 2px;
}
.why-icon i {
  font-size: 26px;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== HOW WE WORK (FLOW) ===== */
.process {
  background: var(--ink);
  padding: 100px 24px;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(61,58,224,0.22), transparent 45%),
    radial-gradient(circle at 90% 95%, rgba(61,58,224,0.12), transparent 45%);
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: center;
}

.process-eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #a5a1ff;
  margin-bottom: 16px;
}

.process-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
}

.process-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  max-width: 380px;
}

.process-points {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.8);
}

.process-points li i {
  font-size: 18px;
  color: #a5a1ff;
  flex-shrink: 0;
}

/* the flow diagram */
.flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.node {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: flex-start;   /* was center — now aligns icon to top */
  gap: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nic i { font-size: 22px; color: #fff; }
.nt .s {
  font-size: 11px;
  opacity: 0.7;
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  color: #fff;
}
.nt .m {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.node:last-child {
  grid-column: 1 / -1;
}
.node:hover {
  border-color: var(--indigo);
  background: rgba(61, 58, 224, 0.08);
}
/* icon tile — now indigo */
.nic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nic i { font-size: 22px; color: #fff; }

/* step number — light indigo */
.nt .s {
  font-size: 11px;
  display: block;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  color: #a5a1ff;
  font-weight: 500;
}
.nt .d {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-top: 6px;
}

/* ===== FAQ ===== */
.faq {
  background: var(--surface);
  padding: 100px 24px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-head {
  text-align: center;
  margin-bottom: 48px;
}

.faq-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--indigo);
  background: rgba(61,58,224,0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.faq-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 14px;
}

.faq-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--base);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q i {
  font-size: 20px;
  color: var(--indigo);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

/* the answer — hidden by default, revealed when .open is added */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 24px 24px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* when open: show the answer, rotate the + into an × */
.faq-item.open .faq-a {
  max-height: 300px;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

/* ===== CTA CARD ===== */
.cta {
  background: var(--surface);
  padding: 40px 24px 100px;
}

.cta-card {
  max-width: 1140px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 28px;
  padding: 90px 40px;
  text-align: center;
  background-image:
    radial-gradient(circle at 25% 20%, rgba(61,58,224,0.28), transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(61,58,224,0.16), transparent 45%);
}

.cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #a5a1ff;
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 46px;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-btn {
  display: inline-block;
  background: var(--indigo);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(61,58,224,0.4);
  transition: transform 0.2s ease, background 0.2s ease;
}
.cta-btn:hover {
  transform: translateY(-2px);
  background: #2c29b8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  padding: 80px 24px 32px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 18px;
}
.footer-logo .accent {
  color: var(--indigo);
  text-shadow: 0 0 20px rgba(61, 58, 224, 0.6);
}

.footer-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: #fff;
}

/* ===== SERVICE: shared bits ===== */
.svc-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--indigo);
  margin-bottom: 14px;
}
.svc-h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 18px;
}

/* ===== OVERVIEW (contained card) ===== */
.svc-overview {
  background: var(--base);
  padding: 70px 32px;
}
.svc-overview-card {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(30,28,46,0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(30,28,46,0.07);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}
.svc-overview-text {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-overview-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.svc-overview-img {
  position: relative;
}
.svc-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* ===== MIND MAP (dark) ===== */
.mindmap {
  background: var(--ink);
  padding: 90px 24px;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(61,58,224,0.22), transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(61,58,224,0.14), transparent 45%);
}
.mindmap-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.mindmap-inner .svc-eyebrow,
.mindmap-inner .svc-h2 {
  text-align: center;
  display: block;
}
.mindmap-inner .svc-eyebrow { color: #a5a1ff; }
.mindmap-inner .svc-h2 { color: #fff; }

.mindmap-wrap {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 36px;
}

.mm-hub {
  background: var(--indigo);
  color: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(61,58,224,0.4);
}

.mm-spokes {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.mm-spokes:before {
  content: "";
  position: absolute;
  left: -24px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: rgba(255,255,255,0.2);
}

.mm-leaf {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.mm-leaf:hover {
  border-color: var(--indigo);
  background: rgba(61,58,224,0.1);
  transform: translateX(4px);
}

.mm-li {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mm-li i {
  font-size: 21px;
  color: #fff;
}

.mm-leaf h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.mm-leaf p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ===== POINTS (2-column with image) ===== */
.svc-points {
  background: var(--surface);
  padding: 90px 24px;
}
.svc-points-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.svc-points-head {
  margin-bottom: 30px;
}
.svc-points-head .svc-eyebrow,
.svc-points-head .svc-h2 {
  text-align: left;
}
.svc-point-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-point-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.65;
}
.svc-point-list li i {
  font-size: 20px;
  color: var(--indigo);
  flex-shrink: 0;
  margin-top: 3px;
}
.svc-points-img img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* ===== PROCESS (light) ===== */
.svc-process {
  background: var(--base);
  padding: 90px 24px;
}
.svc-process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.svc-process-head {
  margin-bottom: 40px;
}
.svc-process-head .svc-eyebrow { color: var(--indigo); text-align: left; }
.svc-process-head .svc-h2 { color: var(--ink); text-align: left; }

.svc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-step {
  background: var(--surface);
  border: 1px solid rgba(30,28,46,0.07);
  border-radius: 16px;
  padding: 26px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30,28,46,0.08);
}
.svc-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--indigo);
  letter-spacing: 0.5px;
}
.svc-step-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(61,58,224,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 18px;
}
.svc-step-ic i { font-size: 24px; color: var(--indigo); }
.svc-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.svc-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== INFRA HERO (true left + stats) ===== */
.infra-hero {
  text-align: left;
}
.infra-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.infra-hero-text {
  text-align: left;
}
.infra-hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 60px;
  letter-spacing: -2.5px;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 22px;
}
.infra-hero-title .accent { color: var(--indigo); }
.infra-hero-lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 30px;
}
.infra-hero .hero-buttons {
  justify-content: flex-start;
}

/* stats right */
.infra-hero-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.infra-stat {
  background: var(--surface);
  border: 1px solid rgba(30,28,46,0.08);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba(30,28,46,0.05);
}
.infra-stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--indigo);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}
.infra-stat-label {
  font-size: 14px;
  color: var(--muted);
}

.infra-hero .hero-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
}

/* ===== OVERVIEW (offset / magazine) ===== */
.svc-overview {
  background: var(--base);
  padding: 90px 48px;
  overflow: hidden;
}
.svc-ov-wrap {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
/* image offset, overlapping to the right, behind the heading */
.svc-ov-img {
  position: absolute;
  top: 30px;
  right: -20px;
  width: 52%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  z-index: 0;
  box-shadow: 0 20px 50px rgba(30,28,46,0.12);
}
.svc-ov-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* heading sits above the image on the left, base bg so text stays readable */
.svc-ov-head {
  position: relative;
  z-index: 2;
  max-width: 560px;
  background: var(--base);
  padding-right: 24px;
}
.svc-ov-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -1.2px;
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 20px;
}
.svc-ov-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}
/* stat footer row */
.svc-ov-foot {
  margin-top: 56px;
  display: flex;
  gap: 48px;
  position: relative;
  z-index: 2;
}
.svc-ov-n {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--indigo);
  letter-spacing: -0.5px;
}
.svc-ov-l {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

/* ===== HOW WE DO IT (sticky image + timeline) ===== */
.infra-how {
  background: var(--base);
  padding: 90px 48px;
}
.infra-how-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

/* sticky image */
.infra-how-img {
  position: sticky;
  top: 100px;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30,28,46,0.12);
}
.infra-how-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* heading */
.infra-how-head { margin-bottom: 40px; }
.infra-how-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--ink);
  margin: 6px 0 14px;
}
.infra-how-lead {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

/* timeline steps */
.infra-how-steps {
  position: relative;
  padding-left: 44px;
}
.infra-how-steps::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(61,58,224,0.15);
}
.infra-step {
  position: relative;
  margin-bottom: 36px;
}
.infra-step:last-child { margin-bottom: 0; }
.infra-step-dot {
  position: absolute;
  left: -44px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--indigo);
  color: var(--indigo);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.infra-step h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.infra-step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.infra-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}
.infra-check .m {
  color: var(--indigo);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== INFRA PROCESS (running line) ===== */
.infra-process {
  background: var(--base);
  padding: 90px 24px;
}
.infra-process-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.infra-process-inner .svc-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.infra-process-inner .svc-h2 {
  margin-bottom: 50px;
  max-width: 520px;
}

.infra-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
/* the dashed line threading through the dots */
.infra-track:before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(61,58,224,0.35) 0 6px, transparent 6px 12px);
  z-index: 0;
}

.infra-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.infra-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 22px;
  box-shadow: 0 0 0 6px var(--base);
}
.infra-step-card {
  background: var(--surface);
  border: 1px solid rgba(30,28,46,0.08);
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 4px 18px rgba(30,28,46,0.05);
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.infra-step:hover .infra-step-card {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30,28,46,0.1);
}
.infra-step-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(61,58,224,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.infra-step-ic i {
  font-size: 20px;
  color: var(--indigo);
}
.infra-step-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.infra-step-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== BRAND MARQUEE ===== */
.brands {
  background: var(--base);
  padding: 60px 0;
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 36px;
}
.brands-track-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.brands-track {
  display: flex;
  width: max-content;
  animation: brand-scroll 30s linear infinite;
}
.brands-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brands-group img {
  height: 46px;
  width: auto;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
  padding: 0 45px;
  flex-shrink: 0;
}
.brands-group img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HARDWARE OVERVIEW (heading + image, supply strip) ===== */
.hw-overview {
  background: var(--base);
  padding: 90px 48px;
}
.hw-ov-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

/* top: text + image */
.hw-ov-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 44px;
}
.hw-ov-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--ink);
  margin: 6px 0 16px;
}
.hw-ov-lead {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}
.hw-ov-img {
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(30,28,46,0.12);
}
.hw-ov-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* supply strip: 4 columns */
.hw-ov-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(30,28,46,0.1);
  padding-top: 32px;
}
.hw-cell-ic {
  color: var(--indigo);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.hw-cell h5 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.hw-cell p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ===== WHAT WE SUPPLY (dark) ===== */
.supply {
  background: var(--ink);
  padding: 90px 24px;
  background-image:
    radial-gradient(circle at 15% 15%, rgba(61,58,224,0.20), transparent 45%),
    radial-gradient(circle at 90% 95%, rgba(61,58,224,0.12), transparent 45%);
}
.supply-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.supply-head {
  margin-bottom: 40px;
}
.supply-head .svc-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #a5a1ff;
}
.supply-head .svc-h2 {
  color: #fff;
}
.supply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.supply-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 30px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.supply-card:hover {
  transform: translateY(-4px);
  border-color: var(--indigo);
  background: rgba(61,58,224,0.08);
}
.supply-ic {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.supply-ic i {
  font-size: 26px;
  color: #fff;
}
.supply-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.supply-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ===== WHY SOURCE THROUGH US (image + numbered reasons) ===== */
.hw-why {
  background: var(--surface);
  padding: 90px 48px;
}
.hw-why-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* image fills the (previously empty) left */
.hw-why-img {
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30,28,46,0.12);
}
.hw-why-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* heading */
.hw-why-head { margin-bottom: 32px; }
.hw-why-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--ink);
  margin-top: 6px;
}

/* numbered reasons */
.hw-why-reasons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hw-reason {
  display: flex;
  gap: 16px;
}
.hw-reason-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--indigo);
  border: 1.5px solid rgba(61,58,224,0.25);
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-reason h5 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.hw-reason p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.hardware-faq {
  padding-top: 30px;      /* less top padding pulls it up */
}

/* ===== STORY ===== */
.story {
  background: var(--base);
  padding: 90px 24px;
}
.story-inner {
  max-width: 1100px;      /* same as others */
  margin: 0 auto;
}
.story-inner .svc-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.story-inner .svc-h2 {
  font-size: 38px;
  margin-bottom: 28px;
}
.story-text p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.story-text p:last-child {
  margin-bottom: 0;
}

/* ===== PRINCIPLES ===== */
.principles {
  background: var(--surface);
  padding: 90px 24px;
}
.principles-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.principles-head {
  margin-bottom: 40px;
}
.principles-head .svc-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.principle-card {
  background: var(--base);
  border: 1px solid rgba(30,28,46,0.07);
  border-radius: 18px;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.principle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30,28,46,0.08);
}
.principle-ic {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: rgba(61,58,224,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.principle-ic i {
  font-size: 25px;
  color: var(--indigo);
}
.principle-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.principle-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== LEGAL PAGES ===== */
.legal {
  background: var(--base);
  padding: 70px 24px 90px;
}
.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal-inner .svc-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.legal-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
}
.legal-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 12px;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--base);
  padding: 70px 24px 90px;
}
.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* left info */
.contact-info .svc-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}
.contact-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 18px;
}
.contact-lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(61,58,224,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-ic i {
  font-size: 22px;
  color: var(--indigo);
}
.contact-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.contact-item p {
  font-size: 15px;
  color: var(--muted);
}

/* right form */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid rgba(30,28,46,0.08);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(30,28,46,0.05);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--base);
  border: 1px solid rgba(30,28,46,0.12);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--indigo);
}
.form-field textarea {
  resize: vertical;
}
.form-submit {
  width: 100%;
  margin-top: 6px;
  cursor: pointer;
}