/*
 *= require_tree .
 *= require_self
 */

/* Arqvexa 2026 — Architecture meets Technology */
/* Plus Jakarta Sans via Google Fonts + CSS variables */

:root {
  /* Core palette */
  --bg-dark: #050816;
  --bg-deep: #080B1A;
  --bg-elevated: #0C1024;
  --bg-surface: #10162E;
  --text-primary: #F7F7F2;
  --text-secondary: #A7ADBD;
  --text-muted: #6B7289;

  /* Primary gradient stops */
  --cyan: #00D9FF;
  --blue: #4267FF;
  --violet: #7C3AED;
  --gradient-primary: linear-gradient(135deg, #00D9FF 0%, #4267FF 50%, #7C3AED 100%);
  --gradient-soft: linear-gradient(135deg, rgba(0, 217, 255, 0.18), rgba(66, 103, 255, 0.12), rgba(124, 58, 237, 0.16));

  /* Interior accents */
  --interior-ivory: #F5F0E8;
  --interior-sand: #D4C4A8;
  --interior-champagne: #C9A87C;
  --interior-copper: #B87333;
  --interior-charcoal: #1A1814;
  --interior-warm: #E8D5B7;

  /* IT accents */
  --it-cyan: #00D9FF;
  --it-blue: #4267FF;
  --it-violet: #7C3AED;
  --it-navy: #050816;

  /* Legacy aliases — dark cinematic remap */
  --navy: #050816;
  --navy-light: #121836;
  --orange: #00D9FF;
  --orange-dark: #4267FF;
  --cream: #080B1A;
  --white: #F7F7F2; /* text / light accents — do not use as page background */
  --surface-light: #F7F7F2;
  --ink: #F7F7F2;
  --muted: #A7ADBD;
  --line: rgba(247, 247, 242, 0.1);

  --radius: 20px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 40px rgba(0, 217, 255, 0.15);
  --nav-height: 72px;
  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  /* Display & body = Plus Jakarta Sans. */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --focus-ring: 0 0 0 2px var(--bg-dark), 0 0 0 4px var(--cyan);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 16px);
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle film grain — decorative only */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

html.menu-open {
  overflow: hidden !important;
}

/* When menu is open, drop backdrop-filter so position:fixed
   is relative to the viewport (not trapped inside the sticky nav). */
body.menu-open .nav-wrap {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  z-index: 200;
}

a { text-decoration: none; color: inherit; }

img, svg { max-width: 100%; display: block; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 700;
  border-radius: 0 0 12px 0;
}

.skip-link:focus {
  left: 0;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
  will-change: opacity, transform;
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.delay-6 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-scroll-cue,
  .hero-ambient-canvas,
  .hero-spotlight,
  .hero-waves,
  .signature-line,
  .page-transition,
  body::before {
    display: none !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Navigation */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.nav-wrap.is-scrolled {
  background: rgba(5, 8, 22, 0.88);
  border-bottom-color: rgba(247, 247, 242, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.nav {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  z-index: 2;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(247, 247, 242, 0.14);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: #fff;
  font: 800 14px var(--font-display);
}

.brand-name {
  font: 700 18px var(--font-display);
  letter-spacing: -0.4px;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  opacity: 0.72;
  transition: opacity var(--transition), color var(--transition);
  position: relative;
  color: var(--text-primary);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1.5px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: right 0.35s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  right: 0;
}

.nav-links a.is-active {
  opacity: 1;
  color: var(--text-primary);
}

.nav-cta {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  padding: 11px 20px;
  border-radius: 100px;
  opacity: 1 !important;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 0 0 rgba(0, 217, 255, 0);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: var(--shadow-glow);
}

.nav-cta.is-active::after { display: none; }

.menu-btn {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
  z-index: 2;
}

.menu-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  margin: auto;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }

.menu-btn[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-btn[aria-expanded="true"] .menu-icon::before { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-icon::after { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  min-height: 720px;
  display: flex;
  align-items: center;
}

.hero-immersive {
  min-height: min(100svh, 920px);
  isolation: isolate;
}

.hero-ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  --spot-x: 50%;
  --spot-y: 40%;
  background: radial-gradient(
    600px circle at var(--spot-x) var(--spot-y),
    rgba(255, 255, 255, 0.07),
    transparent 55%
  );
  transition: opacity 0.3s ease;
}

.hero-immersive .container,
.hero-scroll-cue {
  position: relative;
  z-index: 1;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
  animation: heroScrollPulse 2.2s ease-in-out infinite;
}

@keyframes heroScrollPulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.glow-one {
  width: 420px;
  height: 420px;
  background: var(--orange);
  right: -120px;
  top: -120px;
  animation: float 8s ease-in-out infinite;
}

.glow-two {
  width: 300px;
  height: 300px;
  background: #416da8;
  left: -140px;
  bottom: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 18px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-head h2,
.about h2,
.cta-section h2,
.faq h2,
.faq-single h2 {
  font: 700 clamp(32px, 5vw, 56px)/1.12 var(--font-display);
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text-primary);
}

.hero h1 em,
.section-head h2 em,
.about h2 em,
.cta-section h2 em,
.faq h2 em,
.faq-single h2 em {
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  display: inline;
  padding-right: 0.08em; /* prevent gradient glyph clipping */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-text {
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 18px;
  margin: 28px 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition), filter var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 8px 28px rgba(66, 103, 255, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 217, 255, 0.28);
}

.btn-ghost {
  border: 1px solid rgba(247, 247, 242, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: rgba(0, 217, 255, 0.45);
  background: rgba(0, 217, 255, 0.08);
}

.btn-light {
  background: var(--text-primary);
  color: var(--bg-dark);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(247, 247, 242, 0.15);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-dark-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(247, 247, 242, 0.25);
}

.btn-dark-outline:hover {
  background: rgba(247, 247, 242, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.hero-proof {
  display: flex;
  gap: 34px;
  margin-top: 52px;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof strong {
  font: 800 28px "Plus Jakarta Sans", sans-serif;
}

.hero-proof span {
  font-size: 11px;
  line-height: 1.2;
  color: #9eabc0;
}

/* Hero art */
.hero-art {
  height: 520px;
  position: relative;
}

.art-card { position: absolute; }

.art-main {
  inset: 20px 15px 20px 35px;
  background: #d8d0c2;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
}

.room {
  height: 100%;
  position: relative;
  background: linear-gradient(145deg, #e6dfd2 0 64%, #bba58e 64%);
}

.wall {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 66%;
  background: linear-gradient(135deg, #efe9df, #d9d0c2);
}

.floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 34%;
  background:
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(70, 50, 35, 0.12) 37px 38px),
    linear-gradient(110deg, #bca28b, #d1b99e);
}

.window {
  position: absolute;
  right: 12%;
  top: 11%;
  width: 34%;
  height: 42%;
  border: 12px solid #29374b;
  background: linear-gradient(135deg, #9ab2c7, #dfe8eb);
}

.window::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 7px;
  background: #29374b;
}

.sofa {
  position: absolute;
  left: 15%;
  bottom: 25%;
  width: 45%;
  height: 20%;
  background: #a87352;
  border-radius: 25px 25px 10px 10px;
  box-shadow: 0 -26px 0 -5px #c38e6d;
}

.table {
  position: absolute;
  left: 44%;
  bottom: 15%;
  width: 24%;
  height: 9%;
  border-radius: 50%;
  background: #594636;
}

.table::after {
  content: "";
  position: absolute;
  left: 48%;
  top: 85%;
  width: 10px;
  height: 70px;
  background: #594636;
}

.plant {
  position: absolute;
  right: 10%;
  bottom: 16%;
  width: 45px;
  height: 130px;
}

.plant::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5px;
  width: 36px;
  height: 35px;
  background: #6b4938;
  border-radius: 4px 4px 14px 14px;
}

.plant i {
  position: absolute;
  bottom: 30px;
  left: 18px;
  width: 18px;
  height: 75px;
  background: #587a5a;
  border-radius: 100% 0 100% 0;
  transform-origin: bottom;
}

.plant i:nth-child(1) { transform: rotate(-35deg); }
.plant i:nth-child(2) { transform: rotate(10deg); left: 28px; }
.plant i:nth-child(3) { transform: rotate(45deg); left: 10px; }

.lamp {
  position: absolute;
  left: 8%;
  top: 8%;
  width: 50px;
  height: 160px;
}

.lamp::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 45px;
  width: 4px;
  height: 105px;
  background: #454545;
}

.lamp span {
  position: absolute;
  left: 2px;
  top: 8px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e5b35e;
  box-shadow: 0 0 45px #e5b35e;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  animation: bob 5s ease-in-out infinite;
}

.code-card {
  right: -8px;
  bottom: 55px;
  width: 190px;
  padding: 20px;
}

.tag-card {
  left: -5px;
  top: 65px;
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  animation-delay: 1s;
}

.as-orb {
  position: absolute;
  right: 38%;
  top: -12px;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--orange);
  display: grid;
  place-items: center;
  font: 800 21px "Plus Jakarta Sans", sans-serif;
  box-shadow: 0 20px 45px rgba(232, 121, 53, 0.4);
  animation: bob 4s ease-in-out infinite reverse;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d2d6dc;
  margin-right: 4px;
}

.code-line {
  height: 7px;
  border-radius: 10px;
  background: #d9dee5;
  margin-top: 12px;
}

.code-line.long { width: 90%; }
.code-line.mid { width: 65%; }
.code-line.short { width: 40%; }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.trust-inner {
  display: flex;
  gap: 32px;
  padding: 18px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.trust-inner::-webkit-scrollbar { display: none; }

.trust-inner span {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
  position: relative;
  padding-left: 16px;
}

.trust-inner span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

/* Sections */
.section { padding: 110px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1.05fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}

.section-head h2 { font-size: 52px; }

.section-head > p {
  color: var(--muted);
  max-width: 450px;
  margin: 0 0 4px;
}

.section-head.compact { margin-bottom: 42px; }

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.service-card {
  padding: 42px;
  border-radius: var(--radius);
  min-height: 470px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card.interior { background: #e8ded0; }
.service-card.tech { background: var(--navy); color: #fff; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  font-size: 20px;
}

.tech .service-icon { background: #1b3455; }

.service-no {
  position: absolute;
  right: 40px;
  top: 42px;
  font: 700 12px "Plus Jakarta Sans", sans-serif;
  opacity: 0.5;
}

.service-card h3 {
  font: 800 34px "Plus Jakarta Sans", sans-serif;
  letter-spacing: -1px;
  margin: 55px 0 10px;
}

.service-card p { max-width: 430px; opacity: 0.72; }

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 28px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.service-card li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
  margin-right: 9px;
}

.service-card > a {
  font-weight: 700;
  font-size: 14px;
  transition: gap var(--transition);
}

.service-card > a span {
  color: var(--orange);
  margin-left: 7px;
  display: inline-block;
  transition: transform var(--transition);
}

.service-card:hover > a span { transform: translateX(4px); }

/* Work */
.work { background: var(--bg-dark); }

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.work-card {
  border-radius: 25px;
  overflow: hidden;
  background: var(--cream);
  transition: transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.work-card:first-child { grid-row: span 2; }

.visual-room,
.visual-office,
.visual-digital {
  height: 330px;
  position: relative;
  overflow: hidden;
}

.visual-room {
  background: linear-gradient(150deg, #e8dfd2 0 65%, #ad947d 65%);
}

.v-window {
  position: absolute;
  right: 12%;
  top: 12%;
  width: 35%;
  height: 52%;
  background: #c4d7df;
  border: 10px solid #29374b;
}

.v-sofa {
  position: absolute;
  left: 12%;
  bottom: 22%;
  width: 48%;
  height: 22%;
  background: #a96f51;
  border-radius: 20px;
}

.v-table {
  position: absolute;
  left: 42%;
  bottom: 10%;
  width: 26%;
  height: 9%;
  background: #5b4636;
  border-radius: 50%;
}

.v-light {
  position: absolute;
  left: 9%;
  top: 12%;
  width: 50px;
  height: 120px;
  border-left: 4px solid #444;
}

.visual-office { background: #d8e0dc; }

.desk {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 24%;
  height: 16%;
  background: #795d49;
}

.screen {
  position: absolute;
  left: 35%;
  top: 20%;
  width: 30%;
  height: 32%;
  background: #18283e;
  border: 8px solid #f2f0ea;
  border-radius: 8px;
}

.chair {
  position: absolute;
  left: 43%;
  bottom: 5%;
  width: 15%;
  height: 22%;
  background: #2c3c4f;
  border-radius: 20px;
}

.plant2 {
  position: absolute;
  right: 8%;
  bottom: 18%;
  width: 45px;
  height: 100px;
  background: #64816a;
  border-radius: 50% 20% 20% 50%;
}

.visual-digital {
  background: #e9e6df;
  padding: 30px;
}

.browser {
  height: 100%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  padding: 18px;
}

.browser > span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd0d5;
  margin-right: 4px;
}

.browser-title {
  font: 800 26px "Plus Jakarta Sans", sans-serif;
  margin-top: 50px;
  max-width: 250px;
}

.browser-lines {
  margin-top: 20px;
  width: 70%;
  height: 7px;
  background: #e2e5e8;
  box-shadow: 0 18px #e2e5e8, 0 36px #e2e5e8;
}

.work-meta { padding: 20px 22px 24px; }

.work-meta span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800;
}

.work-meta b {
  display: block;
  font: 800 19px "Plus Jakarta Sans", sans-serif;
  margin-top: 5px;
}

.work-meta p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* About */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about h2 {
  font-size: 52px;
  letter-spacing: -2px;
}

.about p {
  color: var(--muted);
  max-width: 650px;
}

.about-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.badge-ring {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid #d5cdbf;
  display: grid;
  place-items: center;
  background: #ede8de;
  font: 800 64px "Plus Jakarta Sans", sans-serif;
  color: var(--navy);
  box-shadow: inset 0 0 0 18px #e5dfd3;
}

.about-badge span {
  font-size: 13px;
  color: var(--muted);
}

.about-badge strong { color: var(--ink); }

.founders {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.founders > div {
  padding: 18px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  min-width: 190px;
  box-shadow: none;
}

.founders strong {
  display: block;
  font: 700 18px var(--font-display), sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.founders span {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* Process */
.process { background: var(--bg-dark); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(247, 247, 242, 0.08);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}

.step {
  background: var(--bg-elevated);
  padding: 28px 24px;
  min-height: 200px;
  transition: background var(--transition);
}

.step:hover { background: var(--bg-surface); }

.step > span {
  color: var(--cyan);
  font: 700 12px var(--font-body), sans-serif;
  letter-spacing: 0.06em;
}

.step h3 {
  font: 700 22px/1.2 var(--font-display), sans-serif;
  letter-spacing: -0.02em;
  margin: 24px 0 10px;
  color: var(--text-primary);
}

.step p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}

/* Testimonials */
.testimonials { background: var(--cream); }

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

.testimonial-card {
  margin: 0;
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(16, 24, 39, 0.06);
}

.testimonial-card p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
}

.testimonial-card p::before {
  content: "\201C";
  color: var(--orange);
  font: 800 36px/0 "Plus Jakarta Sans", sans-serif;
  display: block;
  margin-bottom: 12px;
}

.testimonial-card footer strong {
  display: block;
  font: 800 15px "Plus Jakarta Sans", sans-serif;
}

.testimonial-card footer span {
  font-size: 12px;
  color: var(--muted);
}

/* Client reviews */
.client-reviews {
  padding-top: 88px;
  padding-bottom: 88px;
  background: var(--bg-dark);
}

.client-reviews--interior,
.client-reviews--tech {
  background: var(--bg-dark);
}

.client-reviews-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.client-reviews-head h2 {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--text-primary);
  line-height: 1.2;
}

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

.client-review-card {
  margin: 0;
  min-height: 100%;
}

.client-review-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  border-radius: 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: visible;
}

.client-reviews--interior .client-review-card-inner::before,
.client-reviews--tech .client-review-card-inner::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 22px 0 0 22px;
  z-index: 1;
}

.client-reviews--interior .client-review-card-inner::before {
  background: linear-gradient(180deg, var(--interior-champagne) 0%, var(--interior-copper) 100%);
}

.client-reviews--tech .client-review-card-inner::before {
  background: var(--gradient-primary);
}

.client-review-card:hover .client-review-card-inner {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 217, 255, 0.22);
}

.client-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.review-stars {
  display: inline-flex;
  gap: 1px;
  line-height: 1.2;
  overflow: visible;
}

.review-stars-filled,
.review-stars-empty {
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.review-stars-filled {
  color: #e87935;
}

.review-stars-empty {
  color: rgba(247, 247, 242, 0.2);
}

.client-review-project {
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(247, 247, 242, 0.06);
  border: 1px solid var(--line);
  white-space: nowrap;
  overflow: visible;
  text-overflow: ellipsis;
  max-width: 100%;
  line-height: 1.4;
}

.client-review-card blockquote {
  margin: 0 0 24px;
  flex: 1;
  position: relative;
  overflow: visible;
}

.client-review-card blockquote p {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-secondary);
  overflow: visible;
}

.client-review-card blockquote p::before {
  content: none;
}

.client-review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  overflow: visible;
}

.client-reviews--interior .client-review-author {
  background: rgba(201, 168, 124, 0.08);
  border-color: rgba(201, 168, 124, 0.22);
}

.client-reviews--tech .client-review-author {
  background: rgba(0, 217, 255, 0.06);
  border-color: rgba(0, 217, 255, 0.18);
}

.client-review-avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 700 13px/1.2 var(--font-display), sans-serif;
  color: #fff;
  background: linear-gradient(145deg, #9a7b68 0%, #c8895d 100%);
  box-shadow: 0 4px 14px rgba(154, 123, 104, 0.35);
  border: 2px solid rgba(247, 247, 242, 0.12);
}

.client-reviews--tech .client-review-avatar {
  background: linear-gradient(145deg, #1e3554 0%, #4267FF 100%);
  box-shadow: 0 4px 14px rgba(66, 103, 255, 0.3);
}

.client-review-author-text {
  min-width: 0;
  overflow: visible;
}

.client-review-author-text strong {
  display: block;
  font: 700 15px/1.45 var(--font-display), sans-serif;
  color: var(--text-primary);
  margin-bottom: 5px;
  overflow: visible;
}

.client-review-author-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
}

.client-review-role,
.client-review-location {
  font-family: var(--font-display), sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.5;
  overflow: visible;
}

.client-review-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(247, 247, 242, 0.25);
  flex-shrink: 0;
}

.google-review-cta {
  margin-top: 40px;
}

.google-review-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 28px 32px;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(11, 25, 48, 0.08);
  box-shadow: var(--shadow-sm);
}

.client-reviews--tech + .google-review-cta .google-review-cta-inner,
.client-reviews .google-review-cta-inner {
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.google-review-cta-title {
  margin: 0 0 8px;
  font: 800 22px/1.2 "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
}

.google-review-cta-text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.google-review-btn span {
  color: #f5a623;
}

.contact-page + .google-review-cta,
main .google-review-cta:last-child {
  padding-bottom: 80px;
}

/* FAQ */
.faq { background: var(--bg-dark); }

.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.faq h2 { font-size: 52px; }

.faq-intro {
  color: var(--muted);
  max-width: 380px;
  margin-top: 16px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 20px;
  background: var(--cream);
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(232, 121, 53, 0.4);
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font: 800 20px "Plus Jakarta Sans", sans-serif;
  color: var(--orange);
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* CTA / Contact */
.cta-section {
  padding: 90px 0;
  background: var(--navy);
  color: #fff;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 40px 44px;
}

.cta-section h2 { font-size: 56px; }

.cta-section p {
  color: #aebbd0;
  max-width: 550px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}

.contact-details li {
  font-size: 14px;
  color: #aebbd0;
}

.contact-details span {
  color: var(--orange);
  font-weight: 700;
  margin-right: 8px;
}

.contact-panel {
  background:
    linear-gradient(165deg, rgba(16, 22, 46, 0.98), rgba(10, 14, 32, 0.98));
  border: 1px solid rgba(0, 217, 255, 0.14);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.mail-link {
  display: inline-block;
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
  border-bottom: 1px solid #51617a;
  padding-bottom: 4px;
  transition: border-color var(--transition);
}

.mail-link:hover { border-color: var(--orange); }

.contact-note {
  margin: 16px 0 0;
  font-size: 11px;
  color: #7a8aa3;
  line-height: 1.5;
}

/* Footer */
footer.site-footer {
  background: #071326;
  color: #9ba8bb;
  padding: 42px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.footer-brand { color: #fff; }

.footer-inner p {
  font-size: 12px;
  margin: 10px 0 0;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
  font-size: 12px;
}

.footer-contact a {
  color: #c5ceda;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-msme {
  margin-top: 14px;
}

.footer-msme-logo {
  display: block;
  width: 72px;
  height: auto;
  max-width: min(72px, 100%);
  object-fit: contain;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #c5ceda;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
}

.footer-social a:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.footer-social svg {
  display: block;
  width: 16px;
  height: 16px;
}

.footer-legal-link {
  display: inline-block;
  margin-top: 8px;
  color: #7a8aa3;
  text-decoration: none;
  font-size: 11px;
}

.footer-legal-link:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 12px;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.copyright {
  text-align: right;
  font-size: 11px;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(232, 121, 53, 0.4);
  transition: transform var(--transition), opacity var(--transition);
}

.back-top:hover { transform: translateY(-3px); }

.back-top:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.back-top[hidden] {
  display: none;
}

/* PWA install banner */
.install-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 45;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  max-width: min(420px, calc(100% - 32px));
}

.install-banner[hidden] { display: none; }

.install-banner p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.install-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.install-btn {
  border: 0;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
}

.install-dismiss {
  border: 0;
  background: transparent;
  color: #9ba8bb;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .section-head,
  .about-grid,
  .faq-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-art { height: 440px; }
  .hero-grid { padding: 70px 0; }
  .section-head { gap: 20px; }
  .service-grid,
  .work-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .work-card:first-child { grid-row: auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .copyright { text-align: left; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1160px); }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    color: var(--navy);
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--line);
  }

  .hero { min-height: auto; }
  .hero-grid { gap: 30px; }

  .hero h1 {
    font-size: 52px;
    letter-spacing: -2px;
  }

  .hero-art { height: 350px; }
  .art-main { inset: 10px 0; }
  .code-card { right: -5px; bottom: 25px; }
  .tag-card { left: 0; top: 25px; }
  .as-orb { right: 35%; top: -10px; width: 58px; height: 58px; }

  .section { padding: 75px 0; }
  .section-head h2,
  .about h2,
  .faq h2 {
    font-size: 40px;
  }

  .service-card {
    padding: 30px;
    min-height: auto;
  }

  .service-card h3 { margin-top: 40px; }

  .visual-room,
  .visual-office,
  .visual-digital {
    height: 270px;
  }

  .steps { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 43px; }
  .footer-links { flex-wrap: wrap; }
  .founders { flex-direction: column; }

  .install-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .install-actions {
    justify-content: center;
  }

  .back-top {
    right: 16px;
    bottom: 16px;
  }

  .hero-cube-scene { height: 360px; }
  .hero-cube { width: 200px; height: 200px; }
  .hero-cube-face--front { transform: rotateY(0deg) translateZ(100px); }
  .hero-cube-face--back { transform: rotateY(180deg) translateZ(100px); }
  .hero-cube-face--right { transform: rotateY(90deg) translateZ(100px); }
  .hero-cube-face--left { transform: rotateY(-90deg) translateZ(100px); }
  .hero-cube-face--top { transform: rotateX(90deg) translateZ(100px); }
  .hero-cube-face--bottom { transform: rotateX(-90deg) translateZ(100px); }
  .hero-split-art { height: 360px; }
  .path-grid { grid-template-columns: 1fr; }
  .faq-columns { grid-template-columns: 1fr; }
  .testimonial-grid-4 { grid-template-columns: 1fr; }
  .work-grid-3 { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
}

/* Balanced hero */
.hero-balanced .hero-copy h1 { font-size: clamp(40px, 5vw, 68px); }

.hero-actions-split { gap: 10px; }

/* Hero 3D cube */
.hero-cube-scene {
  position: relative;
  height: 480px;
  border-radius: 28px;
  background: #0b1930;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.hero-cube-scene.is-dragging {
  cursor: grabbing;
}

.hero-cube-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(2px);
}

.hero-cube-glow--warm {
  left: -8%;
  top: 8%;
  width: 58%;
  height: 84%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 186, 100, 0.28) 0%, rgba(255, 160, 70, 0.08) 45%, transparent 72%);
}

.hero-cube-glow--cool {
  right: -8%;
  top: 8%;
  width: 58%;
  height: 84%;
  background: radial-gradient(circle at 70% 40%, rgba(34, 211, 238, 0.26) 0%, rgba(56, 189, 248, 0.08) 45%, transparent 72%);
}

.hero-cube-viewport {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.hero-cube {
  position: relative;
  width: 250px;
  height: 250px;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-cube-face {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.28);
  backface-visibility: hidden;
}

.hero-cube-face--front { transform: rotateY(0deg) translateZ(125px); }
.hero-cube-face--back { transform: rotateY(180deg) translateZ(125px); }
.hero-cube-face--right { transform: rotateY(90deg) translateZ(125px); }
.hero-cube-face--left { transform: rotateY(-90deg) translateZ(125px); }
.hero-cube-face--top { transform: rotateX(90deg) translateZ(125px); }
.hero-cube-face--bottom { transform: rotateX(-90deg) translateZ(125px); }

.hero-cube-labels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}

.hero-cube-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-cube-label--interior {
  color: #ffd9a8;
  background: rgba(255, 180, 100, 0.12);
  border: 1px solid rgba(255, 196, 120, 0.25);
}

.hero-cube-label--tech {
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.hero-cube-hint {
  position: absolute;
  top: 18px;
  right: 20px;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.hero-split-art {
  position: relative;
  height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.split-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.split-tech { background: #12243d; }
.split-interior { background: #d8d0c2; }

.split-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.split-interior .split-label {
  background: rgba(11, 25, 48, 0.75);
}

.split-panel .visual-digital.compact,
.split-panel .mini-room {
  height: 100%;
  min-height: 220px;
}

.split-panel .visual-digital.compact {
  padding: 50px 16px 16px;
  background: transparent;
}

.split-panel .browser { height: 100%; }

.mini-room {
  position: relative;
  background: linear-gradient(145deg, #e6dfd2 0 64%, #bba58e 64%);
}

.mini-room .wall,
.mini-room .floor,
.mini-room .window,
.mini-room .sofa,
.mini-room .table,
.mini-room .plant {
  transform: scale(0.85);
  transform-origin: center bottom;
}

.split-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  font: 800 18px "Plus Jakarta Sans", sans-serif;
  color: #fff;
  box-shadow: 0 10px 30px rgba(232, 121, 53, 0.45);
  z-index: 3;
}

.code-snippet {
  margin-top: 24px;
  padding: 12px 14px;
  background: #0f1e33;
  border-radius: 10px;
  font: 600 12px/1.6 "Plus Jakarta Sans", sans-serif;
  color: #9eb3d0;
}

.browser-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 30, 51, 0.88);
  font: 600 11px/1 "Plus Jakarta Sans", sans-serif;
  color: #b8c9e0;
}

.browser-status .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3ecf8e;
  box-shadow: 0 0 0 3px rgba(62, 207, 142, 0.18);
}

.icon-tech {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.icon-tech-wrap .icon-tech svg {
  width: 28px;
  height: 28px;
}

.path-card .icon-tech svg {
  width: 34px;
  height: 34px;
}

.code-kw { color: #e87935; }
.code-fn { color: #7ec8ff; }

/* Path selector */
.path-selector {
  padding: 0 0 20px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  perspective: 1200px;
}

.path-card {
  display: block;
  padding: 32px;
  border-radius: 24px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow var(--transition);
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
  will-change: transform;
}

.path-card:hover {
  box-shadow: 0 28px 60px rgba(11, 25, 48, 0.16);
}

.path-interior { background: #e8ded0; color: var(--ink); }
.path-tech { background: var(--navy); color: #fff; }

.path-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}

.path-tech .path-icon { background: #1b3455; }

.path-card h2 {
  font: 800 28px "Plus Jakarta Sans", sans-serif;
  letter-spacing: -1px;
  margin: 0 0 10px;
}

.path-card p {
  margin: 0 0 20px;
  opacity: 0.78;
  font-size: 14px;
  line-height: 1.6;
}

.path-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
}

.path-tech .path-link { color: #ffb07a; }

/* Work split sections */
.work-split-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 10px 0 22px;
}

.work-category-label {
  font: 800 22px "Plus Jakarta Sans", sans-serif;
  margin: 0;
  letter-spacing: -0.5px;
}

.interior-label { color: var(--navy); }
.tech-label { color: var(--orange); }

.work-category-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: color var(--transition);
}

.work-category-link:hover { color: var(--orange); }

.work-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.work-grid-3 .work-card:first-child { grid-row: auto; }

/* New portfolio visuals */
.visual-mobile {
  height: 330px;
  background: linear-gradient(145deg, #1a2a42, #0b1930);
  display: grid;
  place-items: center;
  padding: 30px;
}

.phone {
  width: 130px;
  height: 240px;
  background: #111;
  border-radius: 24px;
  padding: 10px 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  position: relative;
}

.phone-notch {
  width: 50px;
  height: 6px;
  background: #333;
  border-radius: 10px;
  margin: 0 auto 8px;
}

.phone-screen {
  height: calc(100% - 14px);
  background: #f4f6f8;
  border-radius: 16px;
  padding: 12px 10px;
}

.app-bar {
  height: 10px;
  width: 60%;
  background: #d5dbe3;
  border-radius: 6px;
  margin-bottom: 14px;
}

.app-card {
  height: 36px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.app-card.short { width: 70%; }

.visual-crm {
  height: 330px;
  background: #eef1f5;
  padding: 24px;
}

.dashboard {
  height: 100%;
  background: #fff;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 70px 1fr;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.dash-sidebar {
  background: var(--navy);
}

.dash-main {
  padding: 16px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  align-content: start;
}

.dash-stat {
  height: 40px;
  background: #edf0f4;
  border-radius: 8px;
}

.dash-chart {
  grid-column: span 2;
  height: 80px;
  background: linear-gradient(180deg, rgba(232, 121, 53, 0.15), transparent);
  border-radius: 8px;
  border: 1px solid #e8ebef;
}

/* IT portfolio visuals — project-specific mock UIs */
.visual-tech {
  height: 330px;
  position: relative;
  overflow: hidden;
  padding: 22px;
  display: grid;
  place-items: center;
}

.tech-panel {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(16, 22, 46, 0.98), rgba(8, 12, 28, 0.98));
  border: 1px solid rgba(0, 217, 255, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tech-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(5, 8, 22, 0.72);
  border-bottom: 1px solid rgba(247, 247, 242, 0.08);
}

.tech-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(247, 247, 242, 0.22);
}

.tech-topbar span:nth-child(1) { background: #ff5f57; }
.tech-topbar span:nth-child(2) { background: #febc2e; }
.tech-topbar span:nth-child(3) { background: #28c840; }

.tech-topbar b {
  margin-left: 8px;
  font: 700 11px/1 var(--font-body), sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Warehouse / WMS */
.visual-warehouse {
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.14), transparent 45%),
    linear-gradient(145deg, #0a1228, #061018);
}

.wh-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
}

.wh-bay {
  border-radius: 10px;
  border: 1px dashed rgba(0, 217, 255, 0.28);
  background: rgba(0, 217, 255, 0.04);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  align-content: center;
}

.wh-bay.filled {
  border-style: solid;
  background: rgba(0, 217, 255, 0.08);
}

.wh-bay i {
  display: block;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(201, 168, 124, 0.75), rgba(184, 115, 51, 0.55));
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.wh-bay:not(.filled) i:last-child {
  opacity: 0.25;
}

.wh-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 14px 14px;
}

.wh-stats span {
  height: 28px;
  border-radius: 8px;
  background: rgba(66, 103, 255, 0.16);
  border: 1px solid rgba(66, 103, 255, 0.22);
}

.wh-stats span:nth-child(2) {
  background: rgba(0, 217, 255, 0.14);
  border-color: rgba(0, 217, 255, 0.25);
}

/* AI Admin */
.visual-ai {
  background:
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.28), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 217, 255, 0.16), transparent 42%),
    linear-gradient(145deg, #0c1028, #12081f);
}

.ai-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
  padding: 12px;
  min-height: 0;
}

.ai-agents {
  display: grid;
  gap: 8px;
  align-content: start;
}

.ai-agent {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 10px;
  background: rgba(247, 247, 242, 0.04);
  border: 1px solid rgba(247, 247, 242, 0.08);
}

.ai-agent.on {
  border-color: rgba(124, 58, 237, 0.45);
  background: rgba(124, 58, 237, 0.14);
}

.ai-agent em {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.35);
  flex-shrink: 0;
}

.ai-agent span {
  height: 8px;
  width: 100%;
  border-radius: 4px;
  background: rgba(247, 247, 242, 0.18);
}

.ai-chat {
  position: relative;
  border-radius: 12px;
  padding: 12px;
  background: rgba(5, 8, 22, 0.55);
  border: 1px solid rgba(124, 58, 237, 0.22);
  display: grid;
  gap: 8px;
  align-content: start;
}

.ai-bubble {
  height: 22px;
  border-radius: 10px;
  max-width: 88%;
}

.ai-bubble.bot {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.28), rgba(66, 103, 255, 0.22));
}

.ai-bubble.user {
  margin-left: auto;
  background: rgba(247, 247, 242, 0.12);
}

.ai-bubble.short { width: 55%; }

.ai-pulse {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00d9ff;
  box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.55);
  animation: ai-pulse 1.8s ease-out infinite;
}

@keyframes ai-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(0, 217, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 217, 255, 0); }
}

/* Geofencing */
.visual-geofence {
  background:
    radial-gradient(circle at 40% 45%, rgba(0, 217, 255, 0.12), transparent 50%),
    linear-gradient(160deg, #071526, #0a1a30 55%, #061018);
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: center;
}

.geo-map {
  position: relative;
  height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 217, 255, 0.18);
  background:
    linear-gradient(rgba(0, 217, 255, 0.05) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(90deg, rgba(0, 217, 255, 0.05) 1px, transparent 1px) 0 0 / 22px 22px,
    rgba(8, 16, 36, 0.9);
  overflow: hidden;
}

.geo-ring {
  position: absolute;
  top: 50%;
  left: 48%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border-radius: 50%;
  border: 2px solid rgba(0, 217, 255, 0.35);
  box-shadow: 0 0 24px rgba(0, 217, 255, 0.15);
}

.geo-ring--inner {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-color: rgba(66, 103, 255, 0.55);
  background: rgba(0, 217, 255, 0.08);
}

.geo-pin {
  position: absolute;
  top: 50%;
  left: 48%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--gradient-primary);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.45);
}

.geo-roads {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.geo-roads i {
  position: absolute;
  background: rgba(247, 247, 242, 0.08);
}

.geo-roads i:nth-child(1) {
  top: 28%;
  left: 0;
  right: 0;
  height: 3px;
}

.geo-roads i:nth-child(2) {
  top: 0;
  bottom: 0;
  left: 62%;
  width: 3px;
}

.geo-roads i:nth-child(3) {
  top: 68%;
  left: 10%;
  width: 55%;
  height: 3px;
  transform: rotate(-8deg);
}

.geo-phone {
  width: 100%;
  max-width: 110px;
  height: 200px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 12px 10px;
  background: #0b0f1c;
  border: 1px solid rgba(247, 247, 242, 0.14);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: grid;
  align-content: start;
  gap: 12px;
}

.geo-phone-bar {
  width: 42%;
  height: 5px;
  margin: 0 auto;
  border-radius: 99px;
  background: rgba(247, 247, 242, 0.2);
}

.geo-check {
  margin-top: 18px;
  text-align: center;
  font: 800 22px/1 var(--font-display), sans-serif;
  letter-spacing: 0.08em;
  color: #00d9ff;
}

.geo-status {
  height: 10px;
  margin: 8px 8px 0;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(0, 217, 255, 0.7), rgba(66, 103, 255, 0.35));
}

/* ERP Integration */
.visual-erp {
  background:
    radial-gradient(circle at 50% 50%, rgba(66, 103, 255, 0.16), transparent 55%),
    linear-gradient(145deg, #08101f, #0c142c);
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.erp-node {
  height: 78%;
  border-radius: 14px;
  padding: 16px 14px;
  background: rgba(16, 22, 46, 0.95);
  border: 1px solid rgba(0, 217, 255, 0.2);
  display: grid;
  gap: 10px;
  align-content: start;
}

.erp-node--bc {
  border-color: rgba(124, 58, 237, 0.35);
  background: linear-gradient(165deg, rgba(24, 16, 48, 0.95), rgba(12, 14, 36, 0.95));
}

.erp-node strong {
  font: 700 12px/1.2 var(--font-body), sans-serif;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.erp-node span {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: rgba(247, 247, 242, 0.12);
}

.erp-node span:nth-child(3) { width: 78%; }
.erp-node span:nth-child(4) { width: 58%; }

.erp-sync {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.erp-sync i {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--gradient-primary);
  opacity: 0.85;
}

.erp-sync i:nth-child(2) {
  width: 36px;
  opacity: 1;
}

.erp-sync b {
  margin-top: 4px;
  font: 800 10px/1 var(--font-body), sans-serif;
  letter-spacing: 0.12em;
  color: var(--cyan);
}

/* Reporting */
.visual-reports {
  background:
    radial-gradient(circle at 30% 20%, rgba(66, 103, 255, 0.18), transparent 45%),
    linear-gradient(145deg, #0a1024, #07101c);
}

.rpt-body {
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding: 12px 14px 14px;
  min-height: 0;
}

.rpt-filters {
  display: flex;
  gap: 8px;
}

.rpt-filters span {
  height: 22px;
  width: 64px;
  border-radius: 99px;
  background: rgba(247, 247, 242, 0.08);
  border: 1px solid rgba(247, 247, 242, 0.1);
}

.rpt-filters span:first-child {
  background: rgba(0, 217, 255, 0.16);
  border-color: rgba(0, 217, 255, 0.3);
}

.rpt-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  padding: 8px 4px;
  border-radius: 12px;
  background: rgba(5, 8, 22, 0.45);
  border: 1px solid rgba(247, 247, 242, 0.08);
}

.rpt-chart i {
  display: block;
  height: var(--h, 50%);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #00d9ff, #4267ff 70%, rgba(124, 58, 237, 0.7));
  opacity: 0.9;
}

.rpt-rows {
  display: grid;
  gap: 6px;
}

.rpt-rows span {
  height: 10px;
  border-radius: 4px;
  background: rgba(247, 247, 242, 0.1);
}

.rpt-rows span:nth-child(2) { width: 86%; }
.rpt-rows span:nth-child(3) { width: 72%; }

/* DevOps */
.visual-devops {
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 217, 255, 0.12), transparent 40%),
    linear-gradient(155deg, #050816, #0c1628);
  align-content: center;
  gap: 14px;
}

.dev-terminal {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #070b16;
  border: 1px solid rgba(0, 217, 255, 0.16);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.dev-lines {
  display: grid;
  gap: 8px;
  padding: 14px 16px 16px;
}

.dev-lines code {
  font: 600 12px/1.35 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #9bb0c9;
}

.dev-lines code.ok {
  color: #5eead4;
}

.dev-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.dev-pipeline span {
  font: 700 11px/1 var(--font-body), sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.28);
}

.dev-pipeline i {
  width: 18px;
  height: 2px;
  background: rgba(0, 217, 255, 0.45);
}

.visual-kitchen {
  height: 330px;
  background: linear-gradient(160deg, #f0ebe3, #c8b5a0);
  position: relative;
  overflow: hidden;
}

.k-cabinets {
  position: absolute;
  top: 18%;
  left: 8%;
  right: 8%;
  height: 28%;
  background: #f5f0ea;
  border: 3px solid #d5cdc3;
  border-radius: 4px;
  box-shadow: inset 0 -20px 0 #e8e0d6;
}

.k-hood {
  position: absolute;
  top: 10%;
  left: 38%;
  width: 24%;
  height: 12%;
  background: #888;
  border-radius: 4px 4px 0 0;
}

.k-counter {
  position: absolute;
  bottom: 28%;
  left: 0;
  right: 0;
  height: 8%;
  background: #5a6672;
}

.k-island {
  position: absolute;
  bottom: 12%;
  left: 30%;
  width: 40%;
  height: 18%;
  background: #f5f0ea;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* FAQ columns */
.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.faq-column-title {
  font: 800 20px "Plus Jakarta Sans", sans-serif;
  margin: 0 0 16px;
}

.faq-page-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}

.testimonial-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Service pages */
.page-hero {
  padding: 90px 0 70px;
  overflow: hidden;
  position: relative;
}

.page-hero-interior,
.page-hero-tech {
  color: #fff;
}

.page-hero-light {
  padding: 48px 0 24px;
  color: var(--ink);
  background: transparent;
}

.page-hero-light .eyebrow {
  color: var(--orange);
}

.page-hero-light h1 em {
  color: var(--orange);
  font-style: normal;
}

.page-hero-interior {
  background: linear-gradient(135deg, #3d3028 0%, #6b5344 50%, #4a382e 100%);
}

.page-hero-tech {
  background: var(--navy);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.page-hero h1 {
  font: 800 clamp(38px, 5vw, 62px)/1.05 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -2px;
  margin: 0;
}

.page-hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.page-hero-text {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  margin: 22px 0 28px;
}

.page-hero-tags {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-hero-tags li {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero-visual .visual-room.tall,
.page-hero-visual .visual-digital.tall {
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.page-hero-visual .visual-digital.tall {
  padding: 24px;
  background: #152640;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  padding: 14px 21px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
  transition: background var(--transition);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.feature-card {
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.feature-card-dark {
  background: var(--navy);
  color: #fff;
  border-color: #1b3455;
}

.feature-card h3 {
  font: 800 20px "Plus Jakarta Sans", sans-serif;
  margin: 0 0 8px;
}

.feature-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-card-dark p { color: #aebbd0; }

.content-block { background: var(--bg-dark); }

.content-block-dark {
  background: var(--navy);
  color: #fff;
}

.content-prose {
  max-width: 780px;
}

.content-prose h2 {
    font: 800 36px/1.2 var(--font-display) !important;
    letter-spacing: -1px;
    margin: 0 0 20px;
  }

  .content-prose h3 {
    font-family: var(--font-display) !important;
  }

  .content-block-dark .content-prose h2 { color: #fff; }

.content-prose p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 16px;
}

.content-block-dark .content-prose p { color: #aebbd0; }

.content-prose a:not(.btn) {
  color: var(--orange);
  font-weight: 700;
}

.content-block-dark .content-prose a:not(.btn) { color: #ffb07a; }

.faq-single h2 {
  font: 800 42px "Plus Jakarta Sans", sans-serif;
  letter-spacing: -1px;
  margin: 0 0 24px;
}

.faq-single h2 em {
  color: var(--orange);
  font-style: normal;
}

@media (max-width: 900px) {
  .hero-split-art {
    grid-template-columns: 1fr;
    height: auto;
  }

  .split-connector { display: none; }
  .split-panel { min-height: 200px; }
  .testimonial-grid-4 { grid-template-columns: 1fr 1fr; }
  .work-grid-3 { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .client-reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .work-grid-3,
  .testimonial-grid-4,
  .feature-grid,
  .faq-columns {
    grid-template-columns: 1fr;
  }
}

/* ===== Mobile polish (phones & small tablets) ===== */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .container {
    width: min(100% - 32px, 1160px);
  }

  /* Navigation */
  .nav-links.open {
    max-height: calc(100dvh - var(--nav-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 60;
    padding: 16px 20px 24px;
  }

  .nav-links.open a {
    padding: 14px 12px;
    font-size: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 10px;
  }

  .nav-links.open a:hover,
  .nav-links.open a:focus-visible {
    background: rgba(11, 25, 48, 0.04);
  }

  .nav-links.open .nav-cta {
    justify-content: center;
    margin-top: 12px;
    padding: 14px 18px;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0 48px;
  }

  .hero-balanced .hero-copy h1,
  .hero h1 {
    font-size: clamp(30px, 8.2vw, 42px);
    letter-spacing: -1.5px;
    line-height: 1.1;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.65;
    margin: 18px 0 22px;
  }

  .hero-actions,
  .hero-actions-split,
  .page-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .hero-actions .btn,
  .hero-actions-split .btn,
  .hero-actions-split .btn-ghost,
  .page-hero .hero-actions .btn,
  .page-hero .hero-actions .btn-ghost-light {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    min-height: 48px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
  }

  .hero-proof strong {
    font-size: 22px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .hero-cube-scene {
    height: 320px;
    border-radius: 22px;
  }

  .hero-cube {
    width: 180px;
    height: 180px;
  }

  .hero-cube-face--front { transform: rotateY(0deg) translateZ(90px); }
  .hero-cube-face--back { transform: rotateY(180deg) translateZ(90px); }
  .hero-cube-face--right { transform: rotateY(90deg) translateZ(90px); }
  .hero-cube-face--left { transform: rotateY(-90deg) translateZ(90px); }
  .hero-cube-face--top { transform: rotateX(90deg) translateZ(90px); }
  .hero-cube-face--bottom { transform: rotateX(-90deg) translateZ(90px); }

  .hero-cube-hint {
    font-size: 10px;
    top: 14px;
    right: 14px;
  }

  .hero-split-art {
    grid-template-columns: 1fr;
    height: auto;
    gap: 12px;
  }

  .split-panel {
    min-height: 170px;
  }

  .split-connector {
    display: none;
  }

  .split-panel .browser-title {
    font-size: 17px;
    margin-top: 20px;
    max-width: none;
  }

  .code-snippet {
    font-size: 11px;
    margin-top: 14px;
    overflow-x: auto;
  }

  /* Path cards */
  .path-selector {
    margin-top: 0;
    padding: 20px 0 8px;
  }

  .path-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .path-card {
    padding: 24px;
  }

  .path-card h2 {
    font-size: 22px;
  }

  /* Sections */
  .section {
    padding: 56px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 28px;
  }

  .section-head h2,
  .about h2,
  .faq h2,
  .faq-single h2,
  .cta-section h2 {
    font-size: clamp(28px, 7.5vw, 36px);
    letter-spacing: -1.5px;
    line-height: 1.08;
  }

  .blog-list-item h2,
  .blog-card h3 {
    font-size: 20px;
    letter-spacing: -0.3px;
    line-height: 1.35;
  }

  .section-head > p,
  .faq-intro {
    font-size: 14px;
  }

  /* Services */
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 26px;
    min-height: auto;
  }

  .service-card h3 {
    font-size: 26px;
    margin-top: 28px;
  }

  .service-no {
    right: 26px;
    top: 26px;
  }

  /* Work / portfolio */
  .work-split-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 16px;
  }

  .work-category-label {
    font-size: 18px;
  }

  .work-grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 36px;
  }

  .visual-room,
  .visual-office,
  .visual-digital,
  .visual-mobile,
  .visual-crm,
  .visual-kitchen,
  .visual-tech {
    height: 220px;
  }

  .visual-tech {
    padding: 14px;
  }

  .visual-geofence {
    grid-template-columns: 1fr 72px;
    gap: 10px;
  }

  .geo-phone {
    height: 160px;
    max-width: 72px;
    border-radius: 16px;
    padding: 8px 6px;
  }

  .geo-check {
    margin-top: 8px;
    font-size: 14px;
  }

  .geo-ring {
    width: 84px;
    height: 84px;
    margin: -42px 0 0 -42px;
  }

  .geo-ring--inner {
    width: 44px;
    height: 44px;
    margin: -22px 0 0 -22px;
  }

  .dev-pipeline {
    display: none;
  }

  .dev-lines code {
    font-size: 10px;
  }

  .erp-node strong {
    font-size: 10px;
  }

  .tech-topbar b {
    font-size: 9px;
  }

  .work-meta {
    padding: 16px 18px 20px;
  }

  .work-meta b {
    font-size: 17px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .badge-ring {
    width: 180px;
    height: 180px;
    font-size: 48px;
  }

  .founders {
    flex-direction: column;
  }

  .founders > div {
    min-width: 0;
    width: 100%;
  }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 24px;
    min-height: auto;
  }

  .step h3 {
    margin-top: 20px;
  }

  /* Testimonials */
  .testimonial-grid-4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .client-reviews {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .client-reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .client-review-card-inner {
    padding: 22px 22px 20px;
  }

  .client-review-meta {
    margin-bottom: 16px;
  }

  .client-review-project {
    white-space: normal;
  }

  /* FAQ */
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-item summary {
    font-size: 14px;
    padding: 16px 0;
  }

  /* CTA / contact */
  .cta-section {
    padding: 56px 0;
  }

  .cta-box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-details li {
    font-size: 13px;
  }

  /* Service pages */
  .page-hero {
    padding: 40px 0 36px;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero h1 {
    font-size: clamp(28px, 7.5vw, 38px);
    letter-spacing: -1.5px;
  }

  .page-hero-text {
    font-size: 15px;
    margin: 16px 0 22px;
  }

  .page-hero-tags li {
    font-size: 10px;
    padding: 6px 10px;
  }

  .page-hero-visual .visual-room.tall,
  .page-hero-visual .visual-digital.tall {
    height: 240px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 22px;
  }

  .content-prose h2 {
    font-size: 26px;
  }

  .content-prose p {
    font-size: 15px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-msme-logo {
    margin-inline: auto;
  }

  .copyright {
    text-align: center;
  }

  /* Floating UI */
  .back-top {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    width: 44px;
    height: 44px;
  }

  .install-banner {
    left: 16px;
    right: 16px;
    transform: none;
    width: auto;
    max-width: none;
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
  }

  .glow-one,
  .glow-two {
    opacity: 0.18;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .hero-balanced .hero-copy h1,
  .hero h1 {
    font-size: 28px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .hero-proof div:last-child {
    grid-column: span 2;
    justify-content: center;
  }

  .path-card h2 {
    font-size: 20px;
  }

  .trust-inner span {
    font-size: 12px;
  }
}

/* Contact form */
.contact-form-title {
  font: 800 22px var(--font-display), sans-serif;
  margin: 0 0 6px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.contact-form-lead {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-field {
  display: grid;
  gap: 8px;
}

.contact-form .form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  width: 100%;
  border: 1px solid rgba(247, 247, 242, 0.18);
  background-color: rgba(5, 8, 22, 0.55);
  color: var(--text-primary);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-field input:hover,
.contact-form .form-field select:hover,
.contact-form .form-field textarea:hover {
  border-color: rgba(247, 247, 242, 0.3);
}

.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder {
  color: rgba(167, 173, 189, 0.72);
}

.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
  outline: none;
  border-color: rgba(0, 217, 255, 0.55);
  background-color: rgba(5, 8, 22, 0.78);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.14);
}

.contact-form .form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A7ADBD' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.contact-form .form-field select option {
  color: var(--text-primary);
  background: #10162e;
}

.contact-form .form-field textarea {
  resize: vertical;
  min-height: 132px;
}

.form-submit {
  margin-top: 6px;
  cursor: pointer;
  border: none;
  min-height: 52px;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 28px rgba(66, 103, 255, 0.28);
}

.form-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.form-status--success {
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.form-status--error {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.form-status--info {
  background: rgba(0, 217, 255, 0.1);
  color: #7dd3fc;
  border: 1px solid rgba(0, 217, 255, 0.28);
}

.contact-or {
  text-align: center;
  margin: 22px 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-actions-inline {
  display: grid;
  gap: 10px;
}

.contact-actions-inline .btn-outline {
  min-height: 48px;
  border-color: rgba(247, 247, 242, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.contact-actions-inline .btn-outline:hover {
  border-color: rgba(37, 211, 102, 0.55);
  background: rgba(37, 211, 102, 0.1);
  color: #fff;
}

/* Flash messages */
.flash-bar {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 14px 0;
  animation: flash-in 0.35s ease;
}

.flash-success {
  background: #ecfdf3;
  color: #027a48;
  border-bottom: 1px solid #abefc6;
}

.flash-error {
  background: #fef3f2;
  color: #b42318;
  border-bottom: 1px solid #fecdca;
}

.flash-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.flash-inner p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.flash-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: inherit;
  opacity: 0.7;
  padding: 0 4px;
}

.flash-close:hover {
  opacity: 1;
}

@keyframes flash-in {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-title {
    font-size: 20px;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 14px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font: 700 14px "Plus Jakarta Sans", sans-serif;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.whatsapp-float svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .whatsapp-label {
    display: none;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .back-top {
    bottom: 88px;
  }
}

/* Portfolio filters */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.portfolio-filter {
  border: 1px solid #d5cdbf;
  background: #fff;
  color: #0b1930;
  border-radius: 999px;
  padding: 10px 18px;
  font: 700 13px "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.portfolio-filter:hover,
.portfolio-filter.is-active {
  background: #0b1930;
  border-color: #0b1930;
  color: #fff;
}

.portfolio-location {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #7a8aa3;
}

.portfolio-card[hidden] {
  display: none !important;
}

.section-cta {
  margin-top: 32px;
  text-align: center;
}

.portfolio-empty {
  text-align: center;
  color: #667085;
  padding: 40px 0;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-featured {
  border-color: #0b1930;
  box-shadow: 0 16px 40px rgba(11, 25, 48, 0.08);
}

.pricing-badge {
  font: 700 11px "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin: 0;
  font-size: 20px;
}

.pricing-amount {
  margin: 0;
  font: 800 28px "Plus Jakarta Sans", sans-serif;
  color: #0b1930;
  letter-spacing: -0.5px;
}

.pricing-note {
  margin: 0;
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
}

.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #334155;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e87935;
  font-weight: 700;
}

.pricing-link {
  font: 700 14px "Plus Jakarta Sans", sans-serif;
  color: #0b1930;
  text-decoration: none;
}

.pricing-link:hover {
  color: #e87935;
}

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

.blog-card,
.blog-list-item {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 20px;
  padding: 24px;
}

.blog-card h3,
.blog-list-item h2 {
  margin: 10px 0;
  font: 700 22px/1.35 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.3px;
}

.blog-card h3 a,
.blog-list-item h2 a {
  color: inherit;
  text-decoration: none;
  letter-spacing: inherit;
}

.blog-card h3 a:hover,
.blog-list-item h2 a:hover {
  color: #e87935;
}

.blog-category {
  display: inline-block;
  font: 700 11px "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #7a8aa3;
  margin-top: 12px;
}

.blog-read-link {
  display: inline-block;
  margin-top: 14px;
  font: 700 14px "Plus Jakarta Sans", sans-serif;
  color: #0b1930;
  text-decoration: none;
}

.blog-read-link:hover {
  color: #e87935;
}

.blog-list {
  display: grid;
  gap: 20px;
  max-width: 820px;
}

.page-main {
  padding-top: 80px;
}

.page-hero-light h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 12px 0;
  font: 800 clamp(36px, 5vw, 56px)/1.08 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -1.5px;
}

.page-lead {
  max-width: 640px;
  color: #667085;
  font-size: 18px;
  line-height: 1.6;
}

.blog-article-header {
  padding: 32px 0 16px;
  border-bottom: 1px solid #e8e0d4;
}

.blog-article-header-inner {
  max-width: 760px;
}

.blog-back-link {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #667085;
  text-decoration: none;
}

.blog-article-header h1 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  margin: 12px 0;
}

.blog-article-body {
  max-width: 760px;
  padding: 32px 0;
}

.prose h2 {
  font-size: 22px;
  margin: 28px 0 12px;
}

.prose p,
.prose li {
  line-height: 1.7;
  color: #334155;
}

.prose ul {
  padding-left: 20px;
}

.prose a:not(.btn) {
  color: #e87935;
  font-weight: 700;
}

.legal-prose {
  max-width: 760px;
  padding-bottom: 48px;
}

.legal-prose h2 {
  font-size: 22px;
  margin: 28px 0 12px;
  color: var(--ink);
}

.legal-prose p,
.legal-prose li {
  line-height: 1.75;
  color: #334155;
}

.legal-prose ul {
  padding-left: 20px;
}

.blog-article-footer {
  max-width: 760px;
  padding: 32px 0 64px;
  border-top: 1px solid #e8e0d4;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 40px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0b1930 0%, #1a3358 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(11, 25, 48, 0.14);
}

.cta-banner--centered {
  flex-direction: column;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner-text h2 {
  margin: 0 0 8px;
  font: 700 clamp(22px, 3vw, 28px)/1.25 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.5px;
  color: #fff;
}

.cta-banner-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 16px;
  max-width: 52ch;
}

.cta-banner--centered .cta-banner-text p {
  max-width: none;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.cta-banner--centered .cta-banner-actions {
  justify-content: center;
}

.cta-inline-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #0b1930;
  color: #fff;
  border-radius: 24px;
  padding: 32px;
}

.cta-inline-box h2 {
  margin: 0;
  font: 700 clamp(20px, 3vw, 26px)/1.3 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.3px;
  color: #fff;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

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

  .cta-inline-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 28px 24px;
  }

  .cta-banner-actions {
    justify-content: center;
  }

  .cta-banner-text p {
    max-width: none;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
  }
}

/* SEO additions: breadcrumbs, service grids, trust signals */
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
  font-size: 14px;
  color: #5a6578;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #9aa3b2;
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #0b1930;
  text-decoration: underline;
}

.contact-email-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.contact-email-link:hover,
.contact-email-link:focus-visible {
  color: var(--orange-dark);
}

.service-link-section {
  margin-top: 8px;
}

.service-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.service-areas-intro {
  max-width: 56ch;
  margin: 0;
  color: var(--text-muted, rgba(255, 255, 255, 0.72));
}

.service-areas-title {
  font: 800 18px "Plus Jakarta Sans", sans-serif;
  margin: 0 0 12px;
}

.service-area-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.service-area-links a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 8px;
  transition: color var(--transition), border-color var(--transition);
}

.service-area-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-service-areas {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.footer-service-areas strong {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-size: 12px;
}

.footer-area-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  margin-bottom: 8px;
}

.footer-area-group span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-area-group a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-area-group a:hover {
  color: #fff;
}

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 0;
  height: auto;
  padding: 24px;
  border-radius: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: none;
  text-decoration: none;
  color: var(--text-primary);
  overflow: visible;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.service-link-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 20px 20px 0 0;
}

.service-link-card--tech::before {
  background: var(--gradient-primary);
}

.service-link-card--interior::before {
  background: linear-gradient(90deg, var(--interior-sand), var(--interior-copper));
}

.service-link-card--tech .service-link-icon {
  background: rgba(0, 217, 255, 0.12);
  color: var(--cyan);
}

.service-link-card--interior .service-link-icon {
  background: rgba(201, 168, 124, 0.15);
  color: var(--interior-champagne);
}

.service-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font: 700 18px/1.2 "Plus Jakarta Sans", sans-serif;
  transition: transform var(--transition), background var(--transition);
}

.service-link-card strong,
.service-link-title {
  display: block;
  font: 700 18px/1.35 "Plus Jakarta Sans", sans-serif;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 0;
}

.service-link-desc {
  display: block;
  flex: 1 1 auto;
  font: 700 14px/1.65 "Plus Jakarta Sans", sans-serif;
  color: var(--text-secondary);
  margin: 0;
  white-space: normal;
  overflow: visible;
  word-break: normal;
  overflow-wrap: break-word;
}

.service-link-arrow {
  font: 700 13px/1.45 "Plus Jakarta Sans", sans-serif;
  color: var(--cyan);
  margin-top: auto;
  padding-top: 4px;
  transition: transform var(--transition), color var(--transition);
}

.service-link-card--tech .service-link-arrow {
  color: var(--cyan);
}

.service-link-card--interior .service-link-arrow {
  color: var(--interior-champagne);
}

.service-link-arrow span {
  display: inline-block;
  transition: transform var(--transition);
}

.service-link-card:hover,
.service-link-card:focus-visible {
  border-color: rgba(0, 217, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-link-card--interior:hover,
.service-link-card--interior:focus-visible {
  border-color: rgba(201, 168, 124, 0.4);
}

.service-link-card:hover::before,
.service-link-card:focus-visible::before {
  transform: scaleX(1);
}

.service-link-card:hover .service-link-icon,
.service-link-card:focus-visible .service-link-icon {
  transform: scale(1.06);
}

.service-link-card:hover .service-link-arrow span,
.service-link-card:focus-visible .service-link-arrow span {
  transform: translateX(4px);
}

/* Legacy — only use on dark sections */
.service-link-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.service-link-card-dark strong,
.service-link-card-dark .service-link-desc {
  color: #fff;
}

.service-link-card-dark .service-link-desc {
  opacity: 0.82;
}

.service-benefits {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-benefits li {
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.5;
}

.trust-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-signal-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  box-shadow: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.trust-signal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 217, 255, 0.25);
}

.trust-signal-card h3 {
  margin: 0 0 8px;
  font: 700 18px/1.3 var(--font-display), sans-serif;
  color: var(--text-primary);
}

.trust-signal-card p {
  margin: 0 0 12px;
  color: var(--text-secondary);
}

.trust-signal-card a {
  font-weight: 700;
  color: var(--cyan);
}

.founders-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.founders-section {
  background: var(--cream);
}

.founder-card {
  padding: 0;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(11, 25, 48, 0.08);
  box-shadow: 0 10px 36px rgba(11, 25, 48, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(11, 25, 48, 0.1);
}

.founder-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background: linear-gradient(180deg, #dbe4ee 0%, #c8d4e3 100%);
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}

.founder-card--tech .founder-photo-wrap {
  background: linear-gradient(180deg, #d8e2ed 0%, #b8c9dc 100%);
}

.founder-card--interior .founder-photo-wrap {
  background: linear-gradient(180deg, #e8ddd3 0%, #d4c4b5 100%);
}

.founder-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 25, 48, 0.22) 100%);
  pointer-events: none;
}

.founder-photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(11, 25, 48, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.founder-card--tech .founder-photo-badge {
  background: rgba(11, 25, 48, 0.78);
}

.founder-card--interior .founder-photo-badge {
  background: rgba(90, 62, 43, 0.78);
}

.founder-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.founder-card h2 {
  margin: 0 0 6px;
  font: 800 30px/1.1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.founder-role {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 14px;
}

.founder-body > p:not(.founder-role) {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.72;
  color: #475467;
  flex: 1;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  transition: gap var(--transition), color var(--transition);
}

.founder-link::after {
  content: "→";
  transition: transform var(--transition);
}

.founder-link:hover {
  color: var(--orange-dark);
}

.founder-link:hover::after {
  transform: translateX(3px);
}

.concept-notice {
  padding: 14px 16px;
  border-radius: 12px;
  background: #fff8e6;
  border: 1px solid #f0dfa8;
}

.portfolio-view-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--cyan);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.portfolio-view-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.portfolio-type-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  margin-bottom: 8px;
}

.portfolio-role-line {
  margin-top: 12px;
  font-size: 15px;
  color: #475569;
}

.portfolio-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font: 700 11px "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portfolio-badge--concept {
  background: rgba(11, 25, 48, 0.08);
  color: #475569;
}

.portfolio-stack {
  display: grid;
  gap: 12px;
  margin: 0;
}

.portfolio-stack-row {
  display: grid;
  grid-template-columns: minmax(120px, 160px) 1fr;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e8e0d4;
  border-radius: 12px;
  background: #faf8f5;
}

.portfolio-stack-row dt {
  font: 700 13px "Plus Jakarta Sans", sans-serif;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.portfolio-stack-row dd {
  margin: 0;
  color: #0b1930;
  line-height: 1.5;
}

.portfolio-challenges {
  display: grid;
  gap: 16px;
}

.portfolio-challenge {
  padding: 18px 20px;
  border: 1px solid #e8e0d4;
  border-radius: 14px;
  background: #fff;
}

.portfolio-challenge h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #0b1930;
}

.portfolio-challenge p {
  margin: 0 0 8px;
}

.portfolio-challenge p:last-child {
  margin-bottom: 0;
}

.portfolio-note {
  margin-top: 24px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

@media (max-width: 640px) {
  .portfolio-stack-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 900px) {
  .service-link-grid,
  .founders-page,
  .trust-signal-grid,
  .tools-hub-grid,
  .tool-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Tools ── */
.page-hero-compact {
  padding: 48px 0 32px;
}

.page-hero-compact h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 12px 0;
}

.text-link {
  display: inline-block;
  font: 700 14px "Plus Jakarta Sans", sans-serif;
  color: #e87935;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.tools-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.tools-hub-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e8e0d4;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tools-hub-card strong {
  font: 700 18px "Plus Jakarta Sans", sans-serif;
  color: #0b1930;
}

.tools-hub-card span {
  color: #667085;
  font-size: 15px;
  line-height: 1.5;
}

.tools-hub-card em {
  margin-top: auto;
  font: 700 14px "Plus Jakarta Sans", sans-serif;
  font-style: normal;
}

.tools-hub-card--interior em { color: #e87935; }
.tools-hub-card--tech em { color: #3b82f6; }

.tools-hub-card:hover,
.tools-hub-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 25, 48, 0.08);
  border-color: #d4c9b8;
}

.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: start;
}

.tool-layout-single {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
}

.tool-panel {
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e8e0d4;
  background: #fff;
}

.tool-form {
  display: grid;
  gap: 20px;
}

.tool-panel .form-field {
  display: grid;
  gap: 8px;
}

.tool-panel .form-field > label {
  font: 600 13px var(--font-body), sans-serif;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.tool-panel .form-field select,
.tool-panel .form-field input {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(247, 247, 242, 0.18);
  background-color: rgba(5, 8, 22, 0.55);
  color: var(--text-primary);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  line-height: 1.4;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.tool-panel .form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A7ADBD' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.tool-panel .form-field select:hover,
.tool-panel .form-field input:hover {
  border-color: rgba(247, 247, 242, 0.3);
}

.tool-panel .form-field select:focus,
.tool-panel .form-field input:focus {
  outline: none;
  border-color: rgba(0, 217, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.14);
}

.tool-panel .form-field select option {
  color: var(--text-primary);
  background: #10162e;
}

.tool-checkboxes {
  display: grid;
  gap: 10px;
}

.tool-check-label {
  font: 600 14px var(--font-body), sans-serif;
  color: var(--text-primary);
}

.tool-checkboxes label {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 600 15px var(--font-body), sans-serif;
  color: var(--text-secondary);
  cursor: pointer;
}

.tool-checkboxes input {
  width: 18px;
  height: 18px;
  accent-color: #e87935;
}

.tool-result {
  margin-top: 24px;
  padding: 20px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.tool-result-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 8px;
}

.tool-result-value {
  font: 800 clamp(24px, 3vw, 32px) "Plus Jakarta Sans", sans-serif;
  color: #0b1930;
  margin-bottom: 8px;
}

.tool-result-note {
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

.tool-result-link {
  margin-top: 12px;
}

.tool-disclaimer {
  margin-top: 16px;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

.tool-aside {
  padding: 24px;
  border-radius: 16px;
  background: #faf8f5;
  border: 1px solid #efe7da;
}

.tool-aside h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.tool-aside ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

.tool-aside li {
  margin-bottom: 8px;
  color: #475569;
  line-height: 1.5;
}

.tool-cta {
  padding-top: 0;
}

/* ── Portfolio showcase gallery ── */
.portfolio-showcase-hero {
  padding-bottom: 12px;
}

.portfolio-showcase-head {
  padding: 24px 0 24px;
  max-width: 780px;
}

.portfolio-gallery-stage {
  padding: 8px 0 28px;
}

.portfolio-gallery {
  margin: 0 auto;
  max-width: 100%;
}

.portfolio-gallery:focus {
  outline: none;
}

.portfolio-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0a1628;
  box-shadow:
    0 2px 4px rgba(11, 25, 48, 0.06),
    0 28px 56px rgba(11, 25, 48, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-gallery-backdrop {
  position: absolute;
  inset: -24px;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: blur(36px) saturate(1.15) brightness(0.5);
  transform: scale(1.12);
  transition: background-image 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}

.portfolio-gallery-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 45%, rgba(10, 22, 40, 0.15), rgba(10, 22, 40, 0.72)),
    linear-gradient(180deg, rgba(10, 22, 40, 0.25) 0%, rgba(10, 22, 40, 0.55) 100%);
}

.portfolio-gallery-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.portfolio-gallery-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e87935, #f5a623);
  transition: width 0.45s ease;
  box-shadow: 0 0 12px rgba(232, 121, 53, 0.6);
}

.portfolio-gallery-meta {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
}

.portfolio-gallery-counter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font: 700 12px/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-gallery-track {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 320px;
  max-height: min(76vh, 680px);
  aspect-ratio: 16 / 10;
  transition: height 0.35s ease, aspect-ratio 0.35s ease;
}

.portfolio-gallery-track.is-portrait {
  aspect-ratio: 4 / 5;
  max-height: min(82vh, 760px);
}

.portfolio-gallery-track.is-square {
  aspect-ratio: 1 / 1;
  max-height: min(72vh, 640px);
}

.portfolio-gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.portfolio-gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.portfolio-gallery-foreground {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 72px 64px;
}

.portfolio-gallery-slide picture {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
}

.portfolio-gallery-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1);
}

.portfolio-gallery-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  pointer-events: none;
}

.portfolio-gallery-caption-label {
  font: 700 10px/1 "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 121, 53, 0.95);
}

.portfolio-gallery-caption-text {
  display: inline-block;
  max-width: min(520px, 100%);
  padding: 11px 16px;
  border-radius: 14px;
  background: rgba(10, 22, 40, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font: 600 14px/1.5 "Plus Jakarta Sans", sans-serif;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.portfolio-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-gallery-nav:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(232, 121, 53, 0.95);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 32px rgba(232, 121, 53, 0.35);
}

.portfolio-gallery-prev { left: 18px; }
.portfolio-gallery-next { right: 18px; }

.portfolio-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 4;
  transform: translateX(-50%);
  display: none;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-gallery-dot {
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.portfolio-gallery-dot.is-active {
  width: 24px;
  background: #e87935;
}

.portfolio-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 6px 4px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(232, 121, 53, 0.5) transparent;
}

.portfolio-gallery-thumbs::-webkit-scrollbar {
  height: 5px;
}

.portfolio-gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(232, 121, 53, 0.45);
  border-radius: 999px;
}

.portfolio-gallery-thumb {
  position: relative;
  flex: 0 0 108px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #0a1628;
  opacity: 0.55;
  scroll-snap-align: center;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-gallery-thumb.is-active,
.portfolio-gallery-thumb:hover {
  opacity: 1;
  border-color: #e87935;
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(232, 121, 53, 0.28);
}

.portfolio-gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.portfolio-stats--showcase {
  margin-top: 4px;
}

.portfolio-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 12px;
}

.portfolio-stat {
  padding: 18px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8e0d4;
  text-align: center;
  box-shadow: 0 4px 16px rgba(11, 25, 48, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-stats--showcase .portfolio-stat {
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}

.portfolio-stats--showcase .portfolio-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 25, 48, 0.08);
}

.portfolio-stat dt {
  font: 700 11px "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}

.portfolio-stat dd {
  margin: 0;
  font: 800 20px "Plus Jakarta Sans", sans-serif;
  color: #0b1930;
}

.portfolio-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.portfolio-showcase-aside {
  display: grid;
  gap: 18px;
}

.portfolio-spec-card,
.portfolio-budget-card,
.portfolio-aside-cta {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e8e0d4;
  background: #fff;
}

.portfolio-spec-card h2,
.portfolio-aside-cta p:first-child {
  font-size: 20px;
  margin: 0 0 14px;
}

.portfolio-spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.portfolio-spec-row {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1ebe3;
}

.portfolio-spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.portfolio-spec-row dt {
  font: 700 12px "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.portfolio-spec-row dd {
  margin: 0;
  color: #0b1930;
  line-height: 1.5;
}

.portfolio-budget-card {
  background: linear-gradient(135deg, #0b1930 0%, #1a3358 100%);
  color: #fff;
  border: none;
}

.portfolio-budget-label {
  display: block;
  font: 700 11px "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.portfolio-budget-card strong {
  display: block;
  font: 800 28px "Plus Jakarta Sans", sans-serif;
  margin-bottom: 8px;
}

.portfolio-budget-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.portfolio-aside-cta .text-link {
  display: inline-block;
  margin-top: 12px;
}

.portfolio-card-photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #e8e0d4;
}

.portfolio-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.portfolio-card:hover .portfolio-card-photo img {
  transform: scale(1.04);
}

.work-photo {
  padding: 0;
  overflow: hidden;
}

@media (max-width: 900px) {
  .portfolio-stats,
  .portfolio-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-gallery-thumb {
    flex-basis: 96px;
  }
}

@media (max-width: 768px) {
  .portfolio-showcase-head {
    padding: 16px 0 18px;
  }

  .portfolio-showcase-head h1 {
    font-size: clamp(28px, 7.5vw, 40px);
    line-height: 1.12;
  }

  .portfolio-gallery-stage {
    padding: 0 0 20px;
  }

  .portfolio-gallery-stage .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  .portfolio-gallery-main {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .portfolio-gallery-track,
  .portfolio-gallery-track.is-portrait,
  .portfolio-gallery-track.is-square {
    aspect-ratio: 4 / 5;
    max-height: min(70vh, 560px);
    min-height: 280px;
  }

  .portfolio-gallery-foreground {
    padding: 20px 52px 72px;
  }

  .portfolio-gallery-caption {
    left: 14px;
    right: 14px;
    bottom: 16px;
  }

  .portfolio-gallery-caption-text {
    font-size: 13px;
    padding: 9px 13px;
  }

  .portfolio-gallery-meta {
    top: 12px;
    right: 12px;
  }

  .portfolio-gallery-counter {
    font-size: 10px;
    padding: 5px 10px;
  }

  .portfolio-gallery-prev { left: 10px; }
  .portfolio-gallery-next { right: 10px; }

  .portfolio-gallery-nav {
    width: 42px;
    height: 42px;
  }

  .portfolio-gallery-dots--mobile {
    display: flex;
    bottom: 12px;
  }

  .portfolio-gallery-thumbs {
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 14px;
  }

  .portfolio-gallery-thumb {
    flex-basis: 84px;
  }

  .portfolio-stats--showcase {
    padding-left: 16px;
    padding-right: 16px;
  }

  .portfolio-stat dd {
    font-size: 18px;
  }

  .portfolio-showcase-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-budget-card strong {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .portfolio-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .portfolio-stat {
    padding: 14px 12px;
  }

  .portfolio-stat dd {
    font-size: 16px;
  }

  .portfolio-gallery-thumbs {
    gap: 8px;
  }

  .portfolio-gallery-thumb {
    flex-basis: 76px;
  }

  .portfolio-gallery-nav {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .portfolio-gallery-dot.is-active {
    width: 22px;
  }
}

@media (max-width: 420px) {
  .portfolio-stats {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-gallery-track,
  .portfolio-gallery-track.is-portrait,
  .portfolio-gallery-track.is-square {
    aspect-ratio: 3 / 4;
    max-height: min(65vh, 480px);
  }

  .portfolio-gallery-foreground {
    padding: 16px 44px 68px;
  }

  .portfolio-gallery-thumb {
    flex-basis: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-gallery-slide {
    transition: opacity 0.2s ease;
  }

  .portfolio-gallery-progress-bar {
    transition: none;
  }

  .portfolio-card-photo img {
    transition: none;
  }
}

/* ============================================================
   Arqvexa 2026 — Premium cinematic layer
   ============================================================ */

.eyebrow {
  color: var(--cyan);
}

.eyebrow span {
  background: var(--gradient-primary);
}

.section {
  position: relative;
}

.section-head p,
.content-prose p {
  color: var(--text-secondary);
}

.interior-label { color: var(--interior-champagne) !important; }
.tech-label { color: var(--cyan) !important; }

/* Path cards — dual worlds */
.path-selector {
  padding: 0 0 20px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.path-interior {
  background: linear-gradient(145deg, #1A1610 0%, #2A2218 55%, #1C1812 100%);
  color: var(--interior-ivory);
  border: 1px solid rgba(201, 168, 124, 0.22);
  overflow: hidden;
  position: relative;
}

.path-interior::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(201, 168, 124, 0.18), transparent 55%);
  pointer-events: none;
}

.path-tech {
  background: linear-gradient(145deg, #070B1A 0%, #0C1638 55%, #0A0F24 100%);
  color: #fff;
  border: 1px solid rgba(0, 217, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.path-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(0, 217, 255, 0.16), transparent 55%);
  pointer-events: none;
}

.path-card h2 {
  font-family: var(--font-display);
}

.path-link {
  color: var(--interior-champagne);
}

.path-tech .path-link { color: var(--cyan); }

.path-icon {
  background: rgba(201, 168, 124, 0.15);
  color: var(--interior-champagne);
}

.path-tech .path-icon {
  background: rgba(0, 217, 255, 0.12);
  color: var(--cyan);
}

/* Service cards */
.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text-primary);
}

.service-card.interior {
  background: linear-gradient(160deg, #14110C, #1C1812);
  border-color: rgba(201, 168, 124, 0.18);
}

.service-card.tech {
  background: linear-gradient(160deg, #080C1C, #0C1430);
  border-color: rgba(0, 217, 255, 0.16);
}

.service-card h3 {
  font-family: var(--font-display);
}

.service-card p,
.service-card li {
  color: var(--text-secondary);
}

.service-card a {
  color: var(--cyan);
}

.service-card.interior a {
  color: var(--interior-champagne);
}

/* Trust bar */
.trust-bar {
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
  color: var(--text-secondary);
}

/* About / process / trust / FAQ */
.about,
.testimonials,
.faq,
.content-block {
  background: var(--bg-dark);
}

.about-badge .badge-ring {
  background: var(--gradient-primary);
  color: #fff;
}

.step {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.step span {
  color: var(--cyan);
}

.trust-signal-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.trust-signal-card a {
  color: var(--cyan);
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.faq-item summary {
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
}

/* CTA */
.cta-section .cta-box,
.cta-box {
  background: linear-gradient(145deg, #0A1028, #121A3A);
  border: 1px solid rgba(0, 217, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  gap: 40px;
}

.contact-details span {
  color: var(--cyan);
}

/* Forms */
.contact-form input,
.contact-form textarea,
.contact-form select {
  background-color: rgba(5, 8, 22, 0.55);
  border: 1px solid rgba(247, 247, 242, 0.18);
  color: var(--text-primary);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(0, 217, 255, 0.55);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.14);
}

.contact-form label {
  color: var(--text-primary);
}

/* Footer */
footer.site-footer {
  background: #03050E;
  border-top: 1px solid var(--line);
  color: var(--text-secondary);
}

.footer-brand .brand-name { color: #fff; }

/* Page heroes */
.page-hero {
  background: var(--bg-deep);
  color: #fff;
}

.page-hero-interior {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 168, 124, 0.18), transparent 50%),
    linear-gradient(180deg, #12100C 0%, #050816 100%);
}

.page-hero-tech {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(0, 217, 255, 0.16), transparent 45%),
    radial-gradient(ellipse at 20% 80%, rgba(124, 58, 237, 0.12), transparent 40%),
    linear-gradient(180deg, #080C1C 0%, #050816 100%);
}

.page-hero-light {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.page-hero h1 {
  font-family: var(--font-display);
}

.page-hero h1 em {
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
}

.page-hero-interior h1 em {
  background: linear-gradient(135deg, var(--interior-ivory), var(--interior-champagne));
  -webkit-background-clip: text;
  background-clip: text;
}

.btn-ghost-light {
  border: 1px solid rgba(247, 247, 242, 0.22);
  color: #fff;
  background: transparent;
}

.btn-ghost-light:hover {
  border-color: var(--cyan);
  background: rgba(0, 217, 255, 0.08);
}

/* Breadcrumbs */
.breadcrumbs {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

/* Signature architectural → digital line */
.signature-line {
  display: block;
  width: 100%;
  height: 60px;
  overflow: visible;
  margin: 0 auto;
  color: var(--cyan);
}

.signature-line path {
  fill: none;
  stroke: url(#aqx-line-gradient);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  transition: stroke-dashoffset 1.6s var(--ease-out);
}

.signature-line.is-drawn path {
  stroke-dashoffset: 0;
}

/* ========== Split hero (homepage) ========== */
.hero-split {
  position: relative;
  min-height: min(100svh, 960px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
  isolation: isolate;
}

.hero-split-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-waves {
  position: absolute;
  inset: -10% -5%;
  width: 110%;
  height: 120%;
  opacity: 0.55;
}

.hero-waves svg {
  width: 100%;
  height: 100%;
}

.hero-split-panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 0;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  transition: opacity 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}

.hero-panel-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 1.2s var(--ease-out), opacity 0.5s ease;
  opacity: 0.55;
}

.hero-panel-interior .hero-panel-media {
  background-image:
    linear-gradient(120deg, rgba(26, 20, 12, 0.75), rgba(5, 8, 22, 0.35)),
    url("/portfolio/modern-3bhk-gurgaon/bedroom-modern-render.webp");
}

.hero-panel-tech .hero-panel-media {
  background-image:
    linear-gradient(240deg, rgba(5, 12, 30, 0.8), rgba(5, 8, 22, 0.4)),
    linear-gradient(135deg, #0a1630 0%, #142456 40%, #1a0a3a 100%);
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 8, 22, 0.85) 100%);
}

.hero-panel-label {
  position: absolute;
  bottom: 28%;
  left: 8%;
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 247, 242, 0.55);
  z-index: 1;
}

.hero-panel-tech .hero-panel-label {
  left: auto;
  right: 8%;
  text-align: right;
}

.hero-split-center {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  z-index: 1;
  transform: translateX(-50%);
}

.hero-split-center::before {
  content: "";
  position: absolute;
  inset: 12% 0 18%;
  width: 1px;
  left: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 217, 255, 0.55), rgba(201, 168, 124, 0.45), transparent);
}

.hero-split-content {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 40px));
  margin: auto;
  padding: 100px 0 120px;
  display: grid;
  gap: 28px;
  align-content: center;
  text-align: center;
}

.hero-split .eyebrow {
  justify-content: center;
}

.hero-split h1 {
  font: 800 clamp(44px, 7vw, 84px)/1.02 var(--font-display);
  letter-spacing: -0.045em;
  margin: 0;
  text-wrap: balance;
}

.hero-split h1 .hero-amp {
  display: inline-block;
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.hero-subhead {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 420px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-subhead strong {
  color: var(--text-primary);
  font-weight: 700;
}

.hero-split .hero-actions {
  justify-content: center;
}

.hero-split .hero-proof {
  justify-content: center;
  margin-top: 24px;
}

.hero-split .hero-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Mouse blend states */
.hero-split[data-blend="interior"] .hero-panel-interior .hero-panel-media {
  opacity: 0.85;
  transform: scale(1.02);
}

.hero-split[data-blend="interior"] .hero-panel-tech .hero-panel-media {
  opacity: 0.25;
  filter: saturate(0.7);
}

.hero-split[data-blend="tech"] .hero-panel-tech .hero-panel-media {
  opacity: 0.85;
  transform: scale(1.02);
}

.hero-split[data-blend="tech"] .hero-panel-interior .hero-panel-media {
  opacity: 0.25;
  filter: saturate(0.7);
}

/* Two worlds scroll section */
.worlds-section {
  padding: 0;
  background: var(--bg-dark);
}

.world-block {
  position: relative;
  min-height: 85vh;
  display: grid;
  align-items: center;
  overflow-x: clip;
  overflow-y: visible;
  padding: 100px 0;
}

.world-block-interior {
  background:
    radial-gradient(ellipse at 10% 40%, rgba(201, 168, 124, 0.12), transparent 50%),
    var(--bg-dark);
}

.world-block-tech {
  background:
    radial-gradient(ellipse at 90% 40%, rgba(0, 217, 255, 0.1), transparent 50%),
    var(--bg-deep);
}

.world-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.world-copy h2 {
  font: 700 clamp(32px, 5vw, 56px)/1.22 var(--font-display), sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--text-primary);
  overflow: visible;
  padding-bottom: 0.12em;
}

.world-copy p {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 440px;
  margin: 0 0 28px;
}

.world-stages {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
}

.world-stage {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s var(--ease-out), transform 1s var(--ease-out);
  background-size: cover;
  background-position: center;
}

.world-stage.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.world-stage-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--line);
}

.world-progress {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.world-progress button {
  flex: 1;
  height: 3px;
  border: 0;
  border-radius: 2px;
  background: rgba(247, 247, 242, 0.12);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.world-progress button.is-active {
  background: var(--gradient-primary);
}

.world-block-interior .world-progress button.is-active {
  background: linear-gradient(90deg, var(--interior-sand), var(--interior-champagne));
}

.world-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.world-links a {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--text-secondary);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.world-links a:hover {
  color: #fff;
  border-color: rgba(0, 217, 255, 0.4);
  background: rgba(0, 217, 255, 0.06);
}

.world-block-interior .world-links a:hover {
  border-color: rgba(201, 168, 124, 0.45);
  background: rgba(201, 168, 124, 0.08);
}

/* Materials strip */
.materials-section {
  padding: 80px 0;
  background: var(--bg-deep);
  border-block: 1px solid var(--line);
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.material-swatch {
  aspect-ratio: 1;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  color: var(--text-primary);
  font: 600 12px/1.2 var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.material-swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.material-swatch[data-material="wood"]::before {
  background: linear-gradient(160deg, #8B5E3C, #C4A484 60%, #5C3A21);
}
.material-swatch[data-material="stone"]::before {
  background: linear-gradient(160deg, #8A8F98, #C5C8CE 55%, #5E646E);
}
.material-swatch[data-material="marble"]::before {
  background: linear-gradient(145deg, #EDE8E1, #F7F4F0 40%, #C9C2B8);
}
.material-swatch[data-material="fabric"]::before {
  background: linear-gradient(160deg, #6B5B4F, #A8907C 55%, #3D332C);
}
.material-swatch[data-material="glass"]::before {
  background: linear-gradient(160deg, rgba(180, 220, 240, 0.5), rgba(240, 248, 255, 0.3));
}
.material-swatch[data-material="metal"]::before {
  background: linear-gradient(145deg, #9AA0A8, #E4E6EA 45%, #6A7078);
}

.material-swatch span {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
  color: #fff;
}

.material-swatch:hover,
.material-swatch.is-active {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 124, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.materials-atmosphere {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  min-height: 72px;
  transition: background 0.5s ease, border-color 0.5s ease;
}

.materials-atmosphere[data-active="wood"] {
  background: linear-gradient(90deg, rgba(139, 94, 60, 0.25), var(--bg-elevated));
  border-color: rgba(196, 164, 132, 0.35);
}
.materials-atmosphere[data-active="stone"] {
  background: linear-gradient(90deg, rgba(138, 143, 152, 0.25), var(--bg-elevated));
}
.materials-atmosphere[data-active="marble"] {
  background: linear-gradient(90deg, rgba(237, 232, 225, 0.12), var(--bg-elevated));
}
.materials-atmosphere[data-active="fabric"] {
  background: linear-gradient(90deg, rgba(107, 91, 79, 0.3), var(--bg-elevated));
}
.materials-atmosphere[data-active="glass"] {
  background: linear-gradient(90deg, rgba(180, 220, 240, 0.15), var(--bg-elevated));
}
.materials-atmosphere[data-active="metal"] {
  background: linear-gradient(90deg, rgba(154, 160, 168, 0.25), var(--bg-elevated));
}

/* Digital network (IT decorative) */
.digital-network {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  overflow: hidden;
}

.digital-network svg {
  width: 100%;
  height: 100%;
}

/* Architectural grid overlay */
.arch-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(201, 168, 124, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 124, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  opacity: 0.7;
}

/* Page transition flash */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(201, 168, 124, 0.35), rgba(0, 217, 255, 0.35));
  transition: opacity 0.25s ease;
}

.page-transition.is-active {
  opacity: 1;
}

/* Division themes */
[data-division="interior"] .nav-cta {
  background: linear-gradient(135deg, var(--interior-sand), var(--interior-copper)) !important;
  box-shadow: none;
}

[data-division="it"] .nav-cta {
  background: var(--gradient-primary) !important;
}

/* Portfolio / blog cards on dark */
.work-card,
.blog-card,
.portfolio-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text-primary);
}

.portfolio-card-photo {
  background: var(--bg-surface);
}

/* Mobile full-screen menu */
@media (max-width: 700px) {
  .nav-links.open {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(5, 8, 22, 0.97);
    backdrop-filter: blur(20px);
    padding: calc(var(--nav-height) + 24px) 28px 40px;
    z-index: 40;
    justify-content: center;
    gap: 8px;
  }

  .nav-links.open a {
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 700;
    opacity: 1;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open a::after { display: none; }

  .nav-links.open .nav-cta {
    margin-top: 20px;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-body);
    border: none;
  }

  .menu-btn {
    color: var(--text-primary);
    position: relative;
    z-index: 60;
  }

  .hero-split {
    min-height: auto;
  }

  .hero-split-panels {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .hero-split-center {
    display: none;
  }

  .hero-panel-label {
    bottom: 16px;
  }

  .hero-split-content {
    padding: 72px 0 80px;
  }

  .hero-split h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .world-grid {
    grid-template-columns: 1fr;
  }

  .world-block {
    min-height: auto;
    padding: 72px 0;
  }

  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .path-selector {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel-media,
  .world-stage,
  .material-swatch {
    transition: none !important;
  }
}

/* Cinematic page heroes */
.page-hero-cinematic {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
}

.page-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.06);
  transition: transform 1.8s var(--ease-out);
}

.page-hero-cinematic.is-inview .page-hero-photo {
  transform: scale(1);
}

.page-hero-cinematic .container,
.page-hero-cinematic .arch-grid,
.page-hero-cinematic .digital-network {
  position: relative;
  z-index: 1;
}

.page-hero-cinematic .digital-network {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.room-reveal {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 124, 0.25);
  background: #0c0a08;
}

.room-reveal-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s var(--ease-out), transform 1.2s var(--ease-out);
}

.room-reveal-blueprint {
  background:
    linear-gradient(rgba(201, 168, 124, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 124, 0.15) 1px, transparent 1px),
    #12100c;
  background-size: 32px 32px, 32px 32px, auto;
  opacity: 1;
}

.room-reveal-wire {
  background:
    linear-gradient(135deg, transparent 40%, rgba(201, 168, 124, 0.2) 40%, rgba(201, 168, 124, 0.2) 41%, transparent 41%),
    linear-gradient(225deg, transparent 55%, rgba(201, 168, 124, 0.12) 55%, rgba(201, 168, 124, 0.12) 56%, transparent 56%);
  opacity: 0;
}

.room-reveal-photo {
  opacity: 0;
  transform: scale(1.08);
}

.room-reveal.is-revealed .room-reveal-blueprint { opacity: 0.15; }
.room-reveal.is-revealed .room-reveal-wire { opacity: 0.35; }
.room-reveal.is-revealed .room-reveal-photo { opacity: 1; transform: scale(1); }

.it-hero-kicker {
  font: 700 clamp(28px, 4vw, 42px)/1.2 var(--font-display);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  overflow: visible;
  padding-bottom: 0.1em;
}

.it-system-viz {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 217, 255, 0.2);
  background: rgba(8, 12, 28, 0.85);
  padding: 24px;
  box-shadow: var(--shadow-glow);
}

.it-system-viz svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Service link cards — superseded by final polish block below */
.service-link-grid--legacy-note { display: none; }


.service-link-card:hover .arrow {
  transform: translateX(6px);
}

[data-variant="interior"] .service-link-card .arrow {
  color: var(--interior-champagne);
}

/* About SPACE + SYSTEMS */
.about-space-systems {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  max-width: 640px;
  font: 700 12px/1 var(--font-body);
  letter-spacing: 0.22em;
  color: var(--text-secondary);
}

.about-space-systems .signature-line {
  height: 40px;
}

.page-lead {
  color: var(--text-secondary);
  font-size: 18px;
  max-width: 640px;
}

.contact-display {
  font: 700 clamp(28px, 5vw, 48px)/1.1 var(--font-display);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
}

.contact-path-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
  max-width: 560px;
}

.contact-path {
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  transition: border-color var(--transition), transform var(--transition);
}

.contact-path strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.contact-path span {
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-path--interior:hover {
  border-color: rgba(201, 168, 124, 0.45);
  transform: translateY(-2px);
}

.contact-path--tech:hover {
  border-color: rgba(0, 217, 255, 0.4);
  transform: translateY(-2px);
}

/* Pricing / blog / misc dark fixes */
.pricing-card,
.tool-card,
.blog-preview-card,
.client-review-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  color: var(--text-primary);
}

.page-main {
  background: var(--bg-dark);
}

@media (max-width: 700px) {
  .contact-path-split {
    grid-template-columns: 1fr;
  }

  .about-space-systems {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero-cinematic {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Dark-theme contrast fixes for legacy component colors */
.service-link-card {
  background: var(--bg-elevated) !important;
  border-color: var(--line) !important;
  color: var(--text-primary);
  box-shadow: none !important;
}

.service-link-card strong {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
}

.service-link-card::before {
  background: var(--gradient-primary) !important;
}

.service-link-card--interior::before {
  background: linear-gradient(90deg, var(--interior-sand), var(--interior-copper)) !important;
}

.service-link-card--tech .service-link-icon {
  background: rgba(0, 217, 255, 0.12) !important;
  color: var(--cyan) !important;
}

.service-link-card--interior .service-link-icon {
  background: rgba(201, 168, 124, 0.15) !important;
  color: var(--interior-champagne) !important;
}

.service-link-arrow {
  color: var(--cyan) !important;
}

.service-link-card--interior .service-link-arrow {
  color: var(--interior-champagne) !important;
}

.service-link-card-dark {
  background: var(--bg-surface) !important;
}

.founder-card {
  background: var(--bg-elevated) !important;
  border-color: var(--line) !important;
  box-shadow: none !important;
  color: var(--text-primary);
}

.founders-section {
  background: var(--bg-dark) !important;
}

.founder-card h2 {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
}

.founder-role,
.founder-body p {
  color: var(--text-secondary);
}

.founder-link {
  color: var(--cyan) !important;
}

.founder-card--interior .founder-link {
  color: var(--interior-champagne) !important;
}

.portfolio-filter {
  background: transparent !important;
  border-color: var(--line) !important;
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
}

.portfolio-filter:hover,
.portfolio-filter.is-active {
  background: rgba(0, 217, 255, 0.12) !important;
  border-color: rgba(0, 217, 255, 0.4) !important;
  color: var(--text-primary) !important;
}

.work-card,
.blog-card,
.pricing-tier,
.tool-card {
  background: var(--bg-elevated) !important;
  border-color: var(--line) !important;
  color: var(--text-primary) !important;
}

.work-card h3,
.blog-card h3,
.pricing-tier h3 {
  color: var(--text-primary) !important;
  font-family: var(--font-display);
}

.blog-card p,
.work-card p {
  color: var(--text-secondary) !important;
}

/* Undo conflicting horizontal card override — keep module cards */
.service-link-grid[data-variant="interior"] .service-link-card,
.service-link-grid .service-link-card {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: unset !important;
}

.service-link-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.flash,
.flash-bar {
  background: var(--bg-elevated);
  color: var(--text-primary);
  border-color: var(--line);
}

.whatsapp-float {
  z-index: 40;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.page-hero-light h1 {
  color: var(--text-primary);
  font-family: var(--font-display);
}

.hero-waves .wave-path {
  transform-origin: center;
  will-change: transform;
}

/* Blog editorial listing on dark */
.blog-list-item {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
}

.blog-list-item h2,
.blog-list-item h2 a {
  color: var(--text-primary);
  font-family: var(--font-display);
  text-decoration: none;
}

.blog-list-item h2 a:hover {
  color: var(--cyan);
}

.blog-list-item p,
.blog-meta {
  color: var(--text-secondary);
}

.blog-read-link {
  color: var(--cyan);
}

/* Service / location content prose */
.content-prose,
.content-prose h2,
.content-prose h3,
.page-main h1,
.page-main h2 {
  color: var(--text-primary);
}

.content-prose p,
.content-prose li {
  color: var(--text-secondary);
}

.content-block-dark {
  background: var(--bg-deep);
}

/* Tools */
.tool-shell,
.tool-panel {
  background: var(--bg-elevated);
  border-color: var(--line);
  color: var(--text-primary);
}

input, select, textarea {
  color-scheme: dark;
}

.blog-article-body,
.prose h2 {
  color: var(--text-primary);
}

.prose p,
.prose li {
  color: var(--text-secondary);
}

.prose a:not(.btn) {
  color: var(--cyan);
}

/* ============================================================
   UX FIX PASS — contrast, typography, mobile
   ============================================================ */

/* Ensure page canvas is always dark */
html, body {
  background: var(--bg-dark) !important;
  color: var(--text-primary);
}

/* Kill leftover white surfaces from the old light theme */
.process,
.work,
.faq,
.content-block,
.about,
.testimonials,
.trust-signals,
.services,
.pricing-section,
.blog-preview,
.founders-section,
.page-main,
.portfolio-page,
.cta-inline,
.path-selector,
.materials-section,
.worlds-section,
.section {
  background-color: var(--bg-dark);
}

/* Explicit readable headings everywhere */
h1, h2, h3, h4 {
  color: var(--text-primary);
}

.section-head h2,
.about h2,
.faq h2,
.faq-single h2,
.cta-section h2,
.page-hero h1,
.page-hero-light h1,
.hero-split h1 {
  color: var(--text-primary) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  overflow: visible;
}

/* Override old fixed 52px that fought the clamp */
.section-head h2 {
  font-size: clamp(30px, 4.5vw, 48px) !important;
}

.section-head h2 em,
.about h2 em,
.faq h2 em,
.faq-single h2 em,
.cta-section h2 em,
.page-hero h1 em,
.hero-split h1 .hero-amp {
  -webkit-text-fill-color: transparent;
  padding-left: 0.02em;
  padding-right: 0.1em;
}

.section-head > p,
.page-lead,
.page-hero-text,
.hero-text,
.faq-intro {
  color: var(--text-secondary) !important;
}

/* Process steps — readable + responsive */
.steps,
.steps-4 {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(247, 247, 242, 0.08);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.step {
  background: var(--bg-elevated) !important;
  border: none !important;
  min-width: 0;
  padding: 28px 22px !important;
}

.step:hover {
  background: var(--bg-surface) !important;
}

.step h3 {
  color: var(--text-primary) !important;
  font-size: 20px !important;
  margin: 18px 0 10px !important;
}

.step p {
  color: var(--text-secondary) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

/* Cards / surfaces */
.trust-signal-card,
.faq-item,
.work-card,
.blog-card,
.blog-list-item,
.portfolio-card,
.pricing-card,
.pricing-tier,
.tool-card,
.testimonial-card,
.client-review-card,
.client-review-card-inner,
.founder-card,
.service-link-card,
.contact-path,
.cta-box {
  background: var(--bg-elevated) !important;
  border-color: var(--line) !important;
  color: var(--text-primary);
}

.trust-signal-card h3,
.work-card h3,
.blog-card h3,
.blog-list-item h2,
.blog-list-item h2 a,
.portfolio-card h3,
.founder-card h2,
.service-link-card strong,
.pricing-tier h3,
.testimonial-card p {
  color: var(--text-primary) !important;
}

.trust-signal-card p,
.work-card p,
.blog-card p,
.blog-list-item p,
.portfolio-card p,
.founder-body p,
.service-link-desc,
.faq-item p,
.testimonial-card footer {
  color: var(--text-secondary) !important;
}

/* Forms readable on dark */
.contact-form input,
.contact-form textarea,
.contact-form select,
.tool-shell input,
.tool-shell select,
.tool-panel input,
.tool-panel select {
  background-color: rgba(5, 8, 22, 0.55) !important;
  border: 1px solid rgba(247, 247, 242, 0.18) !important;
  color: var(--text-primary) !important;
}

.contact-form select,
.tool-panel select,
.tool-shell select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A7ADBD' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
}

.contact-form label {
  color: var(--text-primary) !important;
}

.contact-form-lead {
  color: var(--text-secondary) !important;
}

.contact-form-title {
  color: var(--text-primary) !important;
}

/* Pricing / tools leftover light panels */
.pricing-section,
.tools-section {
  background: var(--bg-dark) !important;
}

/* ========== MOBILE ========== */
@media (max-width: 900px) {
  .steps,
  .steps-4 {
    grid-template-columns: 1fr 1fr !important;
  }

  .world-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .hero-split-panels {
    opacity: 0.45;
  }

  .materials-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .service-link-grid {
    grid-template-columns: 1fr !important;
  }

  .path-grid {
    grid-template-columns: 1fr !important;
  }

  .about-grid,
  .cta-box {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1160px) !important;
  }

  .section {
    padding: 56px 0 !important;
  }

  .steps,
  .steps-4 {
    grid-template-columns: 1fr !important;
  }

  .step {
    min-height: auto !important;
    padding: 22px 20px !important;
  }

  .step h3 {
    margin-top: 12px !important;
    font-size: 18px !important;
  }

  .section-head,
  .section-head.compact {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .section-head h2,
  .about h2,
  .faq h2,
  .faq-single h2,
  .cta-section h2,
  .page-hero h1 {
    font-size: clamp(26px, 7vw, 34px) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.18 !important;
  }

  .hero-split {
    min-height: auto !important;
  }

  .hero-split-panels {
    grid-template-columns: 1fr !important;
    grid-template-rows: 140px 140px;
    position: absolute;
    inset: 0;
  }

  .hero-panel-label {
    display: none;
  }

  .hero-split-content {
    padding: 64px 0 72px !important;
    text-align: left;
  }

  .hero-split .eyebrow,
  .hero-split .hero-actions,
  .hero-split .hero-proof {
    justify-content: flex-start !important;
  }

  .hero-split h1 {
    font-size: clamp(32px, 9vw, 42px) !important;
    text-align: left;
  }

  .hero-subhead,
  .hero-split .hero-text {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: 16px !important;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 18px !important;
    margin-top: 28px !important;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll-cue {
    display: none;
  }

  .world-block {
    min-height: auto !important;
    padding: 56px 0 !important;
  }

  .world-copy h2 {
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  .world-copy p {
    font-size: 15px !important;
  }

  .world-stages {
    aspect-ratio: 4 / 3;
  }

  .materials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .material-swatch {
    aspect-ratio: 1.2;
    min-height: 88px;
  }

  .materials-atmosphere {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-columns {
    grid-template-columns: 1fr !important;
  }

  .trust-signal-grid,
  .service-grid,
  .work-grid,
  .work-grid-3,
  .portfolio-grid,
  .founders-page,
  .contact-path-split,
  .footer-inner {
    grid-template-columns: 1fr !important;
  }

  .page-hero-cinematic,
  .page-hero {
    min-height: auto !important;
    padding: 36px 0 48px !important;
  }

  .page-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .page-hero-visual,
  .room-reveal,
  .it-system-viz {
    max-width: 100%;
  }

  .room-reveal {
    aspect-ratio: 16 / 11 !important;
  }

  .it-hero-kicker {
    font-size: 22px !important;
    letter-spacing: 0.04em !important;
  }

  .nav-links.open {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(5, 8, 22, 0.98) !important;
    padding: calc(var(--nav-height) + 20px) 24px 40px !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open a {
    font-size: 22px !important;
    padding: 14px 0 !important;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px !important;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-msme-logo {
    margin-inline: auto;
  }

  .footer-service-areas {
    font-size: 13px;
  }

  /* Prevent horizontal overflow */
  body, main, .section, .hero-split, .world-block, .page-hero {
    max-width: 100vw;
    overflow-x: hidden;
  }

  img, svg, video, canvas {
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .materials-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-proof strong {
    font-size: 22px;
  }

  .btn {
    padding: 13px 18px;
    font-size: 13px;
  }
}

/* Mobile hero readability overlay */
@media (max-width: 700px) {
  .hero-split::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(5, 8, 22, 0.55) 0%,
      rgba(5, 8, 22, 0.82) 45%,
      rgba(5, 8, 22, 0.94) 100%
    );
  }

  .hero-split-content {
    position: relative;
    z-index: 2;
  }

  /* Soften aggressive negative tracking from legacy rules */
  .hero h1,
  .page-hero h1,
  .section-head h2 {
    letter-spacing: -0.02em !important;
  }

  /* Stack trust proof cleanly */
  .hero-proof div {
    min-width: 40%;
  }

  /* Interior/IT cinematic hero photo shouldn't dominate copy */
  .page-hero-photo {
    opacity: 0.55;
  }

  .page-hero-cinematic .page-hero-grid > div:first-child {
    position: relative;
    z-index: 2;
  }
}

/* Tablet steps breathing room */
@media (max-width: 900px) and (min-width: 701px) {
  .step {
    padding: 24px 18px !important;
  }

  .step p {
    font-size: 13px !important;
  }
}

/* Fix any panel that still paints near-white */
.service-card.interior {
  background: linear-gradient(160deg, #14110C, #1C1812) !important;
  color: var(--text-primary) !important;
}

.service-card.tech {
  background: linear-gradient(160deg, #080C1C, #0C1430) !important;
  color: var(--text-primary) !important;
}

.service-card h3,
.service-card p,
.service-card li {
  color: inherit;
}

.service-card p,
.service-card li {
  color: var(--text-secondary) !important;
}

.service-card h3 {
  color: var(--text-primary) !important;
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em !important;
}

/* Trust bar */
.trust-bar {
  background: var(--bg-deep) !important;
  color: var(--text-secondary) !important;
  border-color: var(--line) !important;
}

.trust-inner span {
  color: var(--text-secondary);
}

/* Pricing leftover cream cards */
.pricing-card,
.price-card,
.pricing-tier,
.pricing-box {
  background: var(--bg-elevated) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--line) !important;
}

.pricing-card h3,
.pricing-tier h3,
.price-card h3 {
  color: var(--text-primary) !important;
}

.pricing-card p,
.pricing-tier p,
.pricing-card li {
  color: var(--text-secondary) !important;
}

.section.pricing,
.pricing {
  background: var(--bg-dark) !important;
}

.pricing-card {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
  color: var(--text-primary) !important;
}

.pricing-card h3,
.pricing-amount {
  color: var(--text-primary) !important;
  font-family: var(--font-display);
}

.pricing-note,
.pricing-card ul,
.pricing-card li {
  color: var(--text-secondary) !important;
}

.pricing-link {
  color: var(--cyan) !important;
}

.pricing-featured {
  border-color: rgba(0, 217, 255, 0.35) !important;
  background: linear-gradient(160deg, #0C1430, #10162E) !important;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

/* About founders text */
.founders strong {
  color: var(--text-primary);
}

.founders span {
  color: var(--text-secondary);
}

.about-badge {
  color: var(--text-secondary);
}

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

/* Breadcrumb strip */
.breadcrumbs,
.breadcrumb-nav {
  color: var(--text-secondary);
  background: transparent;
}

/* Legal / privacy */
.legal-prose,
.legal-prose p,
.legal-prose li {
  color: var(--text-secondary) !important;
}

.legal-prose h1,
.legal-prose h2 {
  color: var(--text-primary) !important;
}

/* Hardcoded navy text from light theme → readable on dark */
.pricing-amount,
.pricing-link,
.work-category-label,
.interior-label,
.blog-article-body,
.prose,
.tool-result,
.tool-output,
.portfolio-showcase-head h1,
.portfolio-stat dd,
.portfolio-budget-card strong,
.cta-banner h2,
.mail-link {
  color: var(--text-primary) !important;
}

.interior-label {
  color: var(--interior-champagne) !important;
}

.tech-label {
  color: var(--cyan) !important;
}

.pricing-card li,
.prose p,
.prose li,
.blog-article-body p,
.portfolio-stat dt,
.pricing-note {
  color: var(--text-secondary) !important;
}

.prose a:not(.btn),
.pricing-link,
.blog-read-link,
.faq-page-link,
.text-link,
.founder-link {
  color: var(--cyan) !important;
}

/* Ensure gradient headlines never clip on the left edge */
.section-head h2 em,
.cta-section h2 em,
.page-hero h1 em,
.about h2 em {
  margin-left: 0;
  padding-left: 0.04em;
  padding-right: 0.12em;
}

/* ============================================================
   GLOBAL CONTRAST + HOMEPAGE HERO TYPOGRAPHY
   ============================================================ */

/* Nuclear: no more white cards with light text */
.founders > div,
.service-benefits li,
.trust-signal-card,
.testimonial-card,
.client-review-card,
.client-review-card-inner,
.blog-list-item,
.work-card,
.portfolio-card,
.pricing-card,
.tool-card,
.tool-panel,
.tool-shell,
.contact-panel,
.service-link-card,
.faq-item,
.step,
.founder-card,
.cta-banner,
.google-review-cta,
.install-banner {
  background: var(--bg-elevated) !important;
  border-color: var(--line) !important;
  color: var(--text-primary) !important;
  box-shadow: none !important;
}

.founders > div strong,
.service-benefits li,
.trust-signal-card h3,
.founder-card h2,
.blog-list-item h2,
.blog-list-item h2 a,
.work-card h3,
.pricing-card h3,
.pricing-amount,
.contact-form-title,
.contact-panel h3 {
  color: var(--text-primary) !important;
}

.founders > div span,
.trust-signal-card p,
.service-benefits li,
.founder-body p,
.founder-role,
.blog-list-item p,
.contact-form-lead,
.pricing-note {
  color: var(--text-secondary) !important;
}

/* Homepage-style brand signature */
.brand-signature {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em 0.45em;
  margin: 18px 0 0;
  font: 700 clamp(22px, 3.5vw, 36px)/1.15 var(--font-display), sans-serif;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}

.brand-signature-amp {
  color: transparent;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.06em;
}

.brand-signature-one {
  color: var(--text-primary);
  opacity: 0.92;
}

.brand-signature--stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05em;
  font-size: clamp(28px, 5vw, 48px);
}

.brand-signature--stacked .brand-signature-amp {
  line-height: 1;
}

/* Unify ALL major headings to homepage display style */
.page-hero h1,
.page-hero-light h1,
.section-head h2,
.about h2,
.faq h2,
.faq-single h2,
.cta-section h2,
.hero-split h1,
.blog-article-body h1,
.portfolio-showcase-head h1 {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.12 !important;
  color: var(--text-primary) !important;
}

.page-hero h1 {
  font-size: clamp(34px, 5.5vw, 64px) !important;
}

.page-hero h1 em,
.page-hero-light h1 em,
.section-head h2 em,
.about h2 em,
.faq h2 em,
.faq-single h2 em,
.cta-section h2 em {
  font-style: normal !important;
  color: transparent !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  padding-right: 0.1em;
}

/* Contact form button must be visible */
.contact-form .btn-light,
.form-submit.btn-light {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 10px 28px rgba(66, 103, 255, 0.28) !important;
}

.contact-form .btn-light:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.contact-panel {
  padding: 32px !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(0, 217, 255, 0.14) !important;
  background:
    linear-gradient(165deg, rgba(16, 22, 46, 0.98), rgba(10, 14, 32, 0.98)) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28) !important;
}

/* Benefits list — premium dark chips, not white bars */
.service-benefits li {
  background: linear-gradient(135deg, rgba(16, 22, 46, 0.95), rgba(12, 16, 36, 0.95)) !important;
  border: 1px solid rgba(0, 217, 255, 0.12) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body), sans-serif;
  font-weight: 500;
}

/* Founder chips on homepage about */
.founders > div {
  background: linear-gradient(145deg, #121836, #0C1024) !important;
  border: 1px solid rgba(0, 217, 255, 0.14) !important;
}

@media (max-width: 700px) {
  .founders {
    flex-direction: column;
  }

  .founders > div {
    min-width: 0;
    width: 100%;
  }

  .brand-signature {
    font-size: clamp(20px, 6vw, 28px);
  }

  .service-benefits li {
    font-size: 14px;
    padding: 14px 16px !important;
  }

  .contact-panel {
    padding: 22px 18px !important;
  }

  .cta-box {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 28px 22px !important;
  }
}

/* Homepage-matching stacked brand titles */
.brand-hero-title {
  font: 700 clamp(34px, 5.5vw, 64px)/1.08 var(--font-display), sans-serif !important;
  letter-spacing: -0.03em !important;
  color: var(--text-primary) !important;
  margin: 0 0 18px !important;
}

.brand-hero-title .hero-amp,
.hero-split h1 .hero-amp,
h1 .hero-amp,
h2 .hero-amp {
  display: inline-block;
  color: transparent !important;
  background: var(--gradient-primary) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  font-weight: 700;
  padding-right: 0.08em;
}

.page-hero .brand-signature {
  margin: 0 0 14px;
  opacity: 0.95;
}

.page-hero .brand-signature--stacked {
  margin-bottom: 18px;
}

/* Contact CTA section title on homepage */
.cta-section .brand-hero-title {
  font-size: clamp(30px, 4.5vw, 52px) !important;
}

@media (max-width: 700px) {
  .brand-hero-title {
    font-size: clamp(28px, 8.5vw, 38px) !important;
  }
}

/* ============================================================
   FONT + DESCENDER + REVIEW CONTRAST LOCK
   ============================================================ */

html, body, button, input, select, textarea {
  font-family: var(--font-body) !important;
}

h1, h2, h3, h4, h5, h6,
.brand-name,
.brand-hero-title {
  font-family: var(--font-display) !important;
}

.nav-links,
.btn,
.eyebrow,
.page-lead,
p, li, a, span, strong, label, summary {
  font-family: var(--font-body) !important;
}

/* Stop "g / y / p / q" bottom clipping site-wide */
p, li, span, strong, a, label, summary, h1, h2, h3, h4,
.client-review-card blockquote p,
.client-review-author-text strong,
.client-review-role,
.client-review-location,
.client-review-project,
.service-benefits li,
.founders span,
.founders strong {
  line-height: 1.55 !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

h1, h2, .brand-hero-title, .hero-split h1, .page-hero h1 {
  line-height: 1.18 !important;
}

/* Review quote must be light on dark */
.client-review-card blockquote p,
.client-review-card-inner,
.client-review-card-inner p {
  color: var(--text-secondary) !important;
}

.client-review-author-text strong {
  color: var(--text-primary) !important;
}

.client-review-role,
.client-review-location,
.client-review-project {
  color: var(--text-secondary) !important;
}

.client-review-author {
  background: var(--bg-surface) !important;
  border-color: var(--line) !important;
}

.client-review-card-inner {
  background: var(--bg-elevated) !important;
  overflow: visible !important;
}

.client-reviews--interior .client-review-author {
  background: rgba(201, 168, 124, 0.1) !important;
}

.client-reviews--tech .client-review-author {
  background: rgba(0, 217, 255, 0.08) !important;
}

/* Project badge — no overflow clip on descenders */
.client-review-project {
  overflow: visible !important;
  line-height: 1.45 !important;
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

/* Google review CTA contrast */
.google-review-cta-inner {
  background: var(--bg-elevated) !important;
  border-color: var(--line) !important;
  color: var(--text-primary) !important;
}

.google-review-cta-inner h3,
.google-review-cta-inner p,
.google-review-cta-inner a {
  color: var(--text-primary) !important;
}

.google-review-cta-inner h3 {
  font-family: var(--font-display) !important;
}

.google-review-cta-inner p,
.google-review-cta-inner a {
  font-family: var(--font-body) !important;
}

.google-review-cta-inner p {
  color: var(--text-secondary) !important;
}

/* ============================================================
   FINAL POLISH — font, services, headlines, mobile
   ============================================================ */

/* Headings & body = Plus Jakarta Sans. */
html, body {
  font-family: var(--font-body) !important;
}

/* Headlines — room for descenders (g, y, p) */
h1, h2, h3,
.brand-hero-title,
.hero-split h1,
.page-hero h1,
.section-head h2,
.world-copy h2,
.cta-section h2,
.about h2,
.faq h2 {
  line-height: 1.25 !important;
  overflow: visible !important;
  padding-bottom: 0.08em !important;
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em !important;
}

.world-copy h2 {
  font-size: clamp(30px, 4.8vw, 52px) !important;
  color: var(--text-primary) !important;
}

.path-card h2 {
  font: 700 26px/1.25 "Plus Jakarta Sans", sans-serif !important;
  color: inherit !important;
  overflow: visible !important;
}

/* Service cards — clean 3-col modules, full text, no truncate */
.service-link-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

.service-link-grid .service-link-card,
.service-link-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  grid-template-columns: unset !important;
  gap: 12px !important;
  min-height: 0 !important;
  height: auto !important;
  padding: 22px !important;
  background: var(--bg-elevated) !important;
  border: 1px solid var(--line) !important;
  border-radius: 18px !important;
  overflow: visible !important;
  color: var(--text-primary) !important;
  box-shadow: none !important;
}

.service-link-icon {
  margin-bottom: 2px;
}

.service-link-title,
.service-link-card strong {
  font: 700 17px/1.35 "Plus Jakarta Sans", sans-serif !important;
  color: var(--text-primary) !important;
  overflow: visible !important;
}

.service-link-desc {
  display: block !important;
  font: 700 14px/1.65 "Plus Jakarta Sans", sans-serif !important;
  color: var(--text-secondary) !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  max-height: none !important;
}

.service-link-arrow {
  font: 700 13px/1.45 "Plus Jakarta Sans", sans-serif !important;
  margin-top: auto !important;
}

.service-link-card--interior .service-link-arrow { color: var(--interior-champagne) !important; }
.service-link-card--tech .service-link-arrow { color: var(--cyan) !important; }

/* Path selector cards */
.path-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 16px !important;
}

.path-card {
  min-height: 0 !important;
  overflow: visible !important;
}

.path-card p,
.path-link {
  overflow: visible !important;
  line-height: 1.55 !important;
}

/* Worlds section */
.world-block {
  overflow: visible !important;
  min-height: auto !important;
  padding: 80px 0 !important;
}

.world-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.05fr !important;
  gap: 40px !important;
  align-items: center !important;
}

/* ========== MOBILE / TABLET ========== */
@media (max-width: 1024px) {
  .service-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .world-grid {
    grid-template-columns: 1fr !important;
  }

  .client-reviews-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1160px) !important;
  }

  .service-link-grid,
  .path-grid,
  .service-grid,
  .pricing-grid,
  .work-grid,
  .work-grid-3,
  .portfolio-grid,
  .trust-signal-grid,
  .faq-columns,
  .founders-page,
  .about-grid,
  .page-hero-grid,
  .cta-box,
  .client-reviews-grid,
  .steps,
  .steps-4 {
    grid-template-columns: 1fr !important;
  }

  .section-head {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .section-head h2,
  .world-copy h2,
  .page-hero h1,
  .brand-hero-title {
    font-size: clamp(26px, 7.2vw, 34px) !important;
    line-height: 1.22 !important;
  }

  .path-selector {
    margin-top: 0 !important;
    padding: 24px 0 !important;
  }

  .path-card {
    padding: 22px !important;
  }

  .path-card h2 {
    font-size: 22px !important;
  }

  .hero-split-content {
    text-align: left !important;
    padding: 56px 0 64px !important;
  }

  .hero-split h1 {
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.15 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .world-block {
    padding: 48px 0 !important;
  }

  .world-stages {
    aspect-ratio: 4 / 3 !important;
  }

  .materials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .service-link-card {
    padding: 18px !important;
  }

  .nav-links.open {
    position: fixed !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    background: rgba(5, 8, 22, 0.98) !important;
    padding: calc(var(--nav-height) + 24px) 24px 40px !important;
    z-index: 45 !important;
    overflow-y: auto !important;
  }

  .nav-links.open a {
    font-size: 22px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  /* Kill horizontal scroll */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  .hero-split,
  .world-block,
  .section,
  .page-hero,
  main {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
}

@media (max-width: 480px) {
  .materials-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-proof {
    gap: 14px !important;
  }

  .trust-inner {
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    gap: 10px 14px !important;
  }
}

/* CTA buttons — never clip label text */
.btn,
.btn-ghost-light,
.btn-primary,
.btn-ghost,
.hero-actions .btn {
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: clip !important;
  flex-shrink: 0 !important;
  max-width: none !important;
}

.hero-actions,
.page-hero .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  align-items: center !important;
}

.page-hero-grid > div:first-child {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-actions .btn,
  .page-hero .hero-actions .btn {
    width: 100% !important;
    justify-content: center !important;
    white-space: normal !important;
    text-align: center !important;
  }
}

/* ============================================================
   FONT LOCK — Plus Jakarta Sans site-wide
     (matches homepage hero hierarchy; do not force one weight site-wide)
   ============================================================ */
html, body {
  font-family: var(--font-body) !important;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.brand-name,
.hero-split h1,
.page-hero h1,
.page-hero-light h1,
.section-head h2,
.about h2,
.faq h2,
.faq-single h2,
.cta-section h2,
.blog-article-body h1,
.portfolio-showcase-head h1,
.work-card h3,
.portfolio-card h3,
.founder-name,
.pricing-amount,
.brand-hero-title,
.content-prose h2,
.content-prose h3 {
  font-family: var(--font-display) !important;
}

svg text,
svg tspan {
  font-family: var(--font-display) !important;
}

/* ============================================================
   PORTFOLIO CONTRAST FIX — dark cards + readable text/links
   ============================================================ */
.portfolio-view-link {
  color: var(--cyan) !important;
}

.portfolio-view-link:hover {
  color: #fff !important;
}

.portfolio-stats .portfolio-stat,
.portfolio-stats--showcase .portfolio-stat {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
  color: var(--text-primary) !important;
}

.portfolio-stat dt {
  color: var(--text-muted) !important;
}

.portfolio-stat dd {
  color: var(--text-primary) !important;
}

.portfolio-spec-card,
.portfolio-aside-cta {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--line) !important;
  color: var(--text-primary) !important;
}

.portfolio-spec-card h2,
.portfolio-aside-cta p:first-child {
  color: var(--text-primary) !important;
}

.portfolio-spec-row {
  border-bottom-color: rgba(247, 247, 242, 0.1) !important;
}

.portfolio-spec-row dt {
  color: var(--text-muted) !important;
}

.portfolio-spec-row dd {
  color: var(--text-primary) !important;
}

.portfolio-budget-card {
  background: linear-gradient(145deg, #0A1028, #121A3A) !important;
  border: 1px solid rgba(0, 217, 255, 0.14) !important;
  color: #fff !important;
}

.portfolio-budget-card strong {
  color: #fff !important;
}

.portfolio-budget-card p,
.portfolio-budget-label {
  color: rgba(247, 247, 242, 0.72) !important;
}

.portfolio-challenge {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--line) !important;
  color: var(--text-primary) !important;
}

.portfolio-challenge h3 {
  color: var(--text-primary) !important;
}

.portfolio-challenge p,
.portfolio-challenge strong {
  color: var(--text-secondary) !important;
}

.portfolio-challenge strong {
  color: var(--cyan) !important;
}

.portfolio-stack-row {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--line) !important;
}

.portfolio-stack-row dt {
  color: var(--text-muted) !important;
}

.portfolio-stack-row dd {
  color: var(--text-primary) !important;
}

.portfolio-note {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--line) !important;
  color: var(--text-secondary) !important;
}

/* ============================================================
   MOBILE NAV — fullscreen menu (overrides conflicting rules)
   ============================================================ */
@media (max-width: 900px) {
  .menu-btn {
    display: grid !important;
    place-items: center !important;
    color: var(--text-primary) !important;
    position: relative !important;
    z-index: 220 !important;
  }

  .brand {
    position: relative !important;
    z-index: 220 !important;
  }

  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-height: none !important;
    margin: 0 !important;
    padding:
      calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 16px)
      24px
      calc(28px + env(safe-area-inset-bottom, 0px))
      !important;
    background: #050816 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 210 !important;
  }

  .nav-links.open a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 14px 4px !important;
    font-size: 22px !important;
    font-family: var(--font-display), sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: var(--text-primary) !important;
    opacity: 1 !important;
    border-bottom: 1px solid rgba(247, 247, 242, 0.1) !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .nav-links.open a::after {
    display: none !important;
  }

  .nav-links.open a:hover,
  .nav-links.open a:focus-visible {
    background: rgba(255, 255, 255, 0.04) !important;
    color: #fff !important;
  }

  .nav-links.open .nav-cta {
    margin-top: 20px !important;
    justify-content: center !important;
    min-height: 52px !important;
    padding: 14px 22px !important;
    font-size: 15px !important;
    font-family: var(--font-body), sans-serif !important;
    border: none !important;
    border-radius: 100px !important;
    background: var(--gradient-primary) !important;
    color: #fff !important;
  }
}

@media (min-width: 901px) {
  .menu-btn {
    display: none !important;
  }

  .nav-links {
    display: flex !important;
  }

  .nav-links.open {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }
}
