:root {
  --dark: #0a0e18;
  --dark-surface: #111827;
  --dark-card: #172033;
  --dark-border: #24304d;
  --text-primary: #f0f0f5;
  --text-secondary: #8b93a8;
  --text-muted: #556178;
  --brand-navy: #24304d;
  --light-border: #e6e1dc;
  --gradient-start: #ff462c;
  --gradient-end: #ff802c;
  --gradient: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  --gradient-text: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Utility */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtle noise texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
  background: rgba(10, 14, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 0.75rem 0;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255, 70, 44, 0.3);
}

/* Mega menu dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-trigger svg {
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  pointer-events: none;
  padding-top: 14px;
  width: min(1240px, 96vw);
}

/* Invisible hover bridge so menu stays open — kept narrow and centred under the
   Services trigger so it doesn't cover the other nav items */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 18px;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-inner {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.4rem;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  min-height: 88px;
}

.mega-item:hover {
  background: var(--dark-card);
}

.mega-item::after {
  display: none !important;
}

.mega-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gradient-start);
}

.mega-item h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.mega-item span {
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Partnership highlight */
.mega-highlight {
  background: linear-gradient(135deg, rgba(255, 70, 44, 0.12), rgba(255, 128, 44, 0.08));
  border: 1px solid rgba(255, 70, 44, 0.2);
}

.mega-highlight:hover {
  background: linear-gradient(135deg, rgba(255, 70, 44, 0.18), rgba(255, 128, 44, 0.12)) !important;
}

.mega-icon-highlight {
  background: var(--gradient) !important;
  border-color: transparent !important;
}

.mega-icon-highlight svg {
  stroke: #fff !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 7rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg .bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.12;
  filter: saturate(0.3);
}

.hero-bg .bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(to bottom, rgba(10, 14, 24, 0.3) 0%, rgba(10, 14, 24, 0) 30%, rgba(10, 14, 24, 0.6) 80%, var(--dark) 100%),
    linear-gradient(to right, rgba(10, 14, 24, 0.5) 0%, transparent 40%, transparent 70%, rgba(10, 14, 24, 0.4) 100%);
}

.hero-bg .glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 70, 44, 0.08) 0%, transparent 70%);
  filter: blur(60px);
}

.hero-bg .glow-2 {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 128, 44, 0.05) 0%, transparent 70%);
  filter: blur(80px);
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}

.hero-content { min-width: 0; }

.hero-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--gradient-start);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-badge::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gradient);
}

.hero h1 {
  font-size: clamp(2rem, 7.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 660px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  animation: fadeInUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 70, 44, 0.35);
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid var(--dark-border);
  transition: all 0.3s;
  font-family: inherit;
  letter-spacing: 0.01em;
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  background: var(--dark-card);
}

/* Hero right - Lightbulb emblem */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 420px;
}

.bulb-wrapper {
  position: relative;
  width: 280px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Outer ambient glow - starts invisible, blooms on light-up */
.bulb-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 44, 0.25) 0%, rgba(255, 128, 44, 0.08) 40%, transparent 70%);
  opacity: 0;
  filter: blur(30px);
  animation: glowBloom 2s 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             glowPulse 2.8s 2.6s ease-in-out infinite;
}

/* Secondary glow ring */
.bulb-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 70, 44, 0.35) 0%, transparent 70%);
  opacity: 0;
  filter: blur(20px);
  animation: glowBloom 1.8s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes glowBloom {
  0% { opacity: 0; transform: translate(-50%, -55%) scale(0.6); }
  100% { opacity: 1; transform: translate(-50%, -55%) scale(1); }
}

/* Continuous breathing glow (hero offset uses -55%) */
@keyframes glowPulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -55%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -55%) scale(1.18); }
}

/* The bulb image */
.bulb-img {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 0px rgba(255, 70, 44, 0)) brightness(0.3);
  opacity: 0.4;
  animation: bulbLightUp 2s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             heroBulbGlow 2.8s 2.6s ease-in-out infinite;
}

@keyframes heroBulbGlow {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 90, 44, 0.35)) brightness(1); }
  50% { filter: drop-shadow(0 0 52px rgba(255, 90, 44, 0.85)) brightness(1.12); }
}

/* Respect reduced-motion: show both bulbs lit but static */
@media (prefers-reduced-motion: reduce) {
  .bulb-img,
  .bulb-wrapper::before,
  .bulb-wrapper::after,
  .bulb-spark,
  .cta-bulb img,
  .cta-bulb::before {
    animation: none !important;
  }
  .bulb-img {
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(255, 90, 44, 0.35)) brightness(1);
  }
  .bulb-wrapper::before,
  .bulb-wrapper::after { opacity: 1; }
  .cta-bulb img { filter: drop-shadow(0 0 24px rgba(255, 90, 44, 0.5)); }
  .cta-bulb::before { opacity: 0.85; }
}

@keyframes bulbLightUp {
  0% {
    filter: drop-shadow(0 0 0px rgba(255, 70, 44, 0)) brightness(0.3);
    opacity: 0.4;
  }
  40% {
    filter: drop-shadow(0 0 40px rgba(255, 70, 44, 0.6)) brightness(1.1);
    opacity: 1;
  }
  60% {
    filter: drop-shadow(0 0 60px rgba(255, 90, 44, 0.5)) brightness(1.15);
  }
  100% {
    filter: drop-shadow(0 0 30px rgba(255, 90, 44, 0.35)) brightness(1);
    opacity: 1;
  }
}

/* Particle sparks on light-up */
.bulb-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gradient-end);
  opacity: 0;
  z-index: 3;
}

.bulb-spark:nth-child(1) { top: 15%; left: 20%; animation: sparkOut 1.2s 1s ease-out forwards; }
.bulb-spark:nth-child(2) { top: 10%; right: 22%; animation: sparkOut 1.2s 1.1s ease-out forwards; }
.bulb-spark:nth-child(3) { top: 30%; left: 8%; animation: sparkOut 1.2s 1.2s ease-out forwards; }
.bulb-spark:nth-child(4) { top: 25%; right: 10%; animation: sparkOut 1.2s 1.05s ease-out forwards; }
.bulb-spark:nth-child(5) { top: 5%; left: 45%; animation: sparkOut 1.2s 1.15s ease-out forwards; }
.bulb-spark:nth-child(6) { top: 35%; left: 15%; animation: sparkOut 1.2s 1.25s ease-out forwards; }

@keyframes sparkOut {
  0% { opacity: 0; transform: translate(0, 0) scale(0); }
  30% { opacity: 1; transform: translate(var(--sx, -20px), var(--sy, -30px)) scale(1.2); }
  100% { opacity: 0; transform: translate(var(--ex, -40px), var(--ey, -60px)) scale(0); }
}

.bulb-spark:nth-child(1) { --sx: -20px; --sy: -25px; --ex: -45px; --ey: -55px; }
.bulb-spark:nth-child(2) { --sx: 25px; --sy: -20px; --ex: 50px; --ey: -50px; }
.bulb-spark:nth-child(3) { --sx: -30px; --sy: -10px; --ex: -60px; --ey: -30px; }
.bulb-spark:nth-child(4) { --sx: 30px; --sy: -15px; --ex: 55px; --ey: -40px; }
.bulb-spark:nth-child(5) { --sx: 5px; --sy: -35px; --ex: 8px; --ey: -70px; }
.bulb-spark:nth-child(6) { --sx: -25px; --sy: -5px; --ex: -50px; --ey: -20px; }

/* ─── SECTION BACKGROUNDS ─── */
.section-alt {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

/* ─── HERO GRADIENT BORDER ─── */
.hero-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 10;
  box-shadow: 0 0 20px rgba(255, 70, 44, 0.4), 0 0 60px rgba(255, 70, 44, 0.15);
}

/* ─── SERVICES ─── */
.services {
  padding: 5rem 0;
  position: relative;
}

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--gradient-start);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gradient);
}

.section-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 2rem;
}

.service-card {
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.service-card:hover {
  border-color: rgba(255, 70, 44, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background: var(--gradient);
  border-color: transparent;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gradient-start);
  transition: stroke 0.4s;
}

.service-card:hover .service-icon svg {
  stroke: #fff;
}


.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ─── RETAINER / PARTNER ─── */
.retainer {
  padding: 5rem 0;
  position: relative;
  background: linear-gradient(135deg, #f9f7f5 0%, #f3eeea 50%, #f7f4f1 100%);
}

.retainer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 70, 44, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.retainer::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 70, 44, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.retainer-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.retainer-content {
  position: relative;
  z-index: 1;
}

.retainer-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--dark);
}

.retainer-content p {
  color: #556178;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.retainer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.retainer-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #3a4458;
  font-weight: 500;
}

.retainer-features .check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 70, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.retainer-features .check svg {
  width: 12px;
  height: 12px;
  stroke: var(--gradient-start);
  stroke-width: 3;
}

.retainer-visual {
  position: relative;
  z-index: 1;
}

.retainer-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.retainer-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(36, 48, 77, 0.04);
  transition: all 0.3s;
}

.retainer-pill:hover {
  border-color: rgba(255, 70, 44, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(255, 70, 44, 0.08);
}

.retainer-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.retainer-pill-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.retainer-pill h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  color: var(--dark);
}

.retainer-pill span {
  font-size: 0.78rem;
  color: #6b7488;
}

/* ─── PROCESS ─── */
.process {
  padding: 5rem 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--dark-border);
  opacity: 0.6;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 1.5rem;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark);
  border: 2px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gradient-start);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.process-step:hover .step-number {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── ABOUT / WHY ─── */
.about {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.about-left h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.about-left p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-left p strong {
  color: var(--text-primary);
}

.about-right {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  min-height: 100%;
}

.about-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 1;
}

/* ─── MARKETING TIP ─── */
.tip-section {
  padding: 5rem 0;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  background: var(--dark-surface);
}

.tip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tip-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.tip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tip-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 1;
}

.tip-content {
  position: relative;
}

.tip-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tip-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tip-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.tip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gradient-start);
  font-weight: 600;
}

.tip-label span {
  display: block;
  color: var(--text-muted);
  font-size: 0.65rem;
  margin-top: 2px;
  letter-spacing: 0.06em;
}

.tip-category {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gradient-start);
  background: rgba(255, 70, 44, 0.1);
  border: 1px solid rgba(255, 70, 44, 0.15);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.tip-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  min-height: 3.75rem;
}

.tip-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  min-height: 4.8rem;
}

.tip-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tip-refresh {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  color: var(--text-secondary);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}

.tip-refresh:hover {
  border-color: rgba(255, 70, 44, 0.3);
  color: var(--text-primary);
}

.tip-refresh svg {
  width: 14px;
  height: 14px;
  stroke: var(--gradient-start);
  transition: transform 0.4s;
}

.tip-refresh:hover svg {
  transform: rotate(180deg);
}

.tip-cta {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Tip transition */
.tip-fade {
  transition: opacity 0.3s, transform 0.3s;
}

.tip-fade.fading {
  opacity: 0;
  transform: translateY(8px);
}

@media (max-width: 1024px) {
  .tip-grid { grid-template-columns: 1fr; }
}

/* ─── WEBSITE GRADER ─── */
.grader {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9f7f5 0%, #f3eeea 50%, #f7f4f1 100%);
  border-top: 3px solid;
  border-image: var(--gradient) 1;
  position: relative;
}

.grader::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    radial-gradient(circle at 2px 2px, rgba(255, 70, 44, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.grader::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 70, 44, 0.08) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.grader .container {
  position: relative;
  z-index: 1;
}

.grader-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.grader-intro .section-heading {
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.grader-intro p {
  font-size: 1rem;
  color: #556178;
  line-height: 1.6;
}

.grader-input {
  display: flex;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

.grader-field {
  flex: 1;
  padding: 0.9rem 1.25rem;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 12px;
  color: var(--dark);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.grader-field::placeholder { color: #8b93a8; }
.grader-field:focus { border-color: var(--gradient-start); }

.grader-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: all 0.3s;
}

.grader-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255, 70, 44, 0.3);
}

.grader-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Scan loading */
.grader-scan {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: #556178;
}

.grader-scan.active { display: flex; }

.grader-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--light-border);
  border-top-color: var(--gradient-start);
  border-radius: 50%;
  animation: graderSpin 0.8s linear infinite;
}

@keyframes graderSpin { to { transform: rotate(360deg); } }

.grader-scan-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 400px;
}

.grader-scan-line {
  opacity: 0;
  animation: scanLineIn 0.3s forwards;
}

@keyframes scanLineIn { to { opacity: 1; } }

/* Results */
.grader-results {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  animation: graderReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.grader-results.active { display: block; }

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

/* Score rings */
.grader-scores {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.score-ring {
  text-align: center;
}

.score-ring-svg {
  width: 100px;
  height: 100px;
}

.score-ring .ring-track {
  fill: none;
  stroke: var(--light-border);
  stroke-width: 7;
}

.score-ring .ring-fill {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.score-ring .ring-val {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  fill: var(--dark);
}

.score-ring .ring-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: #556178;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Detail cards */
.grader-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gd-card {
  padding: 1.15rem;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 12px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gd-card .gd-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.gd-card h4 {
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--dark);
}

.gd-card .gd-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
  min-width: 52px;
  text-align: center;
  flex-shrink: 0;
}

.gd-card .gd-info {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: help;
  position: relative;
  color: #8b93a8;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.2s;
}

.gd-card .gd-info:hover {
  border-color: var(--gradient-start);
  color: var(--gradient-start);
}

.gd-card .gd-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  right: -8px;
  width: 230px;
  padding: 0.75rem;
  background: var(--dark);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.5;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.gd-card .gd-tooltip::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 14px;
  width: 8px;
  height: 8px;
  background: var(--dark);
  border-right: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  transform: rotate(45deg);
}

.gd-card .gd-info:hover .gd-tooltip {
  display: block;
}

.gd-badge.good { background: rgba(40, 200, 64, 0.1); color: #28c840; }
.gd-badge.ok { background: rgba(254, 188, 46, 0.1); color: #febc2e; }
.gd-badge.bad { background: rgba(255, 95, 87, 0.1); color: #ff5f57; }

.gd-card p {
  font-size: 0.78rem;
  color: #556178;
  line-height: 1.5;
}

/* Audit follow-up CTA */
.grader-cta {
  padding: 0;
  position: relative;
  text-align: left;
}

.grader-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.grader-cta h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.grader-cta-left > p {
  font-size: 0.88rem;
  color: #556178;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.grader-cta-fields {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.grader-cta-fields .grader-field {
  background: #fff;
  border-color: var(--light-border);
  color: var(--dark);
}

.grader-cta-fields .grader-field::placeholder { color: #8b93a8; }

.grader-cta-fields select.grader-field {
  cursor: pointer;
}

.grader-cta-right {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(36, 48, 77, 0.05);
}

.grader-preview-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-border);
}

.gp-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gp-icon svg { width: 18px; height: 18px; }

.grader-preview-header h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.grader-preview-header span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.grader-preview-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gp-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: #556178;
}

.gp-check {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255, 70, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gp-check svg { width: 10px; height: 10px; stroke: var(--gradient-start); }

@media (max-width: 768px) {
  .grader-cta-layout { grid-template-columns: 1fr; }
  .grader-input { flex-direction: column; }
  .grader-scores { gap: 1rem; }
  .score-ring-svg { width: 80px; height: 80px; }
  .score-ring .ring-val { font-size: 18px; }
}

/* ─── CTA ─── */
.cta-section {
  padding: 3rem 0 5rem;
}

.cta-block {
  text-align: center;
  padding: 2rem 0 1rem;
  position: relative;
}

/* Lightbulb emblem above the CTA */
.cta-bulb {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-bulb::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 44, 0.3) 0%, rgba(255, 128, 44, 0.1) 45%, transparent 70%);
  filter: blur(25px);
  pointer-events: none;
  animation: glowPulseCta 2.8s ease-in-out infinite;
}

@keyframes glowPulseCta {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.3); }
}

.cta-bulb img {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  object-fit: contain;
  animation: ctaBulbGlow 2.8s ease-in-out infinite;
}

@keyframes ctaBulbGlow {
  0%, 100% { filter: drop-shadow(0 0 16px rgba(255, 90, 44, 0.4)); }
  50% { filter: drop-shadow(0 0 42px rgba(255, 90, 44, 0.85)); }
}

.cta-block h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  position: relative;
}

.cta-block p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  position: relative;
}

.cta-block .btn-primary {
  position: relative;
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--dark-border);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-cta:hover {
  border-color: rgba(255, 70, 44, 0.3);
  background: rgba(255, 70, 44, 0.05);
}

.footer-cta svg { transition: transform 0.3s; }
.footer-cta:hover svg { transform: translateX(3px); }

.footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer-col h5 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: rgba(255, 70, 44, 0.3);
  background: rgba(255, 70, 44, 0.05);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: var(--text-muted);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    max-width: 500px;
    min-height: 350px;
  }
  .bulb-wrapper { width: 260px; height: 340px; }
  .bulb-img { width: 180px; height: 180px; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .retainer-block {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-right {
    aspect-ratio: 4/3;
    min-height: 0;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .process-steps::before { display: none; }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 14, 24, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

body.nav-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a:not(.btn-primary) {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.mobile-menu a:not(.btn-primary):hover {
  color: var(--gradient-start);
}

.mobile-menu .btn-primary {
  margin-top: 1rem;
  font-size: 1rem;
}

body.nav-open { overflow: hidden; }

/* Hamburger → X */
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 769px) {
  .mobile-menu { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero-visual { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-right { margin-top: 1rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ─── SERVICES HEADER (2-col) ─── */
.services-header {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.services-header-left .section-sub { margin-bottom: 0; }
.services-header-right { display: flex; align-items: center; justify-content: center; }

@media (max-width: 900px) {
  .services-header { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Growth-engine loop */
.engine-loop { position: relative; width: 360px; height: 360px; }
.engine-loop::before {
  content: '';
  position: absolute; inset: 55px;
  border-radius: 50%;
  border: 1px dashed var(--dark-border);
}
.engine-loop::after {
  content: '';
  position: absolute; inset: 55px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(255,70,44,0.35) 70deg, transparent 130deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
  animation: engineSpin 6s linear infinite;
}
@keyframes engineSpin { to { transform: rotate(360deg); } }
.engine-node {
  position: absolute;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; z-index: 2;
}
.engine-node::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gradient); flex-shrink: 0;
}
/* Centres sit on a 250px ring inside the 360px box, so even the widest node stays inside */
.engine-node.top    { left: 180px; top: 55px;  transform: translate(-50%, -50%); }
.engine-node.right  { left: 305px; top: 180px; transform: translate(-50%, -50%); }
.engine-node.bottom { left: 180px; top: 305px; transform: translate(-50%, -50%); }
.engine-node.left   { left: 55px;  top: 180px; transform: translate(-50%, -50%); }

@media (max-width: 420px) {
  .engine-loop { transform: scale(0.82); }
}
.engine-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; width: 130px;
}
.engine-center strong { display: block; font-size: 0.95rem; }
.engine-center span { font-size: 0.72rem; color: var(--text-muted); }

/* ════════════════════════════════════════════
   INNER PAGES (services, partnership, about, contact)
   Built from the same tokens as the homepage.
   ════════════════════════════════════════════ */

/* ─── Inner page hero (no bulb) ─── */
.hero.hero-inner { min-height: auto; padding: 11rem 0 5rem; }
.hero.hero-inner .container { grid-template-columns: 1fr; }
.hero.hero-inner .hero-content { max-width: 820px; }
.hero.hero-inner .hero-sub { max-width: 720px; }

/* ─── Generic page section + prose ─── */
.page-section { padding: 5rem 0; position: relative; }
.prose { max-width: 780px; }
.prose .section-heading { margin-bottom: 1.5rem; }
.prose p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.prose p:last-child { margin-bottom: 0; }

/* ─── Feature grid (contained, reuses .service-card) ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }

/* ─── Feature band (standout: guarantee, mission, key principle) ─── */
.feature-band {
  position: relative;
  padding: 5rem 0;
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  overflow: hidden;
}
.feature-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 360px;
  background: radial-gradient(circle, rgba(255, 70, 44, 0.1) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}
.feature-band-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.feature-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.feature-band p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── FAQ accordion ─── */
.faq { max-width: 820px; margin: 1.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--dark-border); }
.faq-item:first-child { border-top: 1px solid var(--dark-border); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gradient-start); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  color: var(--gradient-start);
  transition: all 0.3s;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}
.faq-item p {
  padding: 0 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 1rem;
  max-width: 92%;
}

/* ─── Centred CTA actions (two buttons) ─── */
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── Split image/content bands (alternating) ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.split-content { min-width: 0; }
.split.reverse .split-content { order: 2; }
.split.reverse .split-media { order: 1; }

.split-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gradient-start);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.split-num::before { content: ''; width: 28px; height: 1px; background: var(--gradient); }

.split-content h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.split-content .lead {
  font-size: 1.18rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 1.1rem;
}
.split-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.split-content p:last-child { margin-bottom: 0; }

.split-media { position: relative; }
.split-media .frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  aspect-ratio: 5 / 4;
  z-index: 1;
}
/* Gradient accent flush at the top, clipped to the rounded corners */
.split-media .frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  z-index: 2;
}
.split-media .frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: saturate(0.92);
}
.split-media .frame .tint {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, rgba(255, 70, 44, 0.16), rgba(10, 14, 24, 0.45));
}
.split-media .m-glow {
  position: absolute;
  width: 75%; height: 75%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 70, 44, 0.2) 0%, transparent 70%);
  filter: blur(55px);
  z-index: 0;
}
.split:not(.reverse) .split-media .m-glow { bottom: -14%; right: -12%; }
.split.reverse .split-media .m-glow { bottom: -14%; left: -12%; }

.split-media .m-chip {
  position: absolute;
  z-index: 3;
  width: 66px; height: 66px;
  border-radius: 18px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 44px rgba(255, 70, 44, 0.4);
}
.split-media .m-chip svg { width: 30px; height: 30px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.split:not(.reverse) .split-media .m-chip { bottom: -24px; left: -24px; }
.split.reverse .split-media .m-chip { bottom: -24px; right: -24px; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse .split-content,
  .split.reverse .split-media { order: 0; }
  .split-media .frame { aspect-ratio: 16 / 10; }
  .split-media .m-chip,
  .split.reverse .split-media .m-chip { left: 1.25rem; right: auto; bottom: -22px; }
}

/* ─── Light (cream) section treatment — reusable ─── */
.section-light {
  background: linear-gradient(135deg, #f9f7f5 0%, #f3eeea 50%, #f7f4f1 100%);
  border-top: 3px solid;
  border-image: var(--gradient) 1;
  position: relative;
}
.section-light::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 70, 44, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.section-light .container { position: relative; z-index: 1; }

/* Text + card overrides for light sections */
.section-light .section-heading { color: var(--dark); }
.section-light .section-label { color: var(--gradient-start); }
.section-light .prose p { color: #556178; }

.section-light .service-card {
  background: #fff;
  border-color: var(--light-border);
  box-shadow: 0 4px 20px rgba(36, 48, 77, 0.05);
}
.section-light .service-card:hover {
  border-color: rgba(255, 70, 44, 0.25);
  box-shadow: 0 22px 50px rgba(36, 48, 77, 0.12);
}
.section-light .service-card h3 { color: var(--dark); }
.section-light .service-card p { color: #556178; }
.section-light .service-icon { background: #f3eeea; border-color: var(--light-border); }

.section-light .faq-item { border-color: var(--light-border); }
.section-light .faq-item:first-child { border-top-color: var(--light-border); }
.section-light .faq-item summary { color: var(--dark); }
.section-light .faq-item summary:hover { color: var(--gradient-start); }
.section-light .faq-icon { border-color: var(--light-border); }
.section-light .faq-item p { color: #556178; }

/* ════════════════════════════════════════════
   OVERVIEW / PARTNERSHIP / ABOUT / CONTACT
   ════════════════════════════════════════════ */

/* ─── Linked pillar cards (services overview) ─── */
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.1rem;
  color: var(--gradient-start);
  font-weight: 600;
  font-size: 0.9rem;
}
.pillar-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
a.service-card:hover .pillar-link svg { transform: translateX(4px); }

/* ─── Process steps: 3-up variant ─── */
.process-steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
.process-steps.steps-3::before { left: 16.66%; right: 16.66%; }

/* ─── Guarantee blockquote (standout) ─── */
.guarantee-lead { font-size: 1.15rem; color: var(--text-secondary); margin-bottom: 0.25rem; }
.guarantee-quote {
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  max-width: 780px;
  margin: 1.75rem auto;
  padding: 1.75rem 2rem;
  text-align: left;
  background: linear-gradient(135deg, rgba(255, 70, 44, 0.1), rgba(255, 128, 44, 0.04));
  border-left: 3px solid var(--gradient-start);
  border-radius: 0 14px 14px 0;
}

/* ─── Feature band: left-aligned multi-paragraph (mission) ─── */
.feature-band-inner.left { text-align: left; max-width: 840px; }
.feature-band p + p { margin-top: 1.1rem; }

/* ─── Contact ─── */
.contact-layout { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 4rem; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-field::placeholder { color: var(--text-muted); }
.form-field:focus { border-color: var(--gradient-start); }
textarea.form-field { resize: vertical; min-height: 140px; }
select.form-field { cursor: pointer; }
.contact-form .btn-primary { justify-content: center; }
.form-reassure { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-top: 0.25rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-detail h4 { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.3rem; }
.contact-detail p, .contact-detail a { font-size: 1rem; color: var(--text-primary); text-decoration: none; line-height: 1.5; display: block; }
.contact-detail a:hover { color: var(--gradient-start); }
.contact-aside-cta { margin-top: 2rem; padding: 1.75rem; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 16px; }
.contact-aside-cta h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-aside-cta p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.25rem; }

/* ─── Team grid (About) ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: 16px; padding: 1.75rem; transition: all 0.3s; }
.team-card:hover { border-color: rgba(255, 70, 44, 0.25); transform: translateY(-3px); }
.team-avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 1.1rem; font-family: 'JetBrains Mono', monospace; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-role { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gradient-start); margin-bottom: 0.85rem; }
.team-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ─── Logo wall placeholder (About) ─── */
.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; margin-top: 2rem; }
.logo-slot { aspect-ratio: 3 / 2; border: 1px solid var(--dark-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.logo-slot img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ─── Mission band (About) — full width, crown emblem ─── */
.mission-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
  text-align: left;
}
.mission-left .section-label { margin-bottom: 1.75rem; }
.mission-emblem {
  position: relative;
  width: 132px; height: 132px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
}
.mission-emblem-glow {
  position: absolute; inset: -25%;
  background: radial-gradient(circle, rgba(255, 70, 44, 0.32) 0%, transparent 70%);
  filter: blur(28px);
}
.mission-emblem .crown {
  width: 120px; height: 120px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 10px 26px rgba(255, 70, 44, 0.4));
}
.mission-left h2 { margin-bottom: 0; }
@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ─── Form submission states ─── */
.form-success {
  padding: 1.5rem 1.75rem;
  background: rgba(40, 200, 64, 0.1);
  border: 1px solid rgba(40, 200, 64, 0.3);
  border-radius: 14px;
  color: #28c840;
  font-weight: 600;
  font-size: 1rem;
}
.form-error {
  font-size: 0.85rem;
  color: #ff5f57;
  margin-top: 0.6rem;
}

/* ─── Buttons in all caps (sitewide, to stand out) ─── */
.btn-primary,
.btn-secondary,
.nav-cta,
.grader-btn,
.footer-cta {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 0.85rem;
}

/* ─── Active nav state (current page underlined) ─── */
.nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after { width: 100%; }
