:root {
  --blue: #2f7fff;        /* primary accent (was orange) */
  --blue-deep: #1f5fd0;
  --blue-bright: #4a90ff;
  --black: #0a0c10;
  --ink: #0d0f14;
  --text-dim: #c7cdd6;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

html, body {
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

body { background-color: var(--blue); overflow-x: hidden; }

/* The fixed background for the whole site is the LIGHTER blue.
   It's pinned behind all content and never moves. The hero's dark gradient
   sits on top of this and scrolls away, so the dark only lives with the index. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: var(--blue);
}

/* Full-screen container */
.frame {
  min-height: 100vh;
  background: transparent;
}

/* Hero: its own dark→blue gradient that scrolls away with the section.
   The blue at the bottom matches the fixed background, so the seam is invisible. */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(120% 90% at 50% 8%, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(180deg, var(--black) 0%, #0c1322 26%, #163a78 55%, var(--blue) 100%);
}

/* Floating gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.orb-1 {
  width: 380px; height: 380px;
  top: 12%; left: -80px;
  background: radial-gradient(circle, #2f7fff, transparent 70%);
  animation: drift1 16s ease-in-out infinite;
}
.orb-2 {
  width: 300px; height: 300px;
  top: 40%; right: -60px;
  background: radial-gradient(circle, #9b6bff, transparent 70%);
  animation: drift2 19s ease-in-out infinite;
}
.orb-3 {
  width: 260px; height: 260px;
  bottom: 6%; left: 38%;
  background: radial-gradient(circle, #34d3ff, transparent 70%);
  animation: drift3 22s ease-in-out infinite;
}
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(60px,40px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-50px,30px); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px,-40px); } }

/* ---------- Nav ---------- */
.nav {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 34px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.logo-mark {
  color: var(--blue-bright);
  font-weight: 800;
  font-size: 22px;
  transform: translateY(1px);
}
.logo-img {
  height: 24px;
  width: auto;
  display: block;
}
.logo-text { font-weight: 800; letter-spacing: 2px; font-size: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px;
  border-radius: 40px;
  backdrop-filter: blur(6px);
}
.nav-links a {
  color: #d7dce4;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 9px 18px;
  border-radius: 30px;
  transition: 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active {
  background: var(--blue);
  color: #fff;
}
/* Get Started CTA in the nav */
.nav-links a.nav-cta {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(47,127,255,0.35);
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-links a.nav-cta span { font-size: 12px; display: inline-block; transition: transform 0.2s; }
.nav-links a.nav-cta:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(47,127,255,0.5);
}
.nav-links a.nav-cta:hover span { transform: translate(2px,-2px); }

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  cursor: pointer;
  z-index: 30;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.2s;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero content ---------- */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 110px 20px 0;
}

/* Availability pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
  color: #e7eefc;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 26px;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
  animation: pulseDot 2s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

.headline {
  font-size: clamp(40px, 7vw, 92px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1px;
}
.highlight {
  background: var(--blue);
  color: #0a0c10;
  padding: 0 14px;
  display: inline-block;
  transform: rotate(-2deg);
  border-radius: 2px;
}
.megaphone {
  display: inline-flex;
  width: clamp(40px, 5vw, 64px);
  height: clamp(40px, 5vw, 64px);
  color: var(--blue-bright);
  vertical-align: middle;
  transform: translateY(-6px);
  transform-origin: 60% 60%;
  animation: wiggle 3.5s ease-in-out infinite;
}
.megaphone svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(74,144,255,0.6)); }
@keyframes wiggle {
  0%, 86%, 100% { transform: translateY(-6px) rotate(0deg); }
  90% { transform: translateY(-6px) rotate(-12deg); }
  94% { transform: translateY(-6px) rotate(10deg); }
  98% { transform: translateY(-6px) rotate(-5deg); }
}
.highlight { animation: highlightPop 5s ease-in-out infinite; }
@keyframes highlightPop {
  0%, 90%, 100% { transform: rotate(-2deg) scale(1); }
  95% { transform: rotate(-2deg) scale(1.06); }
}

.subtext {
  margin: 26px auto 0;
  max-width: 620px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
}

/* CTA button */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  background: #0a0c10;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 40px;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
  overflow: hidden;
}
/* moving shimmer sweep */
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3.2s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { left: -120%; }
  55%, 60% { left: 160%; }
}
.cta:hover { transform: translateY(-3px); background: #16191f; box-shadow: 0 20px 44px rgba(0,0,0,0.55); }
/* Blue variant (footer + article CTAs) */
.cta-blue { background: var(--blue); color: #fff; box-shadow: 0 14px 34px rgba(47,127,255,0.4); }
.cta-blue:hover { background: var(--blue-bright); box-shadow: 0 20px 44px rgba(47,127,255,0.5); }
.cta-label, .cta-arrow { position: relative; z-index: 1; }
.cta-arrow { font-size: 18px; transition: transform 0.2s; }
.cta:hover .cta-arrow { transform: translate(3px,-3px); }


/* ---------- Watermark scrolling text ---------- */
.watermark {
  position: absolute;
  bottom: 120px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.watermark-track {
  display: flex;
  width: max-content;
  animation: scroll 22s linear infinite;
}
.watermark-track span {
  font-size: clamp(70px, 11vw, 150px);
  font-weight: 700;
  color: rgba(255,255,255,0.16);
  white-space: nowrap;
  letter-spacing: -2px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================== ABOUT ===================== */
/* Solid black band — the hero's blue fades up and out, then this grounds the page */
.about {
  position: relative;
  background: #060708;
  color: #fff;
  padding: 150px 22px 150px;
  overflow: hidden;
}
/* Floating accent shapes */
.about-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  pointer-events: none;
}
.about-shape-1 {
  width: 320px; height: 320px;
  top: -60px; left: -80px;
  background: radial-gradient(circle, #2f7fff, transparent 70%);
  animation: drift2 18s ease-in-out infinite;
}
.about-shape-2 {
  width: 280px; height: 280px;
  bottom: -70px; right: -70px;
  background: radial-gradient(circle, #9b6bff, transparent 70%);
  animation: drift1 21s ease-in-out infinite;
}
.about-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about-eyebrow {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
}
.about-heading {
  margin-top: 22px;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
/* Animated underline that draws in when revealed */
.about-underline {
  position: relative;
  white-space: nowrap;
}
.about-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 4px;
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue-bright), #9b6bff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease 0.3s;
}
.reveal.in .about-underline::after { transform: scaleX(1); }

.about-copy {
  margin: 26px auto 0;
  max-width: 560px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.8;
}

/* About stat counters */
.about-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.astat { display: flex; flex-direction: column; align-items: center; }
.astat-num {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  background: linear-gradient(120deg, #fff, var(--blue-bright));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.astat-label { margin-top: 10px; font-size: 13px; color: #8b94a3; font-weight: 500; }

/* Scroll-reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ===================== SERVICES (simple) ===================== */
/* Transparent — sits on the shared fixed background */
.services {
  background: transparent;
  color: #fff;
  padding: 40px 22px 160px;
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.services-heading {
  margin-top: 18px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Flip card */
.service {
  height: 280px;
  perspective: 1200px;
  cursor: pointer;
}
.service-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  transition: transform 0.7s cubic-bezier(0.4, 0.15, 0.2, 1);
  transform-style: preserve-3d;
}
.service.flipped .service-inner { transform: rotateY(180deg); }
.service:hover:not(.flipped) .service-inner { transform: translateY(-5px); }

.service-front,
.service-back {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(6,14,34,0.22);
}
.service-front { background: rgba(8,14,30,0.34); }
.service-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, rgba(47,127,255,0.22), rgba(8,14,30,0.5));
  border-color: rgba(74,144,255,0.4);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-front h3,
.service-back h3 { font-size: 20px; font-weight: 700; color: #fff; }
.service-front p {
  margin-top: 11px;
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  line-height: 1.65;
}
.service-flip {
  margin-top: auto;
  padding-top: 14px;
  color: #fff;
  opacity: 0.8;
  font-size: 12.5px;
  font-weight: 600;
}
.service-back p {
  margin-top: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.6;
}
.service-cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 30px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.service-cta:hover { background: var(--blue-bright); transform: translateX(3px); }

/* Staggered reveal for the grid */
.services-grid .service:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service:nth-child(2) { transition-delay: 0.13s; }
.services-grid .service:nth-child(3) { transition-delay: 0.21s; }
.services-grid .service:nth-child(4) { transition-delay: 0.29s; }
.services-grid .service:nth-child(5) { transition-delay: 0.37s; }
.services-grid .service:nth-child(6) { transition-delay: 0.45s; }

/* Cursor-tracking glow on the front face */
.service-front { position: relative; }
.service-front::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 0%), rgba(74,144,255,0.28), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service:hover:not(.flipped) .service-front::after { opacity: 1; }
.service:hover:not(.flipped) .service-front {
  border-color: rgba(74,144,255,0.6);
  box-shadow: 0 0 34px rgba(47,127,255,0.28), 0 14px 34px rgba(6,14,34,0.22);
}

/* Pulsing flip hint */
.service-flip { animation: hintPulse 2.4s ease-in-out infinite; }
@keyframes hintPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }

/* ===================== PROJECTS ===================== */
.projects {
  position: relative;
  background: #060708;            /* solid black band over the fixed blue */
  color: #fff;
  padding: 110px 22px 130px;
}
.projects-inner { max-width: 1180px; margin: 0 auto; }
.projects-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.projects-heading {
  margin-top: 18px;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.projects-sub { margin-top: 14px; color: #8b94a3; font-size: 14px; }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* Flip card */
.pcard {
  height: 440px;
  perspective: 1400px;
  cursor: pointer;
}
.pcard-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: #0e1118;            /* never transparent, so no flash mid-flip */
  transition: transform 0.8s cubic-bezier(0.4, 0.15, 0.2, 1);
  transform-style: preserve-3d;
}
.pcard.flipped .pcard-inner { transform: rotateY(180deg); }
.pcard:hover .pcard-inner { box-shadow: 0 30px 60px rgba(0,0,0,0.5); }

/* Staggered reveal */
.projects-grid .pcard:nth-child(1) { transition-delay: 0.05s; }
.projects-grid .pcard:nth-child(2) { transition-delay: 0.16s; }
.projects-grid .pcard:nth-child(3) { transition-delay: 0.27s; }


/* Hard-cut the front (and its big number) out at the half-way point of the flip */
.pcard-front { transition: opacity 0s linear 0.4s; }
.pcard.flipped .pcard-front { opacity: 0; }

.pcard-front,
.pcard-back {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0e1118;
}

/* Front */
.pcard-front { display: flex; flex-direction: column; }
.pcard-banner {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 30px;
  background: linear-gradient(140deg, var(--a1), var(--a2));
  position: relative;
  border-radius: 21px 21px 0 0;        /* match the card's rounded top */
}
.pcard-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 21px 21px 0 0;
  background: radial-gradient(120% 80% at 80% 0%, rgba(255,255,255,0.25), transparent 60%);
}
.pcard-stat {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.pcard-stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}
.pcard-body { padding: 26px 30px; display: flex; flex-direction: column; flex: 1; }
.pcard-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--a1);
}
.pcard-body h3 { margin-top: 12px; font-size: 23px; font-weight: 700; }
.pcard-body p { margin-top: 10px; color: #9aa3b2; font-size: 14px; line-height: 1.6; }
.pcard-flip {
  margin-top: auto;
  padding-top: 16px;
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  opacity: 0.85;
}

/* Back */
.pcard-back {
  transform: rotateY(180deg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(120% 60% at 50% 0%, color-mix(in srgb, var(--a1) 22%, transparent), transparent 60%),
    #0e1118;
  border-color: color-mix(in srgb, var(--a1) 45%, transparent);
}
.pcard-back h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.cs { margin-bottom: 14px; }
.cs strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--a1);
  margin-bottom: 4px;
}
.cs p { color: #c4ccd8; font-size: 13.5px; line-height: 1.55; }
.pcard-back .pcard-flip { color: var(--a1); opacity: 1; }

/* ===================== REVIEWS ===================== */
/* Transparent — sits on the shared fixed blue background */
.reviews {
  background: transparent;
  color: #fff;
  padding: 110px 22px 130px;
}
.reviews-inner { max-width: 1180px; margin: 0 auto; }
.reviews-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.reviews-heading {
  margin-top: 18px;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  position: relative;
  padding: 32px 30px;
  border-radius: 18px;
  background: rgba(8,14,30,0.34);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(6,14,34,0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.review:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 24px 46px rgba(6,14,34,0.4);
}
/* Big decorative quote mark */
.quote-mark {
  position: absolute;
  top: -18px;
  right: 14px;
  font-size: 120px;
  line-height: 1;
  font-weight: 800;
  font-family: Georgia, serif;
  color: var(--a1, var(--blue));
  opacity: 0.16;
  pointer-events: none;
}
/* Staggered reveal */
.reviews-grid .review:nth-child(1) { transition-delay: 0.05s; }
.reviews-grid .review:nth-child(2) { transition-delay: 0.16s; }
.reviews-grid .review:nth-child(3) { transition-delay: 0.27s; }

.stars {
  position: relative;
  z-index: 1;
  color: #ffc24b;
  font-size: 16px;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255,194,75,0.5);
}
.quote {
  position: relative;
  z-index: 1;
  margin: 18px 0 26px;
  font-size: 15.5px;
  line-height: 1.7;
  color: #eef2f8;
}
.reviewer { display: flex; align-items: center; gap: 14px; margin-top: auto; position: relative; z-index: 1; }
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--a1, var(--blue));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.review:hover .avatar {
  transform: scale(1.1) rotate(-6deg);
  box-shadow: 0 0 24px var(--a1, var(--blue));
}
.reviewer-meta { display: flex; flex-direction: column; }
.reviewer-meta strong { font-size: 15px; font-weight: 700; }
.reviewer-meta span { font-size: 13px; color: #9aa3b2; margin-top: 2px; }

/* ===================== BLOG ===================== */
.blog {
  background: #060708;          /* black band, like Projects */
  color: #fff;
  padding: 110px 22px 130px;
}
.blog-inner { max-width: 1180px; margin: 0 auto; }
.blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}
.blog-heading {
  margin-top: 14px;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.5px;
}
.blog-viewall {
  color: var(--blue-bright);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}
.blog-viewall:hover { color: #fff; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bcard {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #0e1118;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.bcard:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 22px 44px rgba(0,0,0,0.45);
}
/* Staggered reveal */
.blog-grid .bcard:nth-child(1) { transition-delay: 0.05s; }
.blog-grid .bcard:nth-child(2) { transition-delay: 0.16s; }
.blog-grid .bcard:nth-child(3) { transition-delay: 0.27s; }

.bcard-banner {
  height: 150px;
  background: linear-gradient(140deg, var(--a1), var(--a2));
  display: flex;
  align-items: flex-end;
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.bcard-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 85% 0%, rgba(255,255,255,0.25), transparent 55%);
}
/* Shine sweep across the banner on hover */
.bcard-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 70%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.bcard:hover .bcard-banner::before { left: 160%; }
.bcard-cat {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 12px;
  border-radius: 30px;
  transition: transform 0.25s;
}
.bcard:hover .bcard-cat { transform: translateY(-3px); }
.bcard-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.bcard-meta { font-size: 12px; color: #8b94a3; font-weight: 500; }
.bcard-body h3 {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.2s;
}
.bcard:hover .bcard-body h3 { color: var(--a1); }
.bcard-body p { margin-top: 10px; color: #9aa3b2; font-size: 14px; line-height: 1.6; }
.bcard-link {
  margin-top: 18px;
  padding-top: 4px;
  color: var(--a1);
  font-size: 13px;
  font-weight: 600;
  transition: letter-spacing 0.2s;
}
.bcard:hover .bcard-link { letter-spacing: 0.5px; }

/* Sub-page sticky nav bar */
.subnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6,7,8,0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ===================== BLOG LISTING PAGE ===================== */
.page {
  min-height: 100vh;
  background: #060708;          /* black for contrast against the cards */
  padding: 80px 22px 120px;
}
.page-inner { max-width: 1180px; margin: 0 auto; }
.page-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
  padding-top: 40px;
}
.page-eyebrow { color: var(--blue-bright); font-weight: 600; font-size: 13px; letter-spacing: 3px; }
.page-title {
  margin-top: 14px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -1px;
}
.page-lead { margin: 16px auto 0; max-width: 520px; color: #9aa3b2; font-size: 16px; line-height: 1.7; }

/* Featured post — large horizontal card */
.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  margin-bottom: 26px;
  border-radius: 20px;
  overflow: hidden;
  background: #0e1118;
  border: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.featured:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 26px 50px rgba(0,0,0,0.5);
}
.featured-banner {
  min-height: 320px;
  background: linear-gradient(140deg, var(--a1), var(--a2));
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 22px;
}
.featured-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 85% 0%, rgba(255,255,255,0.25), transparent 55%);
}
.featured-tag {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 7px 14px;
  border-radius: 30px;
}
.featured-body { padding: 44px 48px; display: flex; flex-direction: column; justify-content: center; }
.featured-body .bcard-meta { font-size: 13px; color: #8b94a3; }
.featured-pill {
  align-self: flex-start;
  color: var(--a1);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.featured-body h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin: 10px 0 14px;
  letter-spacing: -0.5px;
}
.featured-body p { color: #9aa3b2; font-size: 15px; line-height: 1.7; }
.featured-body .bcard-link { margin-top: 22px; color: var(--a1); font-size: 14px; font-weight: 600; }

/* ===================== ARTICLE PAGE ===================== */
/* Black background for article pages — match the all-blogs listing page exactly */
body.dark { background-color: #060708; }
body.dark::before { background: #060708; }

/* Minimal top bar: home logo (left) + back button (right) */
.post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 40px 0;
}
.post-back {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  transition: background 0.2s, border-color 0.2s;
}
.post-back:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.45); }

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 50px 22px 120px;
}
.article-cat {
  display: inline-block;
  background: var(--a1, var(--blue));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 30px;
}
.article h1 {
  margin-top: 18px;
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
}
.article-meta { margin-top: 16px; color: #8b94a3; font-size: 14px; }
.article-hero {
  height: 280px;
  border-radius: 20px;
  margin: 34px 0 40px;
  background: linear-gradient(140deg, var(--a1, var(--blue)), var(--a2, var(--blue-deep)));
  position: relative;
  overflow: hidden;
}
.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 80% 0%, rgba(255,255,255,0.25), transparent 55%);
}
.article-body { color: #c4ccd8; font-size: 16.5px; line-height: 1.8; }
.article-body h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 38px 0 14px;
  letter-spacing: -0.3px;
}
.article-body p { margin-bottom: 20px; }
.article-body ul { margin: 0 0 20px 0; padding-left: 22px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: #fff; font-weight: 700; }
.article-body a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.article-body a:hover { color: #fff; }
/* Larger intro line for character */
.article-body > p:first-child { font-size: 19px; line-height: 1.7; color: #d7dde6; }
.article-cta {
  margin-top: 50px;
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(47,127,255,0.16), rgba(31,95,208,0.08));
  border: 1px solid rgba(74,144,255,0.3);
  text-align: center;
}
.article-cta h3 { font-size: 22px; font-weight: 700; }
.article-cta p { margin-top: 8px; color: #9aa3b2; font-size: 15px; }
.article-cta .cta { margin-top: 20px; }

/* ===================== POST LAYOUT (big title + sticky rails) ===================== */
/* Big title hero — centered title block above the article body */
.post-hero {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 40px 0;
  text-align: left;
}
/* soft glow behind the title */
.post-hero::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 640px;
  max-width: 90%;
  height: 360px;
  background: radial-gradient(50% 60% at 30% 0%, var(--blue), transparent 70%);
  opacity: 0;
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}
.post-hero-inner { position: relative; }
.post-crumbs {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #6f7787;
  margin-bottom: 30px;
}
.post-crumbs a { color: #8b94a3; text-decoration: none; }
.post-crumbs a:hover { color: #fff; }
.post-crumbs .sep { margin: 0 8px; color: #444b58; }
.post-crumbs .here { color: #8b94a3; }

.post-tags { display: flex; align-items: center; justify-content: flex-start; gap: 16px; }
.post-cat {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  color: var(--blue);
  border: 1px solid var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 30px;
}
.post-read { font-size: 12px; font-weight: 600; letter-spacing: 1px; color: #6f7787; }

.post-title {
  margin: 24px 0 0;
  max-width: 18ch;
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.8px;
}
.post-sub {
  margin: 26px 0 0;
  max-width: 640px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  color: #8b94a3;
}
.post-byline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.post-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #111;
}
.post-author { display: block; font-size: 15px; font-weight: 600; color: #fff; }
.post-date { display: block; font-size: 12px; letter-spacing: 1px; color: #6f7787; margin-top: 2px; }

/* Hero image / banner under the title */
.post-banner {
  max-width: 1320px;
  margin: 48px auto 0;
  padding: 0 40px;
}
.post-banner-img {
  height: clamp(260px, 42vw, 500px);
  border-radius: 22px;
  background: linear-gradient(140deg, var(--blue), var(--blue-deep));
  position: relative;
  overflow: hidden;
}
.post-banner-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 80% 0%, rgba(255,255,255,0.22), transparent 55%);
}

/* Three-column body: sticky TOC (left) + centered content + sticky aside (right) */
.post-layout {
  max-width: 1320px;
  margin: 0 auto;
  padding: 64px 40px 120px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 300px;
  gap: 60px;
  align-items: start;
}
.post-toc {
  position: sticky;
  top: 100px;
}
.post-toc-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 18px;
}
.post-toc nav { display: flex; flex-direction: column; }
.post-toc a {
  font-size: 14px;
  line-height: 1.45;
  color: #8b94a3;
  text-decoration: none;
  padding: 9px 0 9px 18px;
  border-left: 2px solid rgba(255,255,255,0.1);
  transition: color 0.2s, border-color 0.2s;
}
.post-toc a:hover { color: #fff; }
.post-toc a.is-active {
  color: #fff;
  border-left-color: var(--blue);
}

/* Centered reading column */
.post-main { width: 100%; max-width: 820px; margin: 0 auto; }
.post-main .article-body h2 { scroll-margin-top: 100px; }

/* Right rail — sticky widget cards */
.post-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.post-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 24px;
}
.post-card-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
  margin-bottom: 16px;
}
.post-card h4 { font-size: 17px; font-weight: 700; color: #fff; }
.post-card p { margin-top: 8px; font-size: 13.5px; line-height: 1.55; color: #8b94a3; }
.post-card-btn {
  display: block;
  width: 100%;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  margin-top: 18px;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 13px 16px;
  border-radius: 30px;
  background: var(--blue);
  color: #fff;
  transition: filter 0.2s;
}
.post-card-btn:hover { filter: brightness(1.1); }
.post-card-input {
  width: 100%;
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-family: inherit;
  font-size: 13.5px;
}
.post-card-input::placeholder { color: #6f7787; }
.post-card-note { margin-top: 12px; font-size: 11px; letter-spacing: 0.5px; color: #5b636f; }

/* Drop right rail first, then stack TOC on top */
@media (max-width: 1180px) {
  .post-layout { grid-template-columns: 200px minmax(0, 1fr); }
  .post-aside { display: none; }
}
@media (max-width: 900px) {
  .post-nav, .post-hero, .post-banner, .post-layout { padding-left: 22px; padding-right: 22px; }
  .post-hero { padding-top: 44px; }
  .post-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 44px;
  }
  .post-toc { position: static; top: auto; }
  .post-toc nav { flex-flow: row wrap; gap: 4px 16px; }
  .post-toc a { border-left: none; padding: 4px 0; }
  .post-toc a.is-active { border-left: none; }
  .post-main { max-width: 100%; }
}
/* Phones — tighten the big title and spacing */
@media (max-width: 560px) {
  .post-title { font-size: clamp(30px, 9vw, 40px); max-width: 100%; letter-spacing: -1px; }
  .post-banner { margin-top: 32px; }
  .post-banner-img { border-radius: 16px; }
  .post-byline { margin-top: 30px; padding-top: 22px; }
}

/* ===================== FEATURED BLOGS (simple cards above contact) ===================== */
.fblogs {
  background: #060708;
  padding: 84px 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fblogs-inner { max-width: 1180px; margin: 0 auto; }
.fblogs-head { text-align: center; margin-bottom: 42px; }
.fblogs-eyebrow { color: var(--blue-bright); font-weight: 600; font-size: 13px; letter-spacing: 3px; }
.fblogs-title { margin-top: 12px; font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; color: #fff; }
.fblogs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fblog-card {
  display: flex; flex-direction: column;
  background: #0e1118;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 26px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.fblog-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.28); box-shadow: 0 18px 38px rgba(0,0,0,0.4); }
.fblog-cat {
  align-self: flex-start;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--blue); border: 1px solid var(--blue);
  background: rgba(255,255,255,0.04);
  padding: 5px 12px; border-radius: 30px;
}
.fblog-meta { margin-top: 16px; font-size: 12px; color: #8b94a3; }
.fblog-card h3 { margin-top: 8px; font-size: 18px; font-weight: 700; line-height: 1.3; color: #fff; }
.fblog-card p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: #9aa3b2; flex: 1; }
.fblog-link { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--blue); }
.fblogs-foot { text-align: center; margin-top: 38px; }
.fblogs-all {
  color: #fff; text-decoration: none; font-weight: 600; font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 26px; border-radius: 30px;
  transition: background 0.2s, border-color 0.2s;
}
.fblogs-all:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
@media (max-width: 820px) {
  .fblogs-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ===================== FOOTER ===================== */
.footer {
  position: relative;
  background: #050608;
  color: #fff;
  overflow: hidden;
  padding-top: 90px;
}

/* Big CTA */
.footer-cta {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 22px 70px;
}
.footer-eyebrow { color: var(--blue-bright); font-weight: 600; font-size: 13px; letter-spacing: 3px; }
.footer-cta-title {
  margin-top: 18px;
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
}
.footer-cta-title span {
  background: linear-gradient(100deg, var(--blue-bright), #9b6bff);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-cta-btn { margin-top: 30px; font-size: 17px; padding: 17px 32px; }

/* Marquee */
.marquee {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  padding: 22px 0;
  background: linear-gradient(90deg, rgba(47,127,255,0.08), transparent, rgba(155,107,255,0.08));
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track span {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.4);
  white-space: nowrap;
  padding-right: 10px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Link columns */
.footer-main {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 22px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  color: #9aa3b2;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 340px;
}
.socials { display: flex; gap: 12px; margin-top: 22px; }
.social {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #c7d6ff;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.social svg { width: 19px; height: 19px; }
.social:hover {
  transform: translateY(-4px) rotate(-6deg);
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: #9aa3b2;
  text-decoration: none;
  font-size: 14.5px;
  margin-bottom: 11px;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col a:hover { color: var(--blue-bright); padding-left: 5px; }

/* Giant wordmark */
.footer-giant {
  text-align: center;
  font-size: clamp(30px, 10.2vw, 150px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.9;
  padding: 0 10px;
  margin-top: 10px;
  background: linear-gradient(180deg, rgba(74,144,255,0.22), rgba(74,144,255,0));
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
}

/* Bottom bar */
.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 22px 34px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #8b94a3;
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .blog-head { flex-direction: column; align-items: flex-start; }
  .featured { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 26px; }
  .featured-banner { min-height: 180px; }
  .featured-body { padding: 30px 28px; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-giant { letter-spacing: -2px; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
/* ---- Hamburger nav (tablet + phone) ---- */
@media (max-width: 860px) {
  .nav { padding: 18px 16px; }
  .nav-toggle { display: flex; position: relative; z-index: 210; }
  .nav .logo { position: relative; z-index: 210; }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 200;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    background: #0a0e18;
    padding: 94px 20px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }
  .nav.open .nav-links { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-links > a { padding: 16px; border-radius: 12px; font-size: 17px; letter-spacing: 0.3px; }
  .nav-links > a:hover, .nav-links > a:active { background: rgba(255,255,255,0.05); }
  .nav-links .nav-cta { margin-top: 14px; justify-content: center; }
  /* Services accordion — collapsed by default, expanded via .nav-dd.open (nav.js) */
  .nav-dd { display: block; width: 100%; }
  .nav-links .nav-dd-toggle { display: flex; align-items: center; justify-content: space-between; padding: 16px; border-radius: 12px; font-size: 17px; letter-spacing: 0.3px; font-weight: 500; }
  .nav-dd-caret { font-size: 11px; transition: transform 0.25s; }
  .nav-dd.open .nav-dd-caret { transform: rotate(180deg); }
  .nav-dd-menu {
    position: static; transform: none; box-shadow: none; border: none; background: transparent;
    min-width: 0; margin: 0; padding: 0 0 4px 14px;
    display: flex; flex-direction: column;
    max-height: 0; overflow: hidden;
    opacity: 1; visibility: visible; pointer-events: auto;
    transition: max-height 0.3s ease;
  }
  .nav-dd.open .nav-dd-menu { max-height: 480px; }
  .nav-dd-menu::before { display: none; }
  .nav-dd-menu a { padding: 12px 14px; font-size: 14.5px; color: #c4ccd8 !important; }
  .nav-dd-all { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 4px; }
}

/* ---- Hero + sections on phones ---- */
@media (max-width: 760px) {
  .watermark { bottom: 78px; }
  .hero-content { padding-top: 20px; }
  .headline { font-size: clamp(50px, 15.5vw, 82px); letter-spacing: -1.5px; }
  /* Vertically center the hero content on mobile */
  .hero { display: flex; flex-direction: column; }
  .nav { flex-shrink: 0; }
  .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 24px 7vh;   /* bottom padding biases the centered content slightly upward */
  }
  .subtext { font-size: 16.5px; max-width: 360px; margin: 24px auto 0; overflow-wrap: break-word; line-height: 1.65; }
  .subtext br { display: none; }
  .cta { font-size: 14px; padding: 12px 22px; margin-top: 26px; }
  .cta-arrow { font-size: 16px; }
  .megaphone { width: 38px; height: 38px; }
  .orb { opacity: 0.4; filter: blur(50px); }

  .about { padding: 110px 20px 100px; }
  .about-heading br { display: none; }
  .about-stats { gap: 30px; }

  .services { padding: 20px 20px 80px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ---- Extra-small phones ---- */
@media (max-width: 430px) {
  .headline { font-size: clamp(44px, 15.5vw, 74px); letter-spacing: -1.5px; }
  .watermark-track span { font-size: 64px; }
  .nav .logo-text { font-size: 14px; letter-spacing: 1.5px; }
  .footer-cta-title { font-size: clamp(30px, 9vw, 44px); }
  .footer-giant { letter-spacing: -1px; }
}


/* ===================== PROJECT WIZARD ===================== */
.wizard {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  overflow-y: auto;
  overflow-x: hidden;
  background: #06070b;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.wizard.open { display: block; }
.wizard.open .wizard-inner { animation: wizUp 0.35s ease; }
@keyframes wizFade { from { opacity: 0; } to { opacity: 1; } }
.wizard-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(47,127,255,0.18), transparent 60%),
    #06070b;
}
.wizard-close {
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.wizard-close:hover { background: rgba(255,255,255,0.14); transform: rotate(90deg); }

.wizard-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 90px 22px 60px;
}

/* Progress */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.wstep {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6b7280;
  font-size: 13.5px;
  font-weight: 600;
  transition: color 0.3s;
}
.wstep-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.wstep.active { color: #fff; }
.wstep.active .wstep-num { background: var(--blue); border-color: var(--blue); color: #fff; }
.wstep.done .wstep-num { background: rgba(74,144,255,0.25); border-color: var(--blue-bright); color: var(--blue-bright); }

/* Panels */
.wpanel { display: none; animation: wizUp 0.4s ease; }
.wpanel.active { display: block; }
@keyframes wizUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.wpanel-eyebrow { color: var(--blue-bright); font-size: 12px; font-weight: 700; letter-spacing: 2px; }
.wpanel h2 { margin-top: 12px; font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -0.5px; }
.wpanel-sub { margin-top: 12px; color: #9aa3b2; font-size: 15px; line-height: 1.6; }

/* Service select grid */
.select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.select-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.select-card svg { width: 26px; height: 26px; color: var(--blue-bright); flex-shrink: 0; }
.select-card:hover { transform: translateY(-3px); border-color: rgba(74,144,255,0.5); }
.select-card .check {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.2s;
}
.select-card.selected {
  border-color: var(--blue);
  background: rgba(74,144,255,0.12);
}
.select-card.selected .check { opacity: 1; transform: scale(1); }

/* Fields */
.wfield { margin-top: 26px; }
.wfield label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #e7eefc;
}
.wgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; margin-top: 6px; }
.wgrid .wfield { margin-top: 18px; }
.wfield input,
.wfield textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.wfield input::placeholder,
.wfield textarea::placeholder { color: #6b7280; }
.wfield input:focus,
.wfield textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(74,144,255,0.07);
}
.wfield textarea { resize: vertical; }

/* Chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 11px 18px;
  border-radius: 30px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.14);
  color: #d7dce4;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.chip:hover { border-color: rgba(74,144,255,0.5); }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* Summary */
.wizard-summary {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #9aa3b2;
  line-height: 1.7;
}
.wizard-summary strong { color: #fff; font-weight: 600; }
.wizard-summary:empty { display: none; }

/* Actions */
.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
}
.wbtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 40px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.wbtn-primary { background: var(--blue); color: #fff; box-shadow: 0 12px 30px rgba(47,127,255,0.35); margin-left: auto; }
.wbtn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); }
.wbtn-primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.wbtn-ghost { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.14); }
.wbtn-ghost:hover { background: rgba(255,255,255,0.12); }
.bundle-count { color: #9aa3b2; font-size: 14px; font-weight: 500; }

/* Success */
.wsuccess { text-align: center; padding-top: 30px; }
.wsuccess.active { display: block; }
.success-check {
  width: 86px;
  height: 86px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--blue-bright), var(--blue-deep));
  color: #fff;
  font-size: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(47,127,255,0.5);
  animation: pop 0.5s cubic-bezier(0.2,0.9,0.3,1.3);
}
.wsuccess h2 { font-size: clamp(28px, 4vw, 40px); }
.wsuccess .wbtn { margin: 30px auto 0; }

@media (max-width: 620px) {
  .wizard-inner { padding: 84px 16px 70px; }
  .select-grid { grid-template-columns: 1fr; }
  .wgrid { grid-template-columns: 1fr; }
  .wizard-progress { gap: 8px 12px; margin-bottom: 36px; }
  .wstep { font-size: 12px; gap: 6px; }
  .wstep-num { width: 22px; height: 22px; font-size: 11px; }
  .wpanel h2 { font-size: clamp(24px, 7vw, 32px); }
  .wizard-actions { gap: 12px; }
  .wbtn { padding: 13px 20px; font-size: 14px; }
  .select-card { padding: 18px 18px; }
}


/* ---- Wizard: package option cards (name + price + detail) ---- */
.select-card .pkgopt { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.select-card .pkgopt strong { font-weight: 700; font-size: 15px; }
.select-card .pkgopt em { font-style: normal; color: var(--blue-bright); font-size: 12.5px; font-weight: 600; }
.select-card .pkgopt small { color: #9aa3b2; font-size: 12px; font-weight: 500; margin-top: 4px; line-height: 1.45; }
/* with three lines, top-align the icon + keep room for the check */
.wpanel[data-panel="2"] .select-card { align-items: flex-start; padding-right: 40px; }
.wpanel[data-panel="2"] .select-card svg { margin-top: 2px; }

/* ---- Wizard: native select (conditional package picker) ---- */
.wfield select {
  width: 100%;
  background-color: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234a90ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.2s, background-color 0.2s;
}
.wfield select:focus { outline: none; border-color: var(--blue); background-color: rgba(74,144,255,0.07); }
.wfield select option { color: #0a0c10; }
/* Conditional package field — slides in when Website Creation is picked */
.wpkg[hidden] { display: none; }
.wpkg {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(74,144,255,0.08);
  border: 1px solid rgba(74,144,255,0.28);
  animation: wizUp 0.35s ease;
}
.wpkg-hint { display: block; margin-top: 8px; font-size: 13px; font-weight: 600; min-height: 1px; }

/* ---- Mobile polish: never let display type overflow ---- */
.lp-h1, .lp-heading, .packages-heading, .footer-cta-title { overflow-wrap: break-word; }
@media (max-width: 430px) {
  .lp-h1 { font-size: clamp(30px, 8.8vw, 40px); letter-spacing: -1px; }
  .lp-heading { font-size: clamp(24px, 7vw, 32px); }
}

/* ===================== PACKAGES (homepage) ===================== */
.packages {
  background: #060708;            /* black band, like Projects/Blog */
  color: #fff;
  padding: 110px 22px 130px;
  position: relative;
}
.packages-inner { max-width: 1180px; margin: 0 auto; }
.packages-head { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.packages-heading {
  margin-top: 18px;
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
.packages-sub { margin-top: 14px; color: #8b94a3; font-size: 15px; line-height: 1.6; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px 30px;
  border-radius: 22px;
  background: rgba(8,14,30,0.34);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(6,14,34,0.22);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.pkg:hover {
  transform: translateY(-6px);
  border-color: rgba(74,144,255,0.5);
  box-shadow: 0 0 34px rgba(47,127,255,0.2), 0 24px 50px rgba(6,14,34,0.4);
}
.pkg-name { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-bright); }
.pkg-price { display: flex; align-items: baseline; gap: 9px; margin-top: 16px; }
.pkg-amount {
  font-size: clamp(40px, 4.4vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1;
  background: linear-gradient(100deg, var(--blue-bright), #9b6bff);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pkg-term { color: #8b94a3; font-size: 14px; font-weight: 600; }
.pkg-desc { margin-top: 14px; color: rgba(255,255,255,0.7); font-size: 14.5px; line-height: 1.6; }
.pkg-feats {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.pkg-feats li { display: flex; align-items: flex-start; gap: 11px; color: rgba(255,255,255,0.82); font-size: 14px; line-height: 1.5; }
.pkg-feats svg { width: 18px; height: 18px; color: var(--blue-bright); flex-shrink: 0; margin-top: 1px; }
.pkg-feats li strong { color: #fff; font-weight: 700; }
.pkg-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.pkg-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(74,144,255,0.6); }
.pkg-cta-arrow { transition: transform 0.2s; }
.pkg:hover .pkg-cta-arrow { transform: translateX(3px); }

/* Push the CTA to the bottom so all three buttons line up */
.pkg-feats { flex: 1; }

/* Featured (middle) package */
.pkg-featured {
  border-color: rgba(74,144,255,0.55);
  background: linear-gradient(170deg, rgba(47,127,255,0.18), rgba(8,14,30,0.5));
  box-shadow: 0 0 40px rgba(47,127,255,0.22), 0 14px 34px rgba(6,14,34,0.3);
}
.pkg-featured .pkg-cta { background: var(--blue); border-color: var(--blue); box-shadow: 0 8px 20px rgba(47,127,255,0.35); }
.pkg-featured .pkg-cta:hover { background: var(--blue-bright); border-color: var(--blue-bright); }
.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 16px;
  border-radius: 30px;
  background: linear-gradient(100deg, var(--blue-bright), #9b6bff);
  box-shadow: 0 8px 20px rgba(155,107,255,0.4);
}

/* Staggered reveal */
.packages-grid .pkg:nth-child(1) { transition-delay: 0.05s; }
.packages-grid .pkg:nth-child(2) { transition-delay: 0.16s; }
.packages-grid .pkg:nth-child(3) { transition-delay: 0.27s; }

@media (max-width: 860px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pkg-badge { top: -12px; }
}

/* ===================== LANDING PAGE — One-Page Website ($499) ===================== */
/* Scoped with .lp- prefix. Reuses the homepage tokens, glass surfaces, gradients,
   eyebrow/heading rhythm, .cta buttons, .about-stats, .review and .reveal motion. */

/* Visible focus states (page-wide, accessibility) */
.lp-page a:focus-visible,
.lp-page button:focus-visible,
.lp-page summary:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---- Hero (two-column) ---- */
.lp-hero {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 22px 120px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.lp-hero-copy { text-align: left; }
.lp-eyebrow {
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.lp-h1 {
  margin-top: 18px;
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -1.5px;
}
.lp-grad {
  background: linear-gradient(100deg, var(--blue-bright), #9b6bff);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-sub {
  margin-top: 22px;
  max-width: 520px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
}
.lp-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.lp-hero .hero-pill { margin: 24px 0 0; }
/* Price chip + "Most popular" badge row */
.lp-pricerow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.lp-pricerow .hero-pill { margin: 0; }
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  background: linear-gradient(100deg, var(--blue-bright), #9b6bff);
  box-shadow: 0 8px 20px rgba(155,107,255,0.35);
}
.lp-textlink {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.lp-textlink:hover { color: var(--blue-bright); border-color: var(--blue-bright); }

/* ---- Hero browser mockup (pure CSS, no image → no layout shift) ---- */
.lp-mock-wrap { position: relative; }
.lp-mock-glow {
  position: absolute;
  inset: -14% -8%;
  z-index: -1;
  background:
    radial-gradient(58% 58% at 45% 38%, rgba(74,144,255,0.5), transparent 70%),
    radial-gradient(52% 52% at 72% 72%, rgba(155,107,255,0.45), transparent 70%);
  filter: blur(42px);
  pointer-events: none;
}
.lp-mock {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(8,14,30,0.5);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px rgba(6,14,34,0.5);
  overflow: hidden;
}
.lp-mock-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.lp-mock-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.lp-mock-body { padding: 24px; }
/* Multi-page nav hint (3-page mockup) */
.lp-mock-tabs { display: flex; gap: 8px; margin-bottom: 16px; }
.lp-mock-tabs span { height: 10px; border-radius: 5px; background: rgba(255,255,255,0.16); }
.lp-mock-tabs span:nth-child(1) { width: 44px; background: rgba(255,255,255,0.5); }
.lp-mock-tabs span:nth-child(2) { width: 38px; }
.lp-mock-tabs span:nth-child(3) { width: 50px; }
.lp-mock-hero {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(150deg, rgba(47,127,255,0.92), rgba(155,107,255,0.85));
}
.lp-mock-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, rgba(255,255,255,0.3), transparent 60%);
}
.lp-mock-eyebrow { width: 78px; height: 9px; border-radius: 5px; background: rgba(255,255,255,0.55); position: relative; z-index: 1; }
.lp-mock-title { width: 82%; height: 18px; border-radius: 6px; background: rgba(255,255,255,0.92); position: relative; z-index: 1; }
.lp-mock-title--short { width: 56%; }
.lp-mock-btn {
  align-self: flex-start;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-deep);
  background: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.lp-mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.lp-mock-cards span { height: 54px; border-radius: 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.lp-mock-lines { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.lp-mock-lines span { height: 9px; border-radius: 5px; background: rgba(255,255,255,0.1); }
.lp-mock-lines span:last-child { width: 70%; }

/* ---- Section bands (alternate dark / blue like the homepage) ---- */
.lp-band { padding: 110px 22px 120px; position: relative; }
.lp-band--dark { background: #060708; }
.lp-band--blue { background: transparent; }     /* sits on the shared fixed blue */
.lp-inner { max-width: 1100px; margin: 0 auto; }
.lp-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.lp-heading {
  margin-top: 16px;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.lp-intro { margin-top: 16px; color: rgba(255,255,255,0.72); font-size: 16px; line-height: 1.7; }

/* ---- Feature / reason cards (glass, reuse homepage surface) ---- */
.lp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lp-grid--why { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; gap: 22px; }
.lp-card {
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(8,14,30,0.34);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(6,14,34,0.22);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.lp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74,144,255,0.55);
  box-shadow: 0 0 34px rgba(47,127,255,0.22), 0 14px 34px rgba(6,14,34,0.22);
}
.lp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--blue-bright);
  margin-bottom: 18px;
}
.lp-icon svg { width: 26px; height: 26px; }
.lp-card h3 { font-size: 17px; font-weight: 700; line-height: 1.3; }
.lp-card p { margin-top: 8px; color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }
/* Staggered reveal */
.lp-grid .lp-card:nth-child(2) { transition-delay: 0.06s; }
.lp-grid .lp-card:nth-child(3) { transition-delay: 0.12s; }
.lp-grid .lp-card:nth-child(4) { transition-delay: 0.18s; }
.lp-grid .lp-card:nth-child(5) { transition-delay: 0.24s; }
.lp-grid .lp-card:nth-child(6) { transition-delay: 0.30s; }
.lp-grid .lp-card:nth-child(7) { transition-delay: 0.36s; }
.lp-grid .lp-card:nth-child(8) { transition-delay: 0.42s; }
.lp-grid .lp-card:nth-child(9) { transition-delay: 0.48s; }

/* ---- Proof: client strip + single testimonial ---- */
.lp-clients-label {
  text-align: center;
  color: #8b94a3;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 56px;
}
.lp-clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 44px;
  margin-top: 22px;
}
.lp-client {
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.lp-client:hover { color: #fff; }
.lp-quote-wrap { max-width: 640px; margin: 56px auto 0; }

/* ---- FAQ accordion (native <details>) ---- */
.lp-faq { max-width: 760px; margin: 0 auto; }
.lp-faq details {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(8,14,30,0.34);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}
.lp-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  color: var(--blue-bright);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s;
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq p { padding: 0 22px 22px; margin: 0; color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.7; }

/* ---- Closing reassurance line under the footer CTA ---- */
.lp-reassure { margin-top: 18px; color: #8b94a3; font-size: 14px; font-weight: 500; }

/* ---- Careers page: hero earnings card ---- */
.lp-pay-card {
  border-radius: 18px;
  padding: 34px 30px;
  background: linear-gradient(160deg, rgba(47,127,255,0.22), rgba(8,14,30,0.5));
  border: 1px solid rgba(74,144,255,0.4);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 70px rgba(6,14,34,0.5);
}
.lp-pay-big {
  font-size: clamp(56px, 8vw, 84px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  background: linear-gradient(100deg, var(--blue-bright), #9b6bff);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-pay-cap { margin-top: 10px; color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 600; }
.lp-pay-list {
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp-pay-list span { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-size: 14.5px; font-weight: 500; }
.lp-pay-list svg { width: 20px; height: 20px; color: var(--blue-bright); flex-shrink: 0; }

/* ---- Careers page: big gradient metric inside a pay card ---- */
.lp-pay-num {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.05;
  background: linear-gradient(100deg, var(--blue-bright), #9b6bff);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Careers page: application form ---- */
.lp-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 20px;
  background: rgba(8,14,30,0.34);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(6,14,34,0.22);
}
.lp-form .wgrid .wfield:nth-child(-n+2) { margin-top: 6px; }
.lp-form select {
  width: 100%;
  background-color: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234a90ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.2s, background-color 0.2s;
}
.lp-form select:focus { outline: none; border-color: var(--blue); background-color: rgba(74,144,255,0.07); }
.lp-form option { color: #0a0c10; }

/* Higher contrast for the careers form on its bright blue background */
.lp-form .wfield label { color: #fff; }
.lp-form .wfield input,
.lp-form .wfield textarea {
  background: rgba(0,0,0,0.22);
  border-color: rgba(255,255,255,0.30);
  color: #fff;
}
.lp-form select { background-color: rgba(0,0,0,0.22); border-color: rgba(255,255,255,0.30); }
.lp-form .wfield input::placeholder,
.lp-form .wfield textarea::placeholder { color: rgba(255,255,255,0.8); }
.lp-form-actions { margin-top: 30px; }
.lp-form-actions .wbtn { width: 100%; justify-content: center; margin-left: 0; }

/* Success / thank-you state */
.lp-form-success {
  display: none;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 44px 30px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(47,127,255,0.16), rgba(31,95,208,0.08));
  border: 1px solid rgba(74,144,255,0.3);
}
.lp-form-success.show { display: block; }
.lp-form-success .success-check { margin: 0 auto 22px; }
.lp-form-success h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.3px; }
.lp-form-success p { margin-top: 10px; color: #9aa3b2; font-size: 15px; line-height: 1.7; }

/* ---- Sticky mobile checkout bar ---- */
.lp-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(6,7,8,0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lp-sticky a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(47,127,255,0.35);
}
.lp-sticky a:hover { background: var(--blue-bright); }

/* ---- Landing responsive ---- */
@media (max-width: 980px) {
  .lp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .lp-hero { grid-template-columns: 1fr; gap: 42px; padding: 28px 22px 100px; }
  .lp-hero-copy { text-align: center; }
  .lp-sub { max-width: 540px; margin-left: auto; margin-right: auto; }
  .lp-hero-actions { justify-content: center; }
  .lp-mock-wrap { order: 2; max-width: 460px; margin: 0 auto; width: 100%; }
}
@media (max-width: 760px) {
  .lp-band { padding: 84px 20px 84px; }
  .lp-sticky { display: block; }
  body.lp-page { padding-bottom: 78px; }
}
@media (max-width: 560px) {
  .lp-grid, .lp-grid--why { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ===================== LEGAL PAGES (privacy / terms) ===================== */
.legal { max-width: 820px; margin: 0 auto; padding: 72px 22px 100px; }
.legal-head { margin-bottom: 36px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.legal-eyebrow { color: var(--blue-bright); font-weight: 600; font-size: 13px; letter-spacing: 3px; }
.legal h1 { margin-top: 12px; font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -1.5px; }
.legal-updated { margin-top: 14px; color: #8b94a3; font-size: 14px; }
.legal-body { color: #c4ccd8; font-size: 16px; line-height: 1.8; }
.legal-body h2 { color: #fff; font-size: 22px; font-weight: 700; margin: 36px 0 12px; letter-spacing: -0.3px; }
.legal-body h3 { color: #fff; font-size: 16.5px; font-weight: 700; margin: 22px 0 8px; }
.legal-body p { margin-bottom: 16px; }
.legal-body ul { margin: 0 0 16px 0; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: #fff; }

/* Footer legal links + in-form consent line */
.footer-legal a { color: #8b94a3; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #fff; }
.footer-legal .sep { margin: 0 8px; color: #444b58; }
.form-legal { font-size: 12px; line-height: 1.5; color: #8b94a3; margin: 0 0 14px; }
.form-legal a { color: var(--blue-bright); text-decoration: underline; }

/* ===================== SERVICE / LOCATION PAGES ===================== */
.svc { background: #060708; }
.svc-hero { position: relative; max-width: 1080px; margin: 0 auto; padding: 78px 22px 36px; text-align: center; }
.svc-hero::before { content:""; position:absolute; top:-20px; left:50%; transform:translateX(-50%); width:680px; max-width:90%; height:340px; background: radial-gradient(50% 60% at 50% 0%, var(--blue), transparent 70%); opacity:.16; filter:blur(60px); z-index:0; pointer-events:none; }
.svc-hero > * { position: relative; z-index: 1; }
.svc-crumbs { font-size:12px; letter-spacing:.5px; color:#6f7787; margin-bottom:22px; }
.svc-crumbs a { color:#8b94a3; text-decoration:none; } .svc-crumbs a:hover{ color:#fff; } .svc-crumbs .sep{ margin:0 8px; color:#444b58; }
.svc-eyebrow { color: var(--blue-bright); font-weight:600; font-size:13px; letter-spacing:3px; }
.svc-hero h1 { margin-top:14px; font-size: clamp(34px,5.5vw,60px); font-weight:800; letter-spacing:-1.5px; line-height:1.05; }
.svc-lead { margin:20px auto 0; max-width:660px; color:#9aa3b2; font-size:clamp(16px,2vw,19px); line-height:1.65; }
.svc-actions { margin-top:32px; display:flex; gap:14px; flex-wrap:wrap; justify-content:center; }
.svc-ghost { display:inline-flex; align-items:center; gap:8px; color:#fff; text-decoration:none; font-weight:600; font-size:15px; padding:15px 26px; border:1px solid rgba(255,255,255,0.2); border-radius:30px; transition:background .2s,border-color .2s; }
.svc-ghost:hover { background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.4); }
.svc-section { max-width: 1080px; margin: 0 auto; padding: 54px 22px; }
.svc-section h2 { font-size: clamp(26px,3.5vw,38px); font-weight:800; letter-spacing:-1px; color:#fff; text-align:center; }
.svc-section .svc-sub { margin:14px auto 0; max-width:620px; text-align:center; color:#9aa3b2; font-size:16px; line-height:1.7; }
.svc-grid { margin-top:40px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.svc-card { background:#0e1118; border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:26px; }
.svc-card h3 { font-size:17.5px; font-weight:700; color:#fff; }
.svc-card p { margin-top:10px; font-size:14.5px; line-height:1.6; color:#9aa3b2; }
.svc-steps { margin-top:40px; display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.svc-step { background:#0e1118; border:1px solid rgba(255,255,255,0.1); border-radius:16px; padding:24px; }
.svc-step-n { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:10px; background:var(--blue); color:#fff; font-weight:800; font-size:16px; }
.svc-step h3 { margin-top:14px; font-size:16px; font-weight:700; color:#fff; }
.svc-step p { margin-top:8px; font-size:14px; line-height:1.6; color:#9aa3b2; }
.svc-faq { max-width:820px; margin:0 auto; padding:54px 22px; }
.svc-faq h2 { font-size: clamp(26px,3.5vw,38px); font-weight:800; letter-spacing:-1px; color:#fff; text-align:center; margin-bottom:14px; }
.faq-item { border-top:1px solid rgba(255,255,255,0.1); padding:22px 2px; }
.faq-item:last-child { border-bottom:1px solid rgba(255,255,255,0.1); }
.faq-item h3 { font-size:17px; font-weight:700; color:#fff; }
.faq-item p { margin-top:10px; color:#9aa3b2; font-size:15px; line-height:1.7; }
.svc-links { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:34px; }
.svc-links a { color:var(--blue-bright); text-decoration:none; font-weight:600; font-size:14.5px; border:1px solid rgba(47,127,255,0.4); border-radius:30px; padding:10px 20px; transition:background .2s,border-color .2s; }
.svc-links a:hover { background:rgba(47,127,255,0.12); border-color:rgba(47,127,255,0.7); }
.svc-cta-band { text-align:center; max-width:760px; margin:0 auto; padding:30px 22px 92px; }
.svc-cta-band h2 { font-size:clamp(26px,4vw,42px); font-weight:800; letter-spacing:-1px; }
.svc-cta-band p { margin:14px auto 0; max-width:520px; color:#9aa3b2; font-size:16px; line-height:1.7; }
.svc-cta-band .cta { margin-top:26px; }
@media (max-width:820px){ .svc-grid{ grid-template-columns:1fr; } .svc-steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .svc-steps{ grid-template-columns:1fr; } }

/* ===================== WEBSITE SERVICE HUB — package tiers + pros/cons ===================== */
.lp-tiers { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:46px; align-items:stretch; }
.lp-tier { background:#0e1118; border:1px solid rgba(255,255,255,0.12); border-radius:20px; padding:32px 26px; display:flex; flex-direction:column; position:relative; }
.lp-tier--featured { border-color: var(--blue); box-shadow:0 0 0 1px var(--blue), 0 24px 50px rgba(47,127,255,0.18); }
.lp-tier-badge { position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--blue); color:#fff; font-size:11px; font-weight:700; letter-spacing:1px; padding:5px 14px; border-radius:30px; white-space:nowrap; }
.lp-tier-name { font-size:13px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--blue-bright); }
.lp-tier-price { margin-top:10px; font-size:44px; font-weight:800; letter-spacing:-1.5px; color:#fff; line-height:1; }
.lp-tier-price span { font-size:15px; font-weight:600; color:#8b94a3; letter-spacing:0; }
.lp-tier-for { margin-top:12px; color:#9aa3b2; font-size:14.5px; line-height:1.55; }
.lp-tier-list { list-style:none; margin:22px 0 0; padding:0; display:flex; flex-direction:column; gap:11px; flex:1; }
.lp-tier-list li { position:relative; padding-left:26px; color:#c4ccd8; font-size:14.5px; line-height:1.5; }
.lp-tier-list li::before { content:"✓"; position:absolute; left:0; top:0; color:var(--blue-bright); font-weight:800; }
.lp-tier-btn { display:block; text-align:center; margin-top:26px; background:var(--blue); color:#fff; text-decoration:none; font-weight:700; font-size:14.5px; padding:15px; border-radius:30px; transition:filter .2s, transform .2s; }
.lp-tier-btn:hover { filter:brightness(1.1); transform:translateY(-2px); }
.lp-tier--featured .lp-tier-btn { background:var(--blue); }
.lp-tier:not(.lp-tier--featured) .lp-tier-btn { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.2); }
.lp-tier:not(.lp-tier--featured) .lp-tier-btn:hover { background:rgba(255,255,255,0.12); }

.lp-pc { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:46px; }
.lp-pc-card { background:#0e1118; border:1px solid rgba(255,255,255,0.1); border-radius:18px; padding:26px; }
.lp-pc-card h3 { font-size:18px; font-weight:700; color:#fff; }
.lp-pc-price { color:var(--blue-bright); font-weight:700; font-size:13.5px; margin-top:3px; letter-spacing:.5px; }
.lp-pc-list { list-style:none; margin:18px 0 0; padding:0; display:flex; flex-direction:column; gap:11px; }
.lp-pc-list li { position:relative; padding-left:26px; font-size:14px; line-height:1.5; color:#aab2c0; }
.lp-pc-good::before { content:"✓"; position:absolute; left:0; top:0; color:#36d399; font-weight:800; }
.lp-pc-bad::before { content:"✕"; position:absolute; left:1px; top:0; color:#ff6b8a; font-weight:800; font-size:12px; }
@media (max-width:860px){ .lp-tiers, .lp-pc { grid-template-columns:1fr; max-width:440px; margin-left:auto; margin-right:auto; } }

/* ===================== SERVICES NAV DROPDOWN ===================== */
.nav-dd-menu { display: flex; flex-direction: column; }
.nav-dd-menu a { display: block; padding: 10px 14px; border-radius: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: .4px; color: #c4ccd8; white-space: nowrap; }
.nav-dd-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }

/* DESKTOP ONLY: hover/focus popover (kept off mobile so it never fights the accordion) */
@media (min-width: 861px) {
  .nav-dd { position: relative; display: inline-flex; align-items: center; }
  .nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
  .nav-dd-caret { font-size: 9px; opacity: .75; transition: transform .2s; }
  .nav-dd:hover .nav-dd-caret, .nav-dd:focus-within .nav-dd-caret { transform: rotate(180deg); }
  .nav-dd-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(4px);
    min-width: 230px; background: #0e1118;
    border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
    padding: 8px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    box-shadow: 0 22px 48px rgba(0,0,0,0.55); z-index: 70;
  }
  .nav-dd-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
  .nav-dd:hover .nav-dd-menu, .nav-dd:focus-within .nav-dd-menu {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(8px);
  }
  .nav-dd-all { margin-top: 4px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.1); color: var(--blue-bright); }
}

/* Service card back — two buttons (blue quote + white learn-more) */
.service-actions { margin-top: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.service-actions .service-cta { margin-top: 0; align-self: auto; }
.service-cta--alt { background: #fff; color: #0e1118; padding: 11px 16px; }
.service-cta--alt:hover { background: #e7edf6; color: #0e1118; transform: translateX(3px); }

/* Inline links inside lp cards / intros / subs — were rendering as default purple links */
.lp-card a, .lp-sub a, .lp-intro a, .lp-faq p a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: text-decoration-color .2s, opacity .2s;
}
.lp-card a:hover, .lp-sub a:hover, .lp-intro a:hover, .lp-faq p a:hover { text-decoration-color: #fff; opacity: .9; }

/* Free-design callout box (web design page) */
.lp-freebox { max-width: 840px; margin: 0 auto; background: linear-gradient(135deg, rgba(47,127,255,0.18), rgba(47,127,255,0.05)); border: 1px solid var(--blue); border-radius: 22px; padding: 38px 32px; text-align: center; }
.lp-freebox .about-eyebrow { color: var(--blue-bright); }
.lp-freebox h2 { margin-top: 10px; font-size: clamp(24px,3.6vw,36px); font-weight: 800; letter-spacing: -1px; color: #fff; }
.lp-freebox p { margin: 14px auto 0; max-width: 580px; color: #c4ccd8; font-size: 16px; line-height: 1.65; }
.lp-freebox .cta { margin-top: 24px; }

/* Package cards — dual buttons (primary Get a quote + smaller See details) */
/* index.html .pkg */
.pkg-actions { margin-top: auto; padding-top: 10px; display: flex; flex-direction: column; gap: 8px; }
.pkg-actions .pkg-cta, .pkg-actions .pkg-details { margin-top: 0; }
.pkg-cta--quote { background: var(--blue); border-color: var(--blue); color: #fff; padding: 12px 20px; font-size: 13.5px; }
.pkg-cta--quote:hover { background: var(--blue-bright); border-color: var(--blue-bright); }
.pkg-details { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 6px; background: transparent; border: none; color: #8b94a3; text-decoration: none; font-size: 13px; font-weight: 600; transition: color .2s; }
.pkg-details:hover { color: #fff; }
/* web-development.html .lp-tier */
.lp-tier-actions { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.lp-tier-quote { display: block; text-align: center; background: var(--blue); color: #fff; text-decoration: none; font-weight: 700; font-size: 14.5px; padding: 15px; border-radius: 30px; transition: filter .2s, transform .2s; }
.lp-tier-quote:hover { filter: brightness(1.1); transform: translateY(-2px); }
.lp-tier-learn { text-align: center; color: #8b94a3; text-decoration: none; font-size: 13px; font-weight: 600; transition: color .2s; }
.lp-tier-learn:hover { color: #fff; }

/* On mobile, drop the subnav's backdrop-filter — it creates a containing block that
   traps the fixed full-screen mobile menu inside the header instead of the viewport. */
@media (max-width: 860px) {
  .subnav { backdrop-filter: none; -webkit-backdrop-filter: none; }
}
