/* ============================================
   QuantSync — INSPIRED REDESIGN
   Dark navy + orange accent, mixed section contrast
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Deep navy — warmer than pure black, more intentional */
  --bg:      #0d1117;
  --bg-2:    #111921;
  --bg-3:    #161f2a;
  --surface: #1c2636;

  /* Light sections — cream/warm off-white */
  --bg-light:   #f5f0ea;
  --bg-light-2: #eeeae3;

  --border:   rgba(255, 255, 255, 0.07);
  --border-h: rgba(232, 93, 4, 0.4);

  /* Text on dark */
  --text:    #f0ece6;
  --text-2:  #8a9ab0;
  --text-3:  #3d4f63;

  /* Text on light */
  --text-dark:   #0d1117;
  --text-dark-2: #4a5568;

  /* Orange — the human choice */
  --orange:       #e05c23;
  --orange-b:     #f07332;
  --orange-glow:  rgba(224, 92, 35, 0.2);
  --orange-tint:  rgba(224, 92, 35, 0.08);

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --r-sm:  5px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  22px;

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Aliases used in page HTML */
  --radius-lg:    16px;
  --radius-md:    10px;
  --accent:       #e05c23;
  --accent-bright:#f07332;
}

/* Background noise & blob decorations */
.bg-noise {
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9996;
  opacity: 0.4;
}

.bg-accent-blob {
  position: fixed;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,92,35,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* CTA block (about page bottom CTA) */
.cta-section { padding: 80px 0; }
.cta-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-b));
  z-index: 9999;
  width: 0%;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
#cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
}

#cursor-ring {
  position: fixed;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 92, 35, 0.45);
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%,-50%);
  transition: width 0.2s var(--spring), height 0.2s var(--spring), border-color 0.2s;
}

#cursor-ring.hovering { width: 42px; height: 42px; border-color: var(--orange); }

/* ============================================
   FLOATING SIDE BUTTON
   ============================================ */
.float-side {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.float-btn {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 8px 0 0 8px;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  box-shadow: -3px 0 16px rgba(224, 92, 35, 0.3);
}

.float-btn:hover {
  background: var(--orange-b);
  padding-right: 14px;
}

.float-wa {
  background: #25D366;
  box-shadow: -3px 0 16px rgba(37, 211, 102, 0.25);
}

.float-wa:hover { background: #1ea952; }

/* ============================================
   PAGE OVERLAY
   ============================================ */
#page-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.35s var(--ease);
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.93);
  backdrop-filter: blur(20px);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.logo-mark {
  width: 32px; height: 32px;
  background: var(--orange);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text); }

.nav-cta {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--orange-b);
  box-shadow: 0 6px 20px var(--orange-glow);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-2);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--text); }

.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 26px;
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
}

/* ============================================
   SECTION UTILITY
   ============================================ */
.section { padding: 80px 0; position: relative; }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-light .text-2 { color: var(--text-dark-2); }

.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-b);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.tag::before { content: ''; width: 16px; height: 1px; background: var(--orange); }
.tag-dark { color: var(--orange); }
.tag-dark::before { background: var(--orange); }

.display-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 74px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2.5px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
}

.section-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 480px;
}

.section-light .section-sub { color: var(--text-dark-2); }

.hl { color: var(--orange-b); }
.hl-dark { color: var(--orange); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50px;
  padding: 12px 26px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: var(--orange-b);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px var(--orange-glow);
}

.btn-outline-light {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline-light:hover {
  border-color: var(--orange);
  color: var(--orange-b);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.15);
}

.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* VIEW DETAILS link */
.view-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-b);
  text-decoration: none;
  margin-top: 12px;
  border-bottom: 1px solid var(--orange-b);
  padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s;
}

.view-link:hover { gap: 10px; color: var(--orange-b); }
.view-link-dark { color: var(--orange); border-bottom-color: var(--orange); }
.view-link-dark:hover { color: var(--orange); }

/* ============================================
   HERO SLIDER — Photo Background (Webtactic style)
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #0d1117;
}

.hs-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.hs-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay — makes photo readable */
.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 10, 14, 0.88) 0%,
    rgba(8, 10, 14, 0.65) 55%,
    rgba(8, 10, 14, 0.35) 100%
  );
  z-index: 1;
}

/* Slide text content */
.hs-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 64px;
  width: 100%;
  padding-top: 80px;
}

.hs-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 90px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 22px;
}

.hs-hl { color: var(--orange-b); }

.hs-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

/* Single bold CTA button */
.hs-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.hs-cta:hover {
  background: var(--orange-b);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 92, 35, 0.35);
}

/* Slide-in animation per active slide */
.hs-slide.active .hs-title { animation: fadeUp 0.8s var(--ease-out) 0.1s both; }
.hs-slide.active .hs-sub   { animation: fadeUp 0.8s var(--ease-out) 0.28s both; }
.hs-slide.active .hs-cta   { animation: fadeUp 0.8s var(--ease-out) 0.44s both; }

/* Right arrow — exact Webtactic position */
.hs-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px; height: 56px;
  background: var(--orange);
  border: none;
  border-radius: 4px 0 0 4px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.hs-arrow:hover { background: var(--orange-b); }

/* Bottom bar */
.hs-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 64px;
  background: rgba(8,10,14,0.65);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Slide counter: 01 / 04 */
.hs-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hs-cur-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--orange-b);
  letter-spacing: -1px;
}

.hs-divider {
  width: 32px; height: 1px;
  background: rgba(255,255,255,0.25);
}

.hs-tot-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.5px;
}

/* Progress line */
.hs-prog-wrap {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.hs-prog-fill {
  height: 100%;
  background: var(--orange);
  width: 0%;
}

/* Dots */
.hs-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.hs-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  padding: 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.hs-dot.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

/* ============================================
   MARQUEE
   ============================================ */






/* Individual slide */
.hs-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 88px;
  padding-bottom: 110px;
  position: relative;
  overflow: hidden;
}

/* Large BG number per slide */
.hs-bg-num {
  position: absolute;
  right: 5%;
  bottom: 100px;
  font-family: var(--font-display);
  font-size: clamp(160px, 20vw, 300px);
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  letter-spacing: -10px;
  pointer-events: none;
  user-select: none;
}

/* Slide content */
.hs-slide-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* Tag / eyebrow */
.hs-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(224, 92, 35, 0.1);
  border: 1px solid rgba(224, 92, 35, 0.22);
  border-radius: 50px;
  padding: 5px 13px 5px 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange-b);
  margin-bottom: 22px;
}

/* Slide title */
.hs-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 20px;
}

.hs-hl { color: var(--orange-b); }

/* Subtitle */
.hs-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 520px;
  margin-bottom: 32px;
}

/* CTAs */
.hs-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Slide enter animation */
.hs-slide.active .hs-tag { animation: fadeUp 0.55s var(--ease-out) 0.1s both; }
.hs-slide.active .hs-title { animation: fadeUp 0.7s var(--ease-out) 0.2s both; }
.hs-slide.active .hs-sub { animation: fadeUp 0.7s var(--ease-out) 0.35s both; }
.hs-slide.active .hs-actions { animation: fadeUp 0.7s var(--ease-out) 0.48s both; }
.hs-slide.active .hs-bg-num { animation: fadeUp 1s var(--ease-out) 0s both; }

/* These will re-run each time .active is added */

/* Arrow navigation */
.hs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.hs-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}

.hs-prev { left: 28px; }
.hs-next { right: 28px; }

/* Bottom bar */
.hs-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(13,17,23,0.7);
  backdrop-filter: blur(16px);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hs-dots { display: flex; gap: 6px; align-items: center; }

.hs-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}

.hs-dot.active {
  width: 28px;
  border-radius: 8px;
  background: var(--orange);
}

/* Inline stats */
.hs-stats {
  display: flex;
  gap: 0;
  flex: 1;
}

.hs-stats .hstat { padding: 0 24px; flex: none; }
.hs-stats .hstat + .hstat { border-left: 1px solid rgba(255,255,255,0.08); }

.hs-stats .hstat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
}

.hs-stats .hstat-label { font-size: 10px; color: var(--text-3); margin-top: 3px; }

/* Slide progress bar */
.hs-progress-wrap {
  flex: 0 0 160px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-left: auto;
}

.hs-progress-bar {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 0.1s linear;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  right: 28px; bottom: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
  font-weight: 600;
}



.pill-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* Title lines — masked slide-up */
.hero-title-wrap { margin-bottom: 22px; }

.h-line {
  display: block;
  overflow: hidden;
  line-height: 1.05;
}

.h-line-inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  animation: fromBelow 0.85s var(--ease-out) both;
}

.h-line-inner:nth-child(1) { animation-delay: 0.18s; }
.h-line-inner:nth-child(2) { animation-delay: 0.30s; }
.h-line-inner:nth-child(3) { animation-delay: 0.42s; }

@keyframes fromBelow {
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.58s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.72s both;
}

/* Hero stats */
.hero-stats {
  display: flex;
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding-top: 32px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 0.88s both;
}

.hstat { flex: 1; padding-right: 28px; }
.hstat + .hstat { border-left: 1px solid var(--border); padding-left: 28px; }
.hstat:last-child { padding-right: 0; }

.hstat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
}

.hstat-num .acc { color: var(--orange-b); }

.hstat-label {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 5px;
  line-height: 1.4;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  right: 0; bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.5s ease 1.2s both;
  z-index: 1;
}

.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: breathe 2s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
  font-weight: 600;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 52px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.marquee-item::after { content: '🌍'; color: var(--orange); font-size: 6px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SERVICES — Two column layout like reference
   Left: big heading + description
   Right: service items stacked
   ============================================ */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.services-left {
  position: sticky;
  top: 110px;
}

.services-right { display: flex; flex-direction: column; gap: 0; }

.svc-item {
  display: grid;
  grid-template-columns: 1fr 56px;
  align-items: start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.25s;
}

.svc-item:first-child { border-top: 1px solid rgba(255,255,255,0.04); }

.svc-item:hover { background: rgba(255,255,255,0.02); margin: 0 -16px; padding-left: 16px; padding-right: 16px; border-radius: 8px; }

.svc-num {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.svc-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 6px;
}

.svc-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

.svc-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--orange-tint);
  border: 1px solid rgba(224, 92, 35, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.25s var(--ease);
  margin-top: 4px;
}

.svc-item:hover .svc-icon {
  background: var(--orange);
  border-color: var(--orange);
}

/* ============================================
   PROCESS
   ============================================ */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.process-sticky { position: sticky; top: 110px; }

.psteps { display: flex; flex-direction: column; }

.pstep {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
}

.pstep:first-child { border-top: 1px solid var(--border); }
.pstep:hover .pstep-num { background: var(--orange); border-color: var(--orange); color: #fff; }

.pstep-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-3);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s var(--spring);
}

.pstep-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}

.pstep-desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ============================================
   RESULTS — Light section, feels like contrast break
   ============================================ */
.results-section { background: var(--bg-light); }

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Metric blocks on light bg */
.metric-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.06);
}

.mblock {
  background: #fff;
  padding: 30px 26px;
  transition: background 0.25s;
}

.mblock:hover { background: #fef8f4; }
.mblock.full { grid-column: span 2; }

.mblock-big {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -3px;
}

.mblock-big .acc { color: var(--orange); }

.mblock-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 8px;
  margin-bottom: 3px;
}

.mblock-note { font-size: 12px; color: var(--text-dark-2); line-height: 1.5; }

.results-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.results-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dark-2);
  line-height: 1.5;
}

.results-bullets li::before { content: '↗'; color: var(--orange); font-size: 13px; flex-shrink: 0; margin-top: 1px; }

/* ============================================
   TESTIMONIALS — dark section
   ============================================ */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 44px;
}

.tcard { background: var(--bg); padding: 28px 22px; transition: background 0.25s; }
.tcard:hover { background: var(--bg-3); }

.tcard-stars { font-size: 11px; letter-spacing: 2px; color: #f59e0b; margin-bottom: 12px; }

.tcard-quote {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
}

.tcard-line {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.tcard-ava {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.tcard-name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.2; }
.tcard-role { font-size: 11px; color: var(--text-3); margin-top: 1px; }

/* ============================================
   CTA — Light section break
   ============================================ */
.cta-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-visual {
  position: relative;
  height: 280px;
  border-radius: var(--r-xl);
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-visual::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 92, 35, 0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.cta-visual-num {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: rgba(224, 92, 35, 0.12);
  letter-spacing: -8px;
  line-height: 1;
}

.cta-text .section-title { margin-bottom: 12px; }
.cta-sub { font-size: 15px; color: var(--text-2); line-height: 1.7; margin-bottom: 28px; max-width: 400px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 52px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 12px 0 16px;
  max-width: 240px;
}

.footer-head {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange-b); }

.footer-social { display: flex; gap: 8px; }
.fsoc {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  color: var(--text-2);
  transition: all 0.2s;
}
.fsoc:hover { border-color: var(--orange); color: var(--orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-hero {
  padding: 140px 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,92,35,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-text p { font-size: 14px; color: var(--text-2); line-height: 1.85; margin-bottom: 16px; }
.about-text strong { color: var(--text); font-weight: 600; }

/* About split image panel */
.about-panel {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.about-panel-header {
  background: var(--orange);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-panel-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.stat-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.sblock { background: var(--bg-3); padding: 22px 20px; transition: background 0.2s; }
.sblock:hover { background: var(--surface); }
.sblock-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--text); letter-spacing: -1.5px; line-height: 1; }
.sblock-label { font-size: 11px; color: var(--text-2); margin-top: 4px; }

.info-stack { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin-top: 20px; }
.info-item { padding: 18px 20px; border-bottom: 1px solid var(--border); transition: background 0.2s; }
.info-item:last-child { border-bottom: none; }
.info-item:hover { background: var(--bg-3); }
.info-label { font-size: 9px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 5px; }
.info-text { font-size: 13px; color: var(--text-2); line-height: 1.6; }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 44px; }
.compare-col { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; }
.compare-col.bad { border-color: rgba(239,68,68,0.18); }
.compare-col.good { border-color: rgba(224,92,35,0.25); background: rgba(224,92,35,0.04); }
.compare-head { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 18px; }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-list li { font-size: 13px; color: var(--text-2); display: flex; gap: 10px; line-height: 1.5; }

.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 44px;
}

.vcard { background: var(--bg); padding: 26px 20px; transition: background 0.25s; }
.vcard:hover { background: var(--bg-3); }
.vcard-icon { font-size: 22px; margin-bottom: 12px; }
.vcard-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.vcard-desc { font-size: 12px; color: var(--text-2); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.team-card { border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 16px; text-align: center; transition: all 0.3s var(--ease); }
.team-card:hover { border-color: var(--orange); transform: translateY(-3px); background: var(--bg-3); }
.team-ava { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 11px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; }
.team-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.team-role { font-size: 11px; color: var(--orange-b); margin-bottom: 9px; font-weight: 600; }
.team-bio { font-size: 12px; color: var(--text-2); line-height: 1.55; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 52px; padding-bottom: 80px; }

.cinfo-item { display: flex; align-items: flex-start; gap: 13px; padding: 18px 0; border-bottom: 1px solid var(--border); }
.cinfo-item:first-of-type { border-top: 1px solid var(--border); }
.cinfo-ico { width: 38px; height: 38px; border-radius: 9px; background: var(--bg-3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.cinfo-label { font-size: 9px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text-3); margin-bottom: 4px; }
.cinfo-val { font-size: 14px; color: var(--text-2); }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #22c55e;
  color: #fff;
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 22px;
  transition: all 0.25s;
}

.wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(34,197,94,0.25); background: #16a34a; }

.next-steps { margin-top: 24px; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; }
.next-item { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--border); }
.next-item:last-child { border-bottom: none; }
.next-n { font-family: var(--font-display); font-size: 11px; font-weight: 800; color: var(--orange-b); flex-shrink: 0; min-width: 20px; }
.next-t { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.form-box { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 38px; }
.form-box-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 4px; }
.form-box-sub { font-size: 13px; color: var(--text-2); margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.fg { margin-bottom: 14px; }
.fg label { display: block; font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--r-md); padding: 11px 14px; font-size: 13px; color: var(--text); font-family: var(--font-body); outline: none; transition: all 0.22s; appearance: none; }
.fg select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%233d4f63' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; cursor: pointer; }
.fg select option { background: var(--bg-3); color: var(--text); }
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color: var(--orange); background: rgba(224,92,35,0.04); box-shadow: 0 0 0 2px rgba(224,92,35,0.1); }
.fg input::placeholder,.fg textarea::placeholder { color: var(--text-3); }
.fg textarea { resize: vertical; min-height: 100px; }

.form-submit-btn { width: 100%; justify-content: center; padding: 13px; font-size: 13px; font-weight: 700; border-radius: 10px; margin-top: 5px; text-transform: uppercase; letter-spacing: 0.5px; }
.success-msg { display: none; margin-top: 14px; padding: 14px 18px; background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2); border-radius: var(--r-md); font-size: 13px; color: #4ade80; text-align: center; }

/* FAQ */
.faq-list { max-width: 680px; margin: 40px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { width: 100%; padding: 17px 0; background: none; border: none; color: var(--text); font-size: 15px; font-weight: 600; font-family: var(--font-display); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: color 0.2s; letter-spacing: -0.3px; }
.faq-q:hover { color: var(--orange-b); }
.faq-plus { font-size: 20px; color: var(--text-3); transition: transform 0.3s var(--ease), color 0.2s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-plus { transform: rotate(45deg); color: var(--orange-b); }
.faq-a { font-size: 13px; color: var(--text-2); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; padding-bottom: 0; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 17px; }

/* ============================================
   PROJECTS SLIDER
   ============================================ */
.projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.proj-nav { display: flex; gap: 10px; }

.proj-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: #fff;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.22s var(--ease);
}

.proj-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.06);
}

.proj-arrow:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.proj-slider-wrap { overflow: hidden; }

.proj-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: grab;
  user-select: none;
}

.proj-track.dragging { cursor: grabbing; transition: none; }

.proj-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

/* Badge */
.proj-badge {
  background: var(--bg-light-2);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark-2);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.proj-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Browser mockup */
.proj-preview { overflow: hidden; }

.proj-preview-bar {
  background: rgba(0,0,0,0.25);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pbar-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.pbar-url {
  margin-left: 8px;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  font-family: monospace;
  background: rgba(255,255,255,0.08);
  padding: 2px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.pbar-url a {
  text-decoration: none;
   color: rgba(255,255,255,0.5);
}
  

.proj-preview-body { min-height: 140px; }

/* Card info row */
.proj-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.proj-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.proj-tag-pill {
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(224, 92, 35, 0.09);
  border: 1px solid rgba(224, 92, 35, 0.18);
  padding: 3px 9px;
  border-radius: 20px;
}

.proj-result {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark-2);
  text-align: right;
  flex-shrink: 0;
}

/* Footer row */
.proj-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.proj-dots { display: flex; gap: 6px; align-items: center; }

.proj-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  padding: 0;
}

.proj-dot.active {
  width: 22px;
  border-radius: 8px;
  background: var(--orange);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in { opacity: 1; transform: translateY(0); }

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .process-layout { grid-template-columns: 1fr; }
  .process-sticky { position: static; margin-bottom: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr 1fr; }
  .val-grid { grid-template-columns: 1fr 1fr; }
  .services-split { grid-template-columns: 1fr; gap: 40px; }
  .services-left { position: static; }
  .cta-section-inner { grid-template-columns: 1fr; }
  .cta-visual { height: 200px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 76px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-box { padding: 24px 18px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .metric-mosaic { grid-template-columns: 1fr; }
  .mblock.full { grid-column: span 1; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .hstat + .hstat { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 18px; }
  .val-grid { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .scroll-hint, .float-side { display: none; }
  .hero-big-text { display: none; }
}

/* ============================================
   MISSING UTILITY CLASSES
   ============================================ */

/* Glowing radial gradient in page heroes */
.page-hero-glow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 30%, rgba(224,92,35,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* About page — 2 col story layout */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Values grid — alias for val-grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 44px;
}

/* btn-solid / btn-ghost aliases */
.btn-solid {
  background: var(--orange);
  color: #fff;
}
.btn-solid:hover {
  background: var(--orange-b);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px var(--orange-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange-b);
}

/* btn-accent alias */
.btn-accent {
  background: var(--orange);
  color: #fff;
}
.btn-accent:hover {
  background: var(--orange-b);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px var(--orange-glow);
}

/* hl-stroke — highlighted text w/ color */
.hl-stroke { color: var(--orange-b); }

/* Spin animation for about hero rings */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Social link (footer) */
.social-link {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-decoration: none;
  color: var(--text-2);
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }

/* Responsive: about-split & values-grid */
@media (max-width: 1024px) {
  .about-split { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pre-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pre-logo {
  position: relative;
  width: 80px;
  height: 80px;
}

.pre-logo::before,
.pre-logo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 92, 35, 0.2);
  animation: pre-ring 1.8s ease-in-out infinite;
}

.pre-logo::before {
  inset: -16px;
  animation-delay: 0s;
}

.pre-logo::after {
  inset: -32px;
  animation-delay: 0.3s;
}

@keyframes pre-ring {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.04); }
}

.pre-q {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  box-shadow: 0 0 50px rgba(224, 92, 35, 0.5);
  animation: pre-pulse 1.4s ease-in-out infinite;
}

@keyframes pre-pulse {
  0%, 100% { box-shadow: 0 0 50px rgba(224,92,35,0.5); }
  50% { box-shadow: 0 0 80px rgba(224,92,35,0.8); }
}

.pre-bar-wrap {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.pre-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-b));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pre-text {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ============================================
   EXIT-INTENT POPUP
   ============================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.exit-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.exit-popup-box {
  background: var(--bg-2);
  border: 1px solid rgba(224, 92, 35, 0.25);
  border-radius: var(--r-xl);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s var(--ease-out);
}

.exit-popup-overlay.active .exit-popup-box {
  transform: translateY(0) scale(1);
}

.exit-popup-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,92,35,0.18), transparent 70%);
  pointer-events: none;
}

.exit-popup-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 30px;
  height: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-3);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.exit-popup-close:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text);
}

/* ============================================
   WHY US — COMPARISON TABLE
   ============================================ */
.why-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.why-row:hover { background: rgba(255,255,255,0.02); }

.why-feature {
  padding: 15px 24px;
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  font-weight: 500;
}

.why-cell {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  border-left: 1px solid var(--border);
}

.why-cell.bad { color: #ef4444; }
.why-cell.good {
  color: var(--orange-b);
  background: rgba(224, 92, 35, 0.04);
}

@media (max-width: 640px) {
  .why-row { grid-template-columns: 1fr 0.6fr 0.6fr; }
  .why-feature { font-size: 12px; padding: 12px 14px; }
  .why-cell { padding: 12px 8px; font-size: 15px; }
  .exit-popup-box { padding: 28px 22px; }
}

/* ============================================
   VIDEO MODAL POPUP
   ============================================ */
.video-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(6, 12, 20, 0.95);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.video-modal-overlay.active {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.video-modal-content {
  position: relative;
  width: 90%; max-width: 900px;
  background: #000; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(0,212,255,0.1);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.5s var(--spring);
}
.video-modal-overlay.active .video-modal-content {
  transform: scale(1) translateY(0);
}
.video-modal-close {
  position: absolute; top: -40px; right: -10px;
  background: none; border: none; color: #fff; font-size: 24px; cursor: pointer;
  transition: color 0.3s;
}
.video-modal-close:hover { color: var(--orange-b); }

/* ============================================
   RESPONSIVENESS FIXES
   ============================================ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 1024px) {
  /* Fix about.html hero grid splitting */
  .page-hero .container > div[style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

@media (max-width: 768px) {
  /* Fix proj-card width for swiping */
  .proj-card { flex: 0 0 calc(85% - 20px) !important; margin-right: 15px; }

  /* Fix stats strip */
  .stats-strip { grid-template-columns: 1fr 1fr !important; }
  .stats-strip > div { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stats-strip > div:nth-child(even) { border-left: 1px solid var(--border); }
  .stats-strip > div:nth-child(3), .stats-strip > div:nth-child(4) { border-bottom: none; }
  
  /* Fix hero visual min-height */
  .page-hero .reveal.d2 { min-height: 380px !important; }
}

@media (max-width: 480px) {
  /* Fix proj-card width for tiny screens */
  .proj-card { flex: 0 0 calc(100% - 20px) !important; margin-right: 15px; }

  /* Fully stack stats strip */
  .stats-strip { grid-template-columns: 1fr !important; }
  .stats-strip > div { border-left: none !important; border-bottom: 1px solid var(--border) !important; border-right: none !important; }
  .stats-strip > div:last-child { border-bottom: none !important; }
}

/* ============================================
   QUANTUMBOT STYLES
   ============================================ */
#qbot-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  font-family: var(--font-body);
}
#qbot-trigger {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-b);
  border: none;
  color: white;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(224, 92, 35, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--spring);
}
#qbot-trigger:hover {
  transform: scale(1.1);
}
#qbot-window {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 330px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(0,212,255,0.05);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: all 0.4s var(--spring);
}
#qbot-container.open #qbot-window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
#qbot-container.open #qbot-trigger {
  transform: scale(0);
}
#qbot-header {
  background: var(--surface);
  padding: 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  font-size: 14px;
}
#qbot-close {
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  font-size: 18px;
}
#qbot-close:hover { color: #fff; }
#qbot-messages {
  padding: 16px;
  height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
}
#qbot-messages::-webkit-scrollbar { width: 6px; }
#qbot-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.qbot-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.qbot-msg.bot {
  background: var(--surface);
  color: var(--text);
  align-self: flex-start;
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}
.qbot-msg.user {
  background: rgba(224, 92, 35, 0.15);
  color: var(--orange-b);
  align-self: flex-end;
  border: 1px solid rgba(224, 92, 35, 0.3);
  border-bottom-right-radius: 4px;
}
#qbot-options {
  padding: 16px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qbot-opt {
  background: var(--bg);
  border: 1px solid var(--orange-b);
  color: var(--orange-b);
  padding: 7px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.qbot-opt:hover {
  background: var(--orange-b);
  color: #fff;
}
@media(max-width:400px) {
  #qbot-window { width: calc(100vw - 48px); }
}

/* ============================================
   PREMIUM SERVICE DETAILS PAGE
   ============================================ */
.srv-hero {
  padding: 200px 0 100px 0;
  text-align: left;
  background: radial-gradient(circle at top right, rgba(224, 92, 35, 0.15) 0%, var(--bg) 60%),
              radial-gradient(circle at bottom left, rgba(224, 92, 35, 0.05) 0%, var(--bg) 60%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.srv-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(224,92,35,0.03));
  pointer-events: none;
}
.srv-hero .tag { 
  justify-content: flex-start; 
  margin-bottom: 30px; 
  padding: 8px 20px;
  background: rgba(224, 92, 35, 0.1);
  border: 1px solid rgba(224, 92, 35, 0.3);
  display: inline-flex;
  border-radius: 30px;
  color: var(--orange-b);
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 14px;
}
.srv-hero .display-title { 
  font-size: clamp(40px, 7vw, 75px); 
  max-width: 1000px; 
  margin: 0 0 24px 0; 
  line-height: 1.05;
  background: linear-gradient(135deg, #fff 0%, #aaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  letter-spacing: -2px;
}
.srv-hero .srv-desc { 
  font-size: clamp(18px, 4vw, 22px); 
  color: var(--text-2); 
  max-width: 600px; 
  margin: 0; 
  line-height: 1.6; 
  border-left: 3px solid var(--orange-b);
  padding-left: 20px;
}
@media(max-width: 768px) {
  .srv-hero { padding: 150px 0 60px 0; }
  .srv-hero .display-title { letter-spacing: -1px; }
  .srv-hero .srv-desc { border-left: none; padding-left: 0; }
}

.srv-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  padding: 80px 0;
  align-items: start;
}
@media(max-width: 991px) {
  .srv-layout { grid-template-columns: 1fr; gap: 40px; }
}

.srv-main h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -1px;
}
.srv-main p {
  color: var(--text-2);
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.7;
}
.srv-main img {
  width: 100%;
  border-radius: 16px;
  margin: 30px 0 50px 0;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.4s;
}
.srv-main img:hover { filter: grayscale(0%) contrast(1.1); }

.srv-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media(max-width: 650px) {
  .srv-features { grid-template-columns: 1fr; }
}

.srv-fcard {
  position: relative;
  background: linear-gradient(145deg, rgba(30,30,30,0.6) 0%, rgba(20,20,20,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 32px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  z-index: 1;
}
.srv-fcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(224,92,35,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.srv-fcard:hover { 
  border-color: rgba(224, 92, 35, 0.3); 
  transform: translateY(-5px); 
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(224,92,35,0.1);
}
.srv-fcard:hover::before { opacity: 1; }
.srv-fcard .icon {
  width: 56px; height: 56px;
  background: var(--bg);
  border: 1px solid rgba(224,92,35,0.3);
  color: var(--orange-b);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.srv-fcard h3 { font-size: 20px; color: var(--text); margin-bottom: 12px; font-weight: 700; letter-spacing: -0.5px; }
.srv-fcard p { font-size: 15px; color: var(--text-2); margin-bottom: 0; line-height: 1.6; }

.srv-sidebar {
  position: sticky;
  top: 120px;
  background: rgba(20,20,20,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
@media(max-width: 991px) {
  .srv-sidebar { position: relative; top: 0; margin-bottom: 40px; }
}

.srv-sidebar-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  letter-spacing: -0.5px;
}
.srv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0; margin: 0;
}
.srv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.srv-item a { text-decoration: none; color: var(--text-2); display: flex; align-items: center; gap: 14px; width: 100%; transition: color 0.3s; }
.srv-item svg { width: 20px; height: 20px; color: var(--orange-b); opacity: 0.5; transition: 0.3s; flex-shrink: 0; }
.srv-item:hover, .srv-item.active {
  background: rgba(224, 92, 35, 0.08);
  border-color: rgba(224, 92, 35, 0.3);
  transform: translateX(5px);
}
.srv-item:hover a, .srv-item.active a { color: var(--text); }
.srv-item:hover svg, .srv-item.active svg { opacity: 1; filter: drop-shadow(0 0 5px rgba(224,92,35,0.5)); }
