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

/* ══ ROOT ══════════════════════════════════════════════════ */
:root {
  --bg:      #111111;
  --bg2:     #1a1a1a;
  --white:   #ffffff;
  --dim:     rgba(255,255,255,0.22);
  --mid:     rgba(255,255,255,0.55);
  --faint:   rgba(255,255,255,0.08);
  --border:  rgba(255,255,255,0.1);
  --pill:    rgba(255,255,255,0.10);
  --pillB:   rgba(255,255,255,0.16);
  --radius:  999px;
  --cr:      20px;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg);
  font-family: 'Inter', sans-serif;
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ══ CURSOR ════════════════════════════════════════════════ */
#cur {
  position: fixed; width:10px; height:10px;
  background: white; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width .15s, height .15s;
}
#curR {
  position: fixed; width:36px; height:36px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .22s, height .22s;
}

/* ══ BG 3D CANVAS ══════════════════════════════════════════ */
#bgCanvas {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  width: 100%; height: 100%;
}

/* ══ NAVBAR ════════════════════════════════════════════════ */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:200;
  display: flex; align-items:center; justify-content:space-between;
  padding: 6px 16px;
  transition: background .3s, backdrop-filter .3s;
}
.navbar.scrolled {
  background: rgba(13,13,13,0.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { width:70px; height:70px; display:flex; }

.nav-pill {
  position: absolute; left:50%; transform:translateX(-50%);
  display: flex; align-items:center; gap:1px;
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2px 4px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
}
.nav-pill a {
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: .75rem; font-weight:500;
  color: rgba(255,255,255,.50);
  text-decoration: none; letter-spacing:-.01em;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-pill a:hover { color: white; background: rgba(255,255,255,.07); }
.nav-pill a.active {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-weight: 600;
}

.nav-hamburger {
  display: flex; flex-direction:column; gap:5px;
  cursor: pointer; padding:4px;
}
.nav-hamburger span {
  display:block; width:26px; height:2px;
  background: white; border-radius:2px;
  transition: all .3s;
}

@media(max-width:700px) {
  .nav-pill { display:none; }
}

/* ══ HERO ══════════════════════════════════════════════════ */
.hero {
  position: relative; z-index:10;
  height: 100vh;
  display: flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align: center;
  padding: 70px 44px 30px;
  overflow: hidden;
  background: #111111;
}
.hero-glow {
  position: absolute; top:36%; left:50%;
  transform: translate(-50%,-50%);
  width: 800px; height:450px;
  background: radial-gradient(ellipse, rgba(255,255,255,.05) 0%, transparent 62%);
  pointer-events: none;
}
.sdot {
  position: absolute; width:3px; height:3px;
  background: rgba(255,255,255,.4);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items:center;
  padding: 7px 20px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  font-size: .68rem; letter-spacing:.18em;
  text-transform: uppercase; font-weight:500;
  color: rgba(255,255,255,.65);
  margin-bottom: 14px;
  animation: fadeUp .7s ease .1s both;
}
.hero-h1 {
  font-size: clamp(2.4rem,5vw,5.5rem);
  font-weight: 800; line-height:1.02; letter-spacing:-.032em;
  max-width: 880px; margin-bottom:10px;
  animation: fadeUp .8s ease .2s both;
}
.wslot {
  display: inline-block; overflow:hidden;
  vertical-align: bottom; height:1.02em;
}
.wreel {
  display: flex; flex-direction:column;
  will-change: transform;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.wreel span { display:block; height:1.02em; line-height:1.02; }

.hero-divider {
  display: flex; gap:6px; justify-content:center;
  margin: 8px 0 10px;
  animation: fadeUp .8s ease .28s both;
}
.hero-divider span {
  display:block; height:2px; border-radius:2px;
  background: rgba(255,255,255,.25);
}

.hero-sub {
  font-size: 1rem; line-height:1.68;
  color: rgba(255,255,255,.48);
  max-width: 440px; margin-bottom:20px;
  animation: fadeUp .8s ease .35s both;
}
.hero-btns {
  display: flex; gap:12px; margin-bottom:0;
  animation: fadeUp .8s ease .44s both;
}
.btn-w {
  padding: 14px 32px;
  background: white; color:#111;
  border: none; border-radius:var(--radius);
  font-family:'Inter',sans-serif;
  font-size: .9rem; font-weight:600;
  cursor: pointer; transition:all .25s;
}
.btn-w:hover { background:rgba(255,255,255,.88); transform:scale(1.03); }
.btn-dark {
  padding: 14px 32px;
  background: rgba(255,255,255,.14); color:white;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  font-family:'Inter',sans-serif;
  font-size: .9rem; font-weight:500;
  cursor: pointer; transition:all .25s;
}
.btn-dark:hover { background:rgba(255,255,255,.22); transform:scale(1.03); }

/* ══ LOGOS ══════════════════════════════════════════════════ */
.logos-wrap { position:relative; z-index:10; padding-bottom:60px; }
.logos-lbl {
  text-align:center;
  font-size: .6rem; letter-spacing:.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  margin-bottom: 26px;
}
.logos-mask {
  overflow: hidden;
  mask-image: linear-gradient(to right,transparent,black 12%,black 88%,transparent);
  -webkit-mask-image: linear-gradient(to right,transparent,black 12%,black 88%,transparent);
}
.logos-track {
  display: flex; gap:72px;
  animation: lScroll 24s linear infinite;
  width: max-content;
}
.logo-item {
  font-size: .98rem; font-weight:700;
  color: rgba(255,255,255,.28);
  flex-shrink:0; white-space:nowrap;
  letter-spacing: -.01em; transition:color .3s;
}
.logo-item:hover { color:rgba(255,255,255,.65); }
@keyframes lScroll {
  from { transform:translateX(0) }
  to   { transform:translateX(-50%) }
}

/* ══ ABOUT ══════════════════════════════════════════════════ */
.about-section {
  position: relative; z-index:10;
  padding: 100px 44px 130px;
}
.about-logo-mark {
  width:72px; height:72px;
  display:grid; grid-template-columns:1fr 1fr;
  gap:6px; margin-bottom:44px;
}
.alm-sq { background:rgba(255,255,255,.9); border-radius:6px; }
.alm-ci { background:rgba(255,255,255,.9); border-radius:50%; }

.about-text {
  font-size: clamp(2.2rem,4.8vw,5rem);
  font-weight: 700; line-height:1.15; letter-spacing:-.028em;
  max-width: 1060px;
}
.about-text .dim { color:rgba(255,255,255,.22); }
.about-text .mid { color:rgba(255,255,255,.48); }
.about-text .brt { color:var(--white); }
.about-ctas { display:flex; gap:14px; margin-top:56px; }

/* ══ SECTION HEADERS ══════════════════════════════════════ */
.sec-hdr {
  display: flex; align-items:flex-end; justify-content:space-between;
  gap:40px; margin-bottom:52px;
}
.sec-tag {
  display: inline-flex; padding:6px 16px;
  background: var(--pill); border:1px solid var(--pillB);
  border-radius: var(--radius);
  font-size: .6rem; letter-spacing:.2em;
  text-transform: uppercase; font-weight:600;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.sec-title {
  font-size: clamp(2.4rem,5vw,5rem);
  font-weight: 700; line-height:.98; letter-spacing:-.028em;
}
.sec-title .dim { color:rgba(255,255,255,.28); }

/* ══ FEATURED PROJECTS ══════════════════════════════════════ */
.projects-section {
  position: relative; z-index:10;
  padding: 0 44px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; margin-top:24px;
}
.proj-card {
  background: var(--bg2);
  border-radius: var(--cr);
  overflow: hidden; position:relative;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  min-height: 380px;
  display: flex; flex-direction:column; justify-content:flex-end;
}
.proj-card:hover { transform:scale(1.018); }
.proj-screen {
  position: absolute; inset:0;
  display: flex; align-items:center; justify-content:center;
  padding: 30px;
}
.browser-mock {
  width:100%; height:100%; background:#1e1e1e;
  border-radius:10px; overflow:hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.browser-bar {
  background:#2a2a2a; padding:10px 14px;
  display:flex; align-items:center; gap:6px;
}
.b-dot { width:9px; height:9px; border-radius:50%; }
.browser-content { height:80%; overflow:hidden; }
.proj-overlay {
  position: absolute; bottom:12px; left:12px; right:0;
  padding:24px 28px;
  background: linear-gradient(transparent,rgba(0,0,0,.85));
}
.proj-cat {
  font-size:.6rem; letter-spacing:.2em; text-transform:uppercase;
  font-weight:600; color:rgba(255,255,255,.5); margin-bottom:6px;
}
.proj-name {
  font-size:1.5rem; font-weight:700; letter-spacing:-.02em;
}
.view-btn {
  position: absolute; top:50%; left:50%;
  transform:translate(-50%,-50%) scale(0);
  width:80px; height:80px; border-radius:50%;
  background: black; color:white; border:none;
  font-family:'Inter',sans-serif;
  font-size:.68rem; font-weight:600;
  cursor:pointer; transition:transform .3s cubic-bezier(.16,1,.3,1);
  display:flex; align-items:center; justify-content:center;
  text-align:center; line-height:1.3;
}
.proj-card:hover .view-btn { transform:translate(-50%,-50%) scale(1); }

/* ══ SERVICES — STICKY SCROLL ═══════════════════════════════ */
.services-section {
  position: relative; z-index: 10;
}
.sol-sticky-hdr {
  padding: 0 44px 60px;
}
.sol-hdr-inner {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
}
.sc-sticky-wrap {
  position: relative;
}
.sc-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: calc(100% - 88px);
  margin: 0 44px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sc-sticky:nth-child(2) { margin-bottom: 0; }
.sc-sticky:nth-child(3) { margin-bottom: 0; }

.sc-green  { background: #162b1e; z-index: 1; }
.sc-purple { background: #1d1030; z-index: 2; }
.sc-navy   { background: #0e1c38; z-index: 3; }

.sc-sticky-icon {
  position: absolute;
  top: 50%; right: 60px;
  transform: translateY(-50%);
  width: 240px; height: 240px;
  flex-shrink: 0;
}
.sc-sticky-icon svg { width: 100%; height: 100%; }

.sc-video-wrap {
  position: absolute;
  top: 50%;
  right: 2vw;
  transform: translateY(-50%);
  width: 50vw;
  height: 58vh;
  flex-shrink: 0;
  z-index: 2;
  max-width: none;
  max-height: none;
  min-width: 280px;
  min-height: 180px;
}
.sc-video-inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(158,234,170,0.2);
  background: rgba(10,20,14,0.8);
  box-shadow: 0 0 60px rgba(158,234,170,0.08), 0 30px 60px rgba(0,0,0,0.5);
}
.sc-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}
.sc-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, #0d1f14, #091508);
  opacity: 1;
  transition: opacity .5s ease;
  cursor: pointer;
  z-index: 2;
}
.sc-video-play-icon { opacity: 0.7; transition: opacity .25s; }
.sc-video-placeholder:hover .sc-video-play-icon { opacity: 1; }
.sc-video-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(158,234,170,0.4);
  font-family: 'Inter', sans-serif;
}
.sc-video-inner::before,
.sc-video-inner::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: rgba(158,234,170,0.35);
  border-style: solid;
  z-index: 3;
}
.sc-video-inner::before {
  top: 10px; left: 10px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}
.sc-video-inner::after {
  bottom: 10px; right: 10px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}
@media (max-width: 900px) {
  .sc-video-wrap {
    position: relative;
    top: auto; right: auto;
    transform: none;
    width: 100%; height: 200px;
    margin-bottom: 24px;
  }
}

.sc-sticky-content {
  position: relative; z-index: 3;
  padding: 0 40px 52px 56px;
  width: 42%;
  min-width: 240px;
  max-width: 460px;
  flex-shrink: 0;
}

.sc-sticky-name {
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 700; letter-spacing: -.025em;
  margin-bottom: 14px; line-height: 1;
}
.sc-green  .sc-sticky-name { color: #9eeaaa; }
.sc-purple .sc-sticky-name { color: #d8aaff; }
.sc-navy   .sc-sticky-name { color: #72ccf5; }

.sc-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.sc-pill {
  padding: 6px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: .72rem; font-weight: 500;
  color: rgba(255,255,255,.6);
}

.sc-desc {
  font-size: .95rem; line-height: 1.68;
  color: rgba(255,255,255,.42);
  margin-bottom: 24px; max-width: 100%;
}

.sc-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  font-size: .82rem; font-weight: 600;
  cursor: pointer; border: none;
  font-family: 'Inter', sans-serif;
  transition: all .25s;
}
.sc-cta-green  { background: #9eeaaa; color: #061408; }
.sc-cta-purple { background: #d8aaff; color: #160825; }
.sc-cta-navy   { background: #72ccf5; color: #030e1a; }
.sc-cta:hover  { filter: brightness(1.12); transform: scale(1.04); }

.sc-sticky-wrap::after {
  content: '';
  display: block;
  height: 80px;
}

@media (max-width: 900px) {
  .sc-sticky {
    position: relative; top: auto;
    height: auto; min-height: 520px;
    width: calc(100% - 32px); margin: 0 16px 14px;
  }
  .sc-sticky-icon {
    width: 140px; height: 140px;
    right: 20px; top: 30px;
    transform: none;
  }
  .sc-sticky-content { padding: 0 24px 36px; }
  .sol-sticky-hdr { padding: 0 16px 40px; }
  .sol-hdr-inner { flex-direction: column; align-items: flex-start; }
}

/* ══ VALUES / PILLARS ═══════════════════════════════════════ */
.values-section {
  position: relative; z-index:10;
  padding: 0 44px 120px;
}
.values-intro {
  font-size: clamp(2rem,4vw,4rem);
  font-weight:700; line-height:1.18; letter-spacing:-.025em;
  max-width:900px; margin-bottom:72px;
}
.values-intro .dim { color:rgba(255,255,255,.25); }
.values-intro .mid { color:rgba(255,255,255,.52); }
.values-intro .brt { color:white; }
.values-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:48px 80px;
}
.value-icon { font-size:1.4rem; margin-bottom:16px; display:block; }
.value-title {
  font-size:1.4rem; font-weight:700;
  letter-spacing:-.02em; margin-bottom:12px;
  line-height:1.1;
}
.value-desc {
  font-size:.84rem; line-height:1.78;
  color:rgba(255,255,255,.42);
}

/* ══ HOW WE WORK ════════════════════════════════════════════ */
.process-section {
  position: relative; z-index:10;
  padding: 0 44px 120px;
}
.process-cards {
  display:grid; grid-template-columns:1fr 1fr;
  gap:14px; margin-top:24px;
}
.process-card {
  background: rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:var(--cr);
  padding:40px;
  position:relative; overflow:hidden;
  transition:background .3s;
  cursor:pointer;
}
.process-card:hover { background:rgba(255,255,255,.07); }
.pc-num {
  font-size:.72rem; font-weight:600;
  color:rgba(255,255,255,.28); letter-spacing:.12em;
  margin-bottom:28px;
}
.pc-icon-wrap {
  width:120px; height:120px;
  border-radius:18px; overflow:hidden;
  margin-bottom:24px;
}
.pc-title {
  font-size:1.5rem; font-weight:700;
  letter-spacing:-.02em; margin-bottom:12px;
  line-height:1.1;
}
.pc-desc {
  font-size:.82rem; line-height:1.78;
  color:rgba(255,255,255,.4);
  margin-bottom:22px;
}
.pc-days {
  display:inline-flex; padding:5px 12px;
  border:1px solid var(--border); border-radius:var(--radius);
  font-size:.62rem; font-weight:600; letter-spacing:.12em;
  color:rgba(255,255,255,.4); text-transform:uppercase;
}
.pc-arrow {
  position:absolute; top:24px; right:24px;
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  font-size:.9rem;
  transition:background .2s;
}
.process-card:hover .pc-arrow { background:rgba(255,255,255,.18); }

/* ══ STATS ══════════════════════════════════════════════════ */
.stats-section {
  position:relative; z-index:10;
  padding:0 44px 120px;
}
.stats-grid {
  display:grid; grid-template-columns:1fr 1fr;
  gap:0;
  border-top:1px solid var(--border);
  border-left:1px solid var(--border);
}
.stat-cell {
  padding:52px 44px 48px;
  border-bottom:1px solid var(--border);
  border-right:1px solid var(--border);
}
.stat-dot {
  width:10px; height:10px; border-radius:50%;
  display:inline-block; margin-bottom:18px;
}
.stat-num {
  font-size:clamp(4rem,8vw,8.5rem);
  font-weight:700; line-height:.88; letter-spacing:-.04em;
  margin-bottom:14px;
}
.stat-lbl {
  font-size:1rem; color:rgba(255,255,255,.42); font-weight:400;
}

/* ══ TESTIMONIALS ═══════════════════════════════════════════ */
.testi-section {
  position:relative; z-index:10;
  padding:0 44px 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testi-grid {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  gap:14px; margin-top:24px;
}
.testi-card {
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:var(--cr);
  padding:32px;
}
.testi-stars { color:#f4c542; font-size:.8rem; margin-bottom:16px; }
.testi-text {
  font-size:.88rem; line-height:1.72;
  color:rgba(255,255,255,.55);
  margin-bottom:24px; font-style:italic;
}
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar {
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.12);
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem; font-weight:700; color:white;
}
.testi-name { font-size:.84rem; font-weight:600; }
.testi-role { font-size:.72rem; color:rgba(255,255,255,.4); }

/* ══ CTA SECTION ════════════════════════════════════════════ */
.cta-section {
  position:relative; z-index:10;
  padding:0 44px 100px;
  text-align:center;
}
.cta-badge {
  display:inline-flex; padding:6px 16px;
  background:var(--pill); border:1px solid var(--pillB);
  border-radius:var(--radius);
  font-size:.62rem; letter-spacing:.18em;
  text-transform:uppercase; font-weight:500;
  color:rgba(255,255,255,.4);
  margin-bottom:24px;
}
.cta-title {
  font-size:clamp(3rem,7vw,7rem);
  font-weight:700; line-height:1.0; letter-spacing:-.035em;
  margin-bottom:40px;
}
.cta-title .dim { color:rgba(255,255,255,.28); }
.cta-btns { display:flex; gap:12px; justify-content:center; margin-bottom:64px; }

.contact-form-wrap {
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:var(--cr);
  padding:52px; max-width:760px; margin:0 auto;
  text-align:left;
}
.cf-section-title {
  font-size:.82rem; font-weight:600;
  color:rgba(255,255,255,.5);
  margin-bottom:24px; letter-spacing:.05em;
}
.cf-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.cf-group { margin-bottom:14px; }
.cf-group input,
.cf-group textarea,
.cf-group select {
  width:100%; padding:14px 18px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:10px;
  color:white; font-family:'Inter',sans-serif; font-size:.88rem;
  outline:none; transition:border .2s;
  appearance:none;
}
.cf-group input::placeholder,
.cf-group textarea::placeholder { color:rgba(255,255,255,.3); }
.cf-group input:focus,
.cf-group textarea:focus { border-color:rgba(255,255,255,.32); }
.cf-group textarea { resize:vertical; min-height:100px; }
.cf-group select { color:rgba(255,255,255,.6); }
.cf-checks { margin:20px 0 24px; }
.cf-check-title {
  font-size:.78rem; color:rgba(255,255,255,.45);
  margin-bottom:12px;
}
.cf-check {
  display:flex; align-items:center; gap:12px;
  margin-bottom:10px;
  font-size:.84rem; color:rgba(255,255,255,.55);
  cursor:pointer;
}
.cf-check input { width:16px; height:16px; accent-color:white; }
.cf-submit {
  width:100%; padding:16px;
  background:white; color:#111;
  border:none; border-radius:10px;
  font-family:'Inter',sans-serif;
  font-size:.95rem; font-weight:600;
  cursor:pointer; transition:background .25s;
}
.cf-submit:hover { background:rgba(255,255,255,.88); }

/* ══ FOOTER ════════════════════════════════════════════════ */
footer {
  position:relative; z-index:10;
  padding:72px 44px 40px;
  border-top:1px solid var(--border);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-top {
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1fr 1fr;
  gap:48px; margin-bottom:56px;
}
.footer-badge {
  display:inline-flex; padding:5px 14px;
  background:var(--pill); border:1px solid var(--pillB);
  border-radius:var(--radius);
  font-size:.6rem; letter-spacing:.15em;
  text-transform:uppercase; font-weight:500;
  color:rgba(255,255,255,.35); margin-bottom:16px;
}
.footer-desc {
  font-size:.82rem; line-height:1.72;
  color:rgba(255,255,255,.36); max-width:260px;
}
.footer-col h4 {
  font-size:.65rem; letter-spacing:.2em;
  text-transform:uppercase; font-weight:600;
  color:rgba(255,255,255,.26); margin-bottom:20px;
}
.footer-link {
  display:block; margin-bottom:11px;
  font-size:.86rem; color:rgba(255,255,255,.48);
  text-decoration:none; transition:color .2s;
}
.footer-link:hover { color:white; }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  padding-top:24px; border-top:1px solid var(--border);
  font-size:.74rem; color:rgba(255,255,255,.26);
}

/* ══ STATUS BAR ════════════════════════════════════════════ */
.status-bar {
  position:fixed; bottom:0; left:0; right:0; z-index:300;
  display:flex; justify-content:space-between; align-items:center;
  padding:7px 44px;
  background:rgba(10,10,10,.92);
  border-top:1px solid var(--border);
  backdrop-filter:blur(12px);
}
.s-item {
  font-size:.55rem; letter-spacing:.2em;
  color:rgba(255,255,255,.26); font-weight:500;
  text-transform:uppercase;
}
.s-dot {
  display:inline-block; width:5px; height:5px;
  background:#4ade80; border-radius:50%;
  margin-right:7px;
  animation:blink 2s ease-in-out infinite;
}

/* ══ ANIMATIONS ════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px) }
  to   { opacity:1; transform:translateY(0) }
}
@keyframes blink {
  0%,100% { opacity:.32 }
  50%     { opacity:1 }
}

.rv {
  opacity:0; transform:translateY(30px);
  transition:opacity .85s ease,transform .85s cubic-bezier(.16,1,.3,1);
}
.rv.in { opacity:1; transform:none; }
.d1 { transition-delay:.08s; }
.d2 { transition-delay:.16s; }
.d3 { transition-delay:.24s; }
.d4 { transition-delay:.32s; }

/* ══ RESPONSIVE ════════════════════════════════════════════ */
@media(max-width:1000px) {
  .navbar { padding:18px 20px; }
  .nav-pill { display:none; }
  .hero,.about-section,.projects-section,.services-section,
  .values-section,.process-section,.stats-section,
  .testi-section,.cta-section { padding-left:20px; padding-right:20px; }
  .hero-h1 { font-size:clamp(2.4rem,9vw,4rem); }
  .sc { flex-direction:column-reverse; min-height:auto; padding:32px 24px; }
  .sc-icon { margin-left:0; margin-bottom:24px; width:130px; height:130px; }
  .projects-grid,.process-cards,.testi-grid,.values-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; gap:28px; }
  footer { padding:56px 20px 36px; }
  .status-bar { padding:7px 20px; }
  .contact-form-wrap { padding:32px 20px; }
  .cf-row { grid-template-columns:1fr; }
}

/* ════════════════════════════════════════════════════════════
   SUB-PAGE SHARED STYLES
   ════════════════════════════════════════════════════════════ */

.sub-hero {
  position:relative; z-index:10;
  min-height:72vh;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  padding:130px 44px 60px;
}
.sub-hero-glow {
  position:absolute; top:40%; left:50%;
  transform:translate(-50%,-50%);
  width:700px; height:380px;
  background:radial-gradient(ellipse, rgba(255,255,255,.05) 0%, transparent 65%);
  pointer-events:none;
}
.sub-badge {
  display:inline-flex; align-items:center;
  padding:7px 20px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  font-size:.65rem; letter-spacing:.2em;
  text-transform:uppercase; font-weight:500;
  color:rgba(255,255,255,.55);
  margin-bottom:26px;
  animation:fadeUp .6s ease both;
}
.sub-hero h1 {
  font-size:clamp(2.8rem,6.5vw,6.8rem);
  font-weight:800; line-height:1.02; letter-spacing:-.032em;
  max-width:840px; margin-bottom:20px;
  animation:fadeUp .7s ease .1s both;
}
.sub-hero p {
  font-size:1rem; line-height:1.72;
  color:rgba(255,255,255,.44);
  max-width:500px; margin-bottom:36px;
  animation:fadeUp .7s ease .2s both;
}
.sub-hero-btns {
  display:flex; gap:12px;
  animation:fadeUp .7s ease .28s both;
}

.page-green  { --acc:#7dffaa; --acc-bg:#162b1e; }
.page-purple { --acc:#c084fc; --acc-bg:#1d1030; }
.page-cyan   { --acc:#67e8f9; --acc-bg:#0e1c38; }

.sub-badge.g  { border-color:rgba(125,255,170,.3); color:#7dffaa; background:rgba(125,255,170,.08); }
.sub-badge.p  { border-color:rgba(192,132,252,.3); color:#c084fc; background:rgba(192,132,252,.08); }
.sub-badge.c  { border-color:rgba(103,232,249,.3); color:#67e8f9; background:rgba(103,232,249,.08); }

.sub-section {
  position:relative; z-index:10;
  padding:0 44px 90px;
}
.sub-section-title {
  font-size:clamp(1.6rem,3vw,2.8rem);
  font-weight:700; letter-spacing:-.024em; line-height:1.1;
  margin-bottom:8px;
}
.sub-section-sub {
  font-size:.9rem; color:rgba(255,255,255,.42); margin-bottom:44px;
}
.sub-label {
  display:inline-flex; padding:5px 14px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  font-size:.6rem; letter-spacing:.18em; text-transform:uppercase; font-weight:600;
  color:rgba(255,255,255,.38); margin-bottom:16px;
}

.video-wrap {
  position:relative; width:100%; padding-top:52.5%;
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1);
  border-radius:24px; overflow:hidden; cursor:pointer;
}
.video-inner {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:20px;
}
.video-grid {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:52px 52px;
}
.video-orb {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:260px; height:260px;
  border-radius:50%;
  pointer-events:none;
}
.video-play {
  position:relative; z-index:3;
  width:82px; height:82px; border-radius:50%;
  background:white; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 50px rgba(0,0,0,.55);
  transition:transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.video-play svg { width:24px; height:24px; margin-left:4px; }
.video-play:hover { transform:scale(1.14); box-shadow:0 18px 60px rgba(0,0,0,.7); }
.video-meta {
  position:relative; z-index:3; text-align:center;
}
.video-meta strong { font-size:1.1rem; font-weight:700; display:block; }
.video-meta span   { font-size:.78rem; color:rgba(255,255,255,.4); }
.video-duration {
  position:absolute; bottom:20px; right:20px; z-index:3;
  background:rgba(0,0,0,.6); backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.12); border-radius:8px;
  padding:5px 12px; font-size:.75rem; font-weight:600;
}
.video-chapters {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:12px; margin-top:16px;
}
.chapter-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09);
  border-radius:14px; padding:18px 20px;
  cursor:pointer; transition:all .25s;
  display:flex; align-items:center; gap:14px;
}
.chapter-card:hover {
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.2);
  transform:translateY(-2px);
}
.ch-time {
  font-size:.68rem; font-weight:700; letter-spacing:.08em;
  color:rgba(255,255,255,.35); white-space:nowrap;
}
.ch-title { font-size:.84rem; font-weight:600; letter-spacing:-.01em; }
.ch-desc  { font-size:.72rem; color:rgba(255,255,255,.38); margin-top:2px; }

.feat-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
}
.feat-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09);
  border-radius:20px; padding:30px 28px;
  cursor:pointer; position:relative; overflow:hidden;
  transition:background .3s,transform .35s cubic-bezier(.16,1,.3,1),border-color .3s;
}
.feat-card:hover {
  background:rgba(255,255,255,.08);
  transform:translateY(-5px);
  border-color:rgba(255,255,255,.2);
}
.feat-card::after {
  content:'';
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.04),transparent);
  opacity:0; transition:opacity .3s;
}
.feat-card:hover::after { opacity:1; }
.feat-icon-wrap {
  width:50px; height:50px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.35rem; margin-bottom:18px;
}
.feat-title {
  font-size:1rem; font-weight:700; letter-spacing:-.015em; margin-bottom:9px;
}
.feat-desc {
  font-size:.8rem; line-height:1.7; color:rgba(255,255,255,.4);
}
.feat-arrow {
  position:absolute; top:22px; right:22px;
  width:30px; height:30px; border-radius:50%;
  background:rgba(255,255,255,.07);
  display:flex; align-items:center; justify-content:center;
  font-size:.75rem;
  transition:background .2s, transform .3s;
}
.feat-card:hover .feat-arrow { background:rgba(255,255,255,.18); transform:translate(2px,-2px); }

.steps-row {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  border:1px solid rgba(255,255,255,.1); border-radius:20px; overflow:hidden;
}
.step-cell {
  padding:34px 26px;
  border-right:1px solid rgba(255,255,255,.1);
  transition:background .3s; cursor:default;
}
.step-cell:last-child { border-right:none; }
.step-cell:hover { background:rgba(255,255,255,.04); }
.step-num { font-size:.62rem; font-weight:700; letter-spacing:.18em; color:rgba(255,255,255,.22); margin-bottom:18px; text-transform:uppercase; }
.step-ico  { font-size:1.5rem; display:block; margin-bottom:14px; }
.step-ttl  { font-size:.96rem; font-weight:700; letter-spacing:-.012em; margin-bottom:8px; }
.step-dsc  { font-size:.76rem; line-height:1.65; color:rgba(255,255,255,.36); }

.gallery-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  grid-template-rows:auto;
  gap:14px;
}
.gal-card {
  border-radius:20px; overflow:hidden;
  position:relative; cursor:pointer;
  transition:transform .4s cubic-bezier(.16,1,.3,1);
  background:rgba(255,255,255,.05);
}
.gal-card:hover { transform:scale(1.022); }
.gal-card.tall { grid-row:span 2; }
.gal-visual {
  width:100%; height:100%; min-height:220px;
  display:flex; align-items:center; justify-content:center;
  font-size:3.5rem; padding:40px;
}
.gal-overlay {
  position:absolute; inset:0;
  background:linear-gradient(transparent 45%,rgba(0,0,0,.82));
  display:flex; flex-direction:column;
  justify-content:flex-end; padding:24px 26px;
  opacity:0; transition:opacity .3s;
}
.gal-card:hover .gal-overlay { opacity:1; }
.gal-tag   { font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; font-weight:600; color:rgba(255,255,255,.5); margin-bottom:5px; }
.gal-title { font-size:1rem; font-weight:700; letter-spacing:-.012em; }

.tip-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
}
.tip-card {
  background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09);
  border-radius:20px; padding:30px 28px;
  display:flex; gap:20px; cursor:pointer;
  transition:all .3s;
}
.tip-card:hover {
  background:rgba(255,255,255,.08);
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.18);
}
.tip-ico-wrap {
  width:52px; height:52px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; flex-shrink:0;
}
.tip-body h3  { font-size:.96rem; font-weight:700; letter-spacing:-.01em; margin-bottom:7px; }
.tip-body p   { font-size:.8rem; line-height:1.68; color:rgba(255,255,255,.4); }

.stat-bar {
  display:grid; grid-template-columns:repeat(4,1fr);
  border:1px solid rgba(255,255,255,.1); border-radius:20px; overflow:hidden;
  margin-bottom:90px;
}
.stat-bar-cell {
  padding:32px 24px; border-right:1px solid rgba(255,255,255,.1);
  text-align:center; transition:background .3s;
}
.stat-bar-cell:last-child { border-right:none; }
.stat-bar-cell:hover { background:rgba(255,255,255,.04); }
.stat-bar-num { font-size:2.2rem; font-weight:800; letter-spacing:-.03em; margin-bottom:4px; }
.stat-bar-lbl { font-size:.73rem; color:rgba(255,255,255,.36); }

.cta-banner {
  background:white; border-radius:24px;
  padding:56px 60px;
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  margin-bottom:90px;
}
.cta-banner h2 { font-size:clamp(1.6rem,2.8vw,2.6rem); font-weight:800; letter-spacing:-.025em; color:#111; line-height:1.1; }
.cta-banner p  { font-size:.88rem; color:rgba(0,0,0,.5); margin-top:8px; }
.cta-banner-btns { display:flex; gap:12px; flex-shrink:0; }
.btn-blk { padding:13px 26px; border-radius:999px; background:#111; color:white; border:none; font-family:'Inter',sans-serif; font-size:.86rem; font-weight:600; cursor:pointer; transition:all .25s; }
.btn-blk:hover { background:#333; transform:scale(1.03); }
.btn-bdr { padding:13px 26px; border-radius:999px; background:transparent; color:#111; border:1.5px solid rgba(0,0,0,.18); font-family:'Inter',sans-serif; font-size:.86rem; font-weight:500; cursor:pointer; transition:all .25s; }
.btn-bdr:hover { border-color:#111; transform:scale(1.03); }

.faq-list { border-top:1px solid rgba(255,255,255,.1); }
.faq-item { border-bottom:1px solid rgba(255,255,255,.1); }
.faq-q {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 0; cursor:pointer; gap:20px;
  font-size:.96rem; font-weight:600; letter-spacing:-.01em;
  user-select:none; transition:color .2s;
}
.faq-q:hover { color:rgba(255,255,255,.7); }
.faq-plus {
  width:28px; height:28px; border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; font-size:1rem; line-height:1;
  transition:transform .35s,background .2s;
}
.faq-item.open .faq-plus { transform:rotate(45deg); background:rgba(255,255,255,.16); }
.faq-a {
  overflow:hidden; max-height:0;
  transition:max-height .4s cubic-bezier(.16,1,.3,1),padding .3s;
  font-size:.86rem; line-height:1.72; color:rgba(255,255,255,.44);
}
.faq-item.open .faq-a { max-height:220px; padding-bottom:22px; }

@media(max-width:900px){
  .sub-hero { padding:120px 20px 40px; }
  .sub-section { padding-left:20px; padding-right:20px; padding-bottom:60px; }
  .feat-grid  { grid-template-columns:1fr 1fr; }
  .steps-row  { grid-template-columns:1fr 1fr; }
  .tip-grid   { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr; }
  .stat-bar   { grid-template-columns:1fr 1fr; }
  .cta-banner { flex-direction:column; align-items:flex-start; padding:36px 28px; margin-bottom:60px; }
  .video-chapters { grid-template-columns:1fr; }
}
@media(max-width:600px){
  .feat-grid { grid-template-columns:1fr; }
  .steps-row { grid-template-columns:1fr; }
  .stat-bar  { grid-template-columns:1fr 1fr; }
}

/* ── PURPLE VIDEO (Interior Design) ── */
.sc-video-wrap--purple .sc-video-inner {
  border-color: rgba(216,170,255,0.2);
  box-shadow: 0 0 60px rgba(216,170,255,0.08), 0 30px 60px rgba(0,0,0,0.5);
  background: rgba(16,10,24,0.8);
}
.sc-video-wrap--purple .sc-video-placeholder {
  background: linear-gradient(135deg, #1a0d2e, #0e0820);
}
.sc-video-inner--purple::before,
.sc-video-inner--purple::after {
  border-color: rgba(216,170,255,0.35);
}
.sc-video-label--purple {
  color: rgba(216,170,255,0.45);
}

/* ── NAVY VIDEO (Virtual Try-On) ── */
.sc-video-wrap--navy .sc-video-inner {
  border-color: rgba(114,204,245,0.2);
  box-shadow: 0 0 60px rgba(114,204,245,0.08), 0 30px 60px rgba(0,0,0,0.5);
  background: rgba(8,14,24,0.8);
}
.sc-video-wrap--navy .sc-video-placeholder {
  background: linear-gradient(135deg, #0a1828, #060e18);
}
.sc-video-inner--navy::before,
.sc-video-inner--navy::after {
  border-color: rgba(114,204,245,0.35);
}
.sc-video-label--navy {
  color: rgba(114,204,245,0.45);
}

/* ══════════════════════════════════════════════════════════
   LOGO SWAP
══════════════════════════════════════════════════════════ */
.logo-light { display: none !important; }
.logo-dark  { display: block !important; }
body.light-mode .logo-dark  { display: none !important; }
body.light-mode .logo-light { display: block !important; }

/* ══════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
══════════════════════════════════════════════════════════ */
.theme-toggle {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 7px 14px;
  cursor: pointer; transition: all .3s; flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.14); }
body.light-mode .theme-toggle { background: rgba(0,0,0,0.07); border-color: rgba(0,0,0,0.14); }
body.light-mode .theme-toggle:hover { background: rgba(0,0,0,0.12); }
.theme-toggle-track {
  width: 32px; height: 18px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px; position: relative; flex-shrink: 0;
}
body.light-mode .theme-toggle-track { background: rgba(0,0,0,0.15); }
.theme-toggle-thumb {
  position: absolute; top: 3px; left: 3px;
  width: 12px; height: 12px; background: white; border-radius: 50%;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
body.light-mode .theme-toggle-thumb { transform: translateX(14px); background: #111; }
.theme-toggle-icon { color: rgba(255,255,255,0.6); display: flex; align-items: center; transition: opacity .3s; }
body.light-mode .theme-toggle-icon { color: rgba(0,0,0,0.5); }
.theme-toggle-sun  { opacity: 0.5; }
.theme-toggle-moon { opacity: 1; }
body.light-mode .theme-toggle-sun  { opacity: 1; }
body.light-mode .theme-toggle-moon { opacity: 0.4; }

/* ══════════════════════════════════════════════════════════
   FULL LIGHT MODE — ALL SECTIONS
══════════════════════════════════════════════════════════ */
body.light-mode {
  background: #f4f4f2;
  color: #111111;
}

/* Canvas — FIXED: opacity:1 so Three.js models are fully visible */
body.light-mode #bgCanvas { filter: none; opacity: 1; }

body.light-mode #cur  { background: #111; }
body.light-mode #curR { border-color: rgba(0,0,0,0.35); }

body.light-mode .navbar { background: rgba(244,244,242,0.92); border-bottom: 1px solid rgba(0,0,0,0.1); }
body.light-mode .navbar.scrolled { background: rgba(244,244,242,0.96); border-bottom: 1px solid rgba(0,0,0,0.1); }
body.light-mode .nav-pill { background: rgba(255,255,255,0.9); border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
body.light-mode .nav-pill a { color: rgba(0,0,0,0.5); }
body.light-mode .nav-pill a:hover { color: #111; background: rgba(0,0,0,0.05); }
body.light-mode .nav-pill a.active { background: rgba(0,0,0,0.08); color: #111; }

body.light-mode .hero { background: #f4f4f2; }
body.light-mode .hero-glow { background: radial-gradient(ellipse, rgba(0,0,0,.04) 0%, transparent 62%); }
body.light-mode .hero-badge { background: rgba(0,0,0,.07); border-color: rgba(0,0,0,.15); color: rgba(0,0,0,.6); }
body.light-mode .hero-h1 { color: #111111; }
body.light-mode .hero-sub { color: rgba(0,0,0,.5); }
body.light-mode .hero-divider span { background: rgba(0,0,0,.2); }
body.light-mode .wreel span { color: #111111; }
body.light-mode .btn-dark { background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.18); color: #111; }

body.light-mode .logos-wrap { background: #f4f4f2; }
body.light-mode .logos-lbl { color: rgba(0,0,0,.3); }
body.light-mode .logo-item { color: rgba(0,0,0,.28); }
body.light-mode .logo-item:hover { color: rgba(0,0,0,.65); }

body.light-mode .sec-tag { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.12); color: rgba(0,0,0,.45); }
body.light-mode .sec-title { color: #111; }
body.light-mode .sec-title .dim { color: rgba(0,0,0,.28); }

body.light-mode .proj-card { background: #e2e2df; }
body.light-mode .proj-overlay { background: linear-gradient(transparent, #e2e2df) !important; }
body.light-mode .proj-cat  { color: rgba(0,0,0,0.5) !important; }
body.light-mode .proj-name { color: #111111 !important; }
body.light-mode .browser-mock { background: #d8d8d5 !important; }
body.light-mode .browser-bar  { background: #c8c8c5 !important; }

body.light-mode .sc-green  { background: #d6f0db; }
body.light-mode .sc-purple { background: #e8d8f5; }
body.light-mode .sc-navy   { background: #cce4f0; }
body.light-mode .sc-green  .sc-sticky-name { color: #1a6630; }
body.light-mode .sc-purple .sc-sticky-name { color: #6b2fa0; }
body.light-mode .sc-navy   .sc-sticky-name { color: #1264a3; }
body.light-mode .sc-pill   { border-color: rgba(0,0,0,.18); color: rgba(0,0,0,.6); }
body.light-mode .sc-desc   { color: rgba(0,0,0,.5); }

body.light-mode .process-card { background: #eaeae7; border-color: rgba(0,0,0,.08); }
body.light-mode .pc-num   { color: rgba(0,0,0,.2); }
body.light-mode .pc-title { color: #111; }
body.light-mode .pc-desc  { color: rgba(0,0,0,.45); }
body.light-mode .pc-days  { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.1); color: rgba(0,0,0,.5); }

body.light-mode .testi-card    { background: #eaeae7; border-color: rgba(0,0,0,.08); }
body.light-mode .testi-stars   { color: #c8960a; }
body.light-mode .testi-text    { color: rgba(0,0,0,.7); }
body.light-mode .testi-name    { color: #111; }
body.light-mode .testi-role    { color: rgba(0,0,0,.4); }
body.light-mode .testi-avatar  { background: rgba(0,0,0,.1); color: #111; }

body.light-mode .cta-badge { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.1); color: rgba(0,0,0,.5); }
body.light-mode .cta-title { color: #111; }
body.light-mode .cf-section-title { color: rgba(0,0,0,.5); }
body.light-mode .contact-form-wrap input,
body.light-mode .contact-form-wrap textarea,
body.light-mode .contact-form-wrap select { background: #fff; border-color: rgba(0,0,0,.15); color: #111; }

body.light-mode footer           { background: #e2e2df; border-top: 1px solid rgba(0,0,0,.1); }
body.light-mode .footer-badge    { color: rgba(0,0,0,.7); }
body.light-mode .footer-desc     { color: rgba(0,0,0,.45); }
body.light-mode .footer-col h4   { color: rgba(0,0,0,.6); }
body.light-mode .footer-link     { color: rgba(0,0,0,.45); }
body.light-mode .footer-link:hover { color: #111; }
body.light-mode .footer-bottom   { color: rgba(0,0,0,.35); border-top-color: rgba(0,0,0,.08); }

body.light-mode .status-bar { background: rgba(234,234,231,.95); border-top: 1px solid rgba(0,0,0,.1); color: rgba(0,0,0,.4); }
body.light-mode .s-dot { background: #2a8a2a; box-shadow: 0 0 8px #2a8a2a; }

body.light-mode .stat-num { color: #111111; }
body.light-mode .stat-lbl { color: rgba(0,0,0,.45); }
body.light-mode .stat-cell { border-color: rgba(0,0,0,.1); }
body.light-mode .stats-grid { border-color: rgba(0,0,0,.1); }

body.light-mode .about-text { color: #111111; }
body.light-mode .about-text .dim { color: rgba(0,0,0,0.22); }
body.light-mode .about-text .mid { color: rgba(0,0,0,0.5); }
body.light-mode .about-text .brt { color: #111111; }
body.light-mode .value-title { color: #111111; }
body.light-mode .value-desc  { color: rgba(0,0,0,0.45); }

body.light-mode .bg-scanlines { opacity: 0.3; }

/* ══ LOADING SCREEN ════════════════════════════════════════ */
#loadWrap {
  position: fixed; inset: 0; z-index: 600;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  transition: opacity .8s ease;
}
#loadWrap.hidden { opacity: 0; pointer-events: none; }
.load-bar-track {
  width: 260px; height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 2px; overflow: hidden;
}
#loadBar {
  height: 100%; background: #00e5ff;
  width: 0%; transition: width .3s ease;
  box-shadow: 0 0 10px #00e5ff;
}
#loadPct {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(0,229,255,.7);
}
.load-logo {
  font-size: 1rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.3); font-weight: 600;
}

/* ══ BACKGROUND OVERLAYS ═══════════════════════════════════ */
.bg-vignette {
  position: fixed; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 70% at 50% 50%,
      rgba(17,17,17,0.80) 0%,
      rgba(17,17,17,0.52) 42%,
      rgba(17,17,17,0.14) 72%,
      transparent 100%
    );
}
.bg-edge-fade {
  position: fixed; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right,  rgba(17,17,17,.75) 0%, transparent 11%, transparent 89%, rgba(17,17,17,.75) 100%),
    linear-gradient(to bottom, rgba(17,17,17,.65) 0%, transparent 13%, transparent 87%, rgba(17,17,17,.65) 100%);
}
.bg-scanlines {
  position: fixed; inset: 0; z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0,0,0,.052) 2px, rgba(0,0,0,.052) 4px
  );
}

body.light-mode .bg-vignette {
  background:
    radial-gradient(ellipse 72% 70% at 50% 50%,
      rgba(244,244,242,0.88) 0%,
      rgba(244,244,242,0.60) 42%,
      rgba(244,244,242,0.18) 72%,
      transparent 100%
    );
}
body.light-mode .bg-edge-fade {
  background:
    linear-gradient(to right,  rgba(244,244,242,.8) 0%, transparent 11%, transparent 89%, rgba(244,244,242,.8) 100%),
    linear-gradient(to bottom, rgba(244,244,242,.7) 0%, transparent 13%, transparent 87%, rgba(244,244,242,.7) 100%);
}
/* ══ SCROLL PROGRESS BAR ═══════════════════════════════════ */
#scrollProgressBar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--acc, #a78bfa), color-mix(in srgb, var(--acc, #c084fc) 70%, white));
  z-index: 10000;
  transition: width .08s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}
#scrollProgressBar::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 60px; height: 100%;
  background: rgba(255,255,255,.45);
  filter: blur(4px);
}

/* ══ MODULE PICKER MODAL ══════════════════════════════════════ */
.mod-overlay {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.mod-overlay.open {
  opacity: 1; pointer-events: all;
}

.mod-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mod-panel {
  position: relative; z-index: 1;
  background: #161616;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 28px;
  padding: 52px 48px 48px;
  max-width: 860px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  transform: translateY(22px) scale(.97);
  transition: transform .38s cubic-bezier(.16,1,.3,1);
}
.mod-overlay.open .mod-panel {
  transform: translateY(0) scale(1);
}

/* light mode */
body.light-mode .mod-panel {
  background: #f7f7f5;
  border-color: rgba(0,0,0,.1);
  color: #111;
}
body.light-mode .mod-card {
  background: #eeeeec;
  border-color: rgba(0,0,0,.09);
}
body.light-mode .mod-card-desc { color: rgba(0,0,0,.5); }
body.light-mode .mod-card-pills span {
  background: rgba(0,0,0,.07);
  color: rgba(0,0,0,.5);
}
body.light-mode .mod-sub { color: rgba(0,0,0,.42); }
body.light-mode .mod-title-dim { color: rgba(0,0,0,.28); }
body.light-mode .mod-close {
  background: rgba(0,0,0,.06);
  color: #111;
}
body.light-mode .mod-tag {
  background: rgba(0,0,0,.07);
  border-color: rgba(0,0,0,.12);
  color: rgba(0,0,0,.45);
}

.mod-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%; cursor: pointer;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.mod-close:hover { background: rgba(255,255,255,.14); color: #fff; }

.mod-header { margin-bottom: 36px; }
.mod-tag {
  display: inline-flex; padding: 5px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: .6rem; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.mod-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -.028em;
  line-height: 1.1; margin-bottom: 10px;
}
.mod-title-dim { color: rgba(255,255,255,.28); }
.mod-sub {
  font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.6;
}

/* ── Module Cards ── */
.mod-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media(max-width: 680px) {
  .mod-cards { grid-template-columns: 1fr; }
  .mod-panel { padding: 38px 24px 32px; }
}

.mod-card {
  display: flex; flex-direction: column; gap: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 24px 20px 20px;
  text-decoration: none; color: inherit;
  cursor: pointer;
  transition: transform .28s cubic-bezier(.16,1,.3,1),
              background .22s, border-color .22s;
  position: relative; overflow: hidden;
}
.mod-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .3s;
  border-radius: inherit;
  pointer-events: none;
}
.mod-card:hover { transform: translateY(-4px) scale(1.015); }

/* green */
.mod-card--green:hover { border-color: rgba(158,234,170,.35); background: rgba(158,234,170,.05); }
.mod-card--green::before { background: radial-gradient(ellipse at top left, rgba(158,234,170,.08), transparent 65%); }
.mod-card--green:hover::before { opacity: 1; }
.mod-card--green .mod-card-arrow { color: #9eeaaa; }
.mod-card--green .mod-card-name  { color: #9eeaaa; }

/* purple */
.mod-card--purple:hover { border-color: rgba(216,170,255,.35); background: rgba(216,170,255,.05); }
.mod-card--purple::before { background: radial-gradient(ellipse at top left, rgba(216,170,255,.08), transparent 65%); }
.mod-card--purple:hover::before { opacity: 1; }
.mod-card--purple .mod-card-arrow { color: #d8aaff; }
.mod-card--purple .mod-card-name  { color: #d8aaff; }

/* navy */
.mod-card--navy:hover { border-color: rgba(114,204,245,.35); background: rgba(114,204,245,.05); }
.mod-card--navy::before { background: radial-gradient(ellipse at top left, rgba(114,204,245,.08), transparent 65%); }
.mod-card--navy:hover::before { opacity: 1; }
.mod-card--navy .mod-card-arrow { color: #72ccf5; }
.mod-card--navy .mod-card-name  { color: #72ccf5; }

.mod-card-icon { flex-shrink: 0; }
.mod-card-name {
  font-size: .95rem; font-weight: 700; letter-spacing: -.01em;
  margin-bottom: 6px;
}
.mod-card-desc {
  font-size: .78rem; color: rgba(255,255,255,.45);
  line-height: 1.55;
}
.mod-card-pills {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px;
}
.mod-card-pills span {
  font-size: .62rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px; padding: 3px 10px;
  color: rgba(255,255,255,.38);
}
.mod-card-arrow {
  font-size: 1.1rem; font-weight: 700;
  margin-top: auto; align-self: flex-end;
  transition: transform .22s;
}
.mod-card:hover .mod-card-arrow { transform: translateX(4px); }
