/* ============================================================
   ScriptNeuron — Professional Stylesheet
   Design: Clean, premium, modern agency
   Brand accent: Orange #FF6635 | Purple #7C3AED
   ============================================================ */

:root {
  /* Brand */
  --orange:   #FF6635;
  --orange-d: #e85520;
  --purple:   #7C3AED;
  --purple-d: #6d28d9;

  /* Neutrals */
  --dark:       #09080F;
  --dark-2:     #13111F;
  --dark-3:     #1D1B2E;
  --text:       #111827;
  --text-2:     #374151;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --bg:         #FFFFFF;
  --bg-2:       #F9FAFB;
  --bg-3:       #F3F4F6;
  --border:     #E5E7EB;
  --border-2:   #D1D5DB;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.14), 0 8px 16px rgba(0,0,0,0.06);
  --glow-orange: 0 0 40px rgba(255,102,53,0.18);
  --glow-purple: 0 0 40px rgba(124,58,237,0.18);

  /* Gradient — used sparingly as accent */
  --grad: linear-gradient(135deg, #FF6635, #7C3AED);
  --grad-hover: linear-gradient(135deg, #e85520, #6d28d9);
  --grad-soft: linear-gradient(135deg, rgba(255,102,53,0.12), rgba(124,58,237,0.12));

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --navbar-h: 80px;

  /* Compat aliases used in inline styles */
  --text-1: #111827;
  --bg-alt: #F9FAFB;
  --radius-lg: 16px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: var(--t); }
a:hover { color: var(--orange-d); }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { color: var(--text); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,102,53,0.07);
  border: 1px solid rgba(255,102,53,0.2);
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: 14px;
}
/* Legacy alias */
.section-label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: rgba(255,102,53,0.07); border: 1px solid rgba(255,102,53,0.2); padding: 5px 12px; border-radius: var(--r-full); margin-bottom: 14px; }

.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-title span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

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

/* ---- Buttons ---- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 12px 26px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: var(--t);
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(255,102,53,0.35);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary-custom:hover {
  background: var(--orange-d);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,102,53,0.4);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 11px 26px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid var(--border-2);
  cursor: pointer;
  transition: var(--t);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-secondary-custom:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 11px 26px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  height: var(--navbar-h);
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  padding: 10px 0 0;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229,231,235,0.8);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  padding: 0;
}

.navbar-logo  { height: 55px; width: auto; display: block; }
/* Show white logo on dark nav, regular logo when scrolled */
.logo-light   { display: none; }
.logo-dark    { display: block; }
.navbar.scrolled .logo-dark  { display: none; }
.navbar.scrolled .logo-light { display: block; }

/* Default (dark hero) — white links */
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px !important;
  border-radius: var(--r-sm);
  transition: var(--t);
}
.navbar-nav .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.08); }
.navbar-nav .nav-link.active { color: #fff !important; background: rgba(255,255,255,0.1); font-weight: 600; }

/* Scrolled — dark links */
.navbar.scrolled .navbar-nav .nav-link { color: var(--text-2) !important; }
.navbar.scrolled .navbar-nav .nav-link:hover { color: var(--orange) !important; background: rgba(255,102,53,0.06); }
.navbar.scrolled .navbar-nav .nav-link.active { color: var(--orange) !important; background: rgba(255,102,53,0.08); }

.navbar-cta { margin-left: 12px; }

@media (max-width: 991px) {
  .navbar-nav .nav-link { padding: 10px 12px !important; }
  .navbar-cta { margin-left: 0; margin-top: 10px; align-self: flex-start; }
  /* Mobile menu needs a dark background to be readable over hero */
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    background: rgba(9,8,15,0.96);
    border-radius: 0 0 var(--r-lg) var(--r-lg);
    padding: 12px 16px 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

/* White toggler icon on dark hero; auto-reverts when scrolled */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--navbar-h);
  padding-bottom: 80px;
}

/* Subtle dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* Noise texture overlay */
.hero-bg::after {
  content: '';
  position: absolute; 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: driftOrb 12s ease-in-out infinite;
}
.hero-orb.o1 { width: 500px; height: 500px; background: var(--orange); top: -10%; right: 5%; animation-delay: 0s; }
.hero-orb.o2 { width: 400px; height: 400px; background: var(--purple); bottom: -5%; left: 10%; animation-delay: -5s; }
.hero-orb.o3 { width: 250px; height: 250px; background: #C026D3; top: 40%; right: 38%; animation-delay: -8s; opacity: 0.10; }

@keyframes driftOrb {
  0%,100% { transform: translate(0,0); }
  33%  { transform: translate(20px,-20px); }
  66%  { transform: translate(-15px,15px); }
}

/* Thin gradient line at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 30%, var(--purple) 70%, transparent 100%);
  opacity: 0.4;
}

.hero-content { position: relative; z-index: 2; }

.hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  padding: 6px 14px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: blink 2s infinite;
}
.hero-eyebrow-sep {
  width: 1px; height: 12px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero-eyebrow-avail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4ade80;
  font-size: 0.7rem;
}
.dot-live-sm {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 5px rgba(74,222,128,0.8);
  animation: blink 2s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.04em;
}
.hero-title .hl {
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  display: inline-block;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 400;
}


.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-trust .trust-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust .stars { color: #FBBF24; font-size: 0.8rem; letter-spacing: 1px; line-height: 1; }
.hero-trust .trust-score { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.75); }
.hero-trust .trust-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.hero-trust .clients-count { font-size: 0.8rem; color: rgba(255,255,255,0.45); font-weight: 400; }
.hero-trust .clients-count strong { color: rgba(255,255,255,0.75); font-weight: 700; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-tech {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-tech-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-right: 4px;
}
.htag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-full);
  padding: 4px 11px;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  transition: var(--t);
}
.htag:hover {
  background: rgba(255,102,53,0.08);
  border-color: rgba(255,102,53,0.25);
  color: rgba(255,255,255,0.75);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat .n {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.hero-stat .l {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

/* Hero Feature Strip */
.hero-features-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2;
}
.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s ease;
}
.hero-feature-item:hover { background: rgba(255,255,255,0.03); }
.hero-feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-feature-icon i { font-size: 1.15rem; }
.hero-feature-title {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}
.hero-feature-sub {
  color: rgba(255,255,255,0.38);
  font-size: 0.74rem;
  margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .hero-features-strip { position: relative; }
  .hero-feature-item { padding: 14px 16px; }
  .hero-feature-title { font-size: 0.8rem; }
  .hero-feature-sub { font-size: 0.7rem; }
}
@media (max-width: 575px) {
  .hero-features-strip { display: none; }
}

/* Code window */
.code-window {
  background: #0D0B1A;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,102,53,0.06), var(--glow-orange);
  position: relative;
  z-index: 2;
}
.code-window-bar {
  background: #080613;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.w-dot { width: 10px; height: 10px; border-radius: 50%; }
.w-dot.r { background: #FF5F57; }
.w-dot.y { background: #FEBC2E; }
.w-dot.g { background: #28C840; }
.w-bar-label { margin-left: 8px; font-size: 0.7rem; color: rgba(255,255,255,0.2); font-family: monospace; }

.code-body {
  padding: 20px 22px;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  line-height: 1.95;
}
.cl  { display: block; }
.kw  { color: #c792ea; }
.str { color: #c3e88d; }
.fn  { color: #82aaff; }
.cmt { color: #3d5062; font-style: italic; }
.vr  { color: #ffb86c; }
.nm  { color: #f78c6c; }
.op  { color: #89ddff; }
.ind { display: inline-block; width: 18px; }

/* Floating metric cards */
.metric-row { display: flex; gap: 12px; margin-top: 14px; }
.metric-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 14px 16px;
  animation: float 4s ease-in-out infinite;
  backdrop-filter: blur(8px);
}
.metric-card.d2 { animation-delay: -2s; }
.metric-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; margin-bottom: 8px;
}
.mi-orange { background: rgba(255,102,53,0.15); color: var(--orange); }
.mi-purple { background: rgba(124,58,237,0.15); color: var(--purple); }
.metric-card .label { font-size: 0.64rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.09em; font-weight: 700; }
.metric-card .value { font-size: 0.88rem; color: #fff; font-weight: 700; margin-top: 2px; }

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

/* ============================================================
   HERO VISUAL — right-side 3D illustration
   ============================================================ */
.hero-visual {
  position: relative;
  z-index: 2;
  max-width: 540px;
  margin-left: auto;
  padding: 40px 20px 70px;
}

.hv-ide {
  background: rgba(13, 11, 30, 0.92);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(124,58,237,0.12);
}

.hv-ide-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hv-ide-name {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  margin-left: 8px;
  font-family: monospace;
}

.hv-ide-code {
  padding: 18px 22px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  line-height: 1.95;
}

.hv-line         { display: block; color: rgba(255,255,255,0.5); }
.hv-indent       { padding-left: 18px; }
.hv-kw           { color: #c792ea; }
.hv-fn           { color: #82aaff; }
.hv-str          { color: #c3e88d; }
.hv-vr           { color: #ffb86c; }
.hv-nm           { color: #f78c6c; }
.hv-cmt          { color: #4CAF50; font-style: italic; }
.hv-line.hv-success { color: #4CAF50; }

/* Floating badges */
.hv-badge {
  position: absolute;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.hv-badge-code {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, #5B21B6, #7C3AED);
  color: #fff;
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 800;
  bottom: 40px;
  left: -8px;
  transform: rotate(-6deg);
  box-shadow: 0 20px 50px rgba(124,58,237,0.45), 0 0 0 1px rgba(255,255,255,0.1);
  animation: hvFloat1 4s ease-in-out infinite;
}

.hv-badge-rocket {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #FF6635, #e85520);
  color: #fff;
  font-size: 1.6rem;
  top: 8px;
  right: -8px;
  transform: rotate(8deg);
  box-shadow: 0 20px 50px rgba(255,102,53,0.45), 0 0 0 1px rgba(255,255,255,0.1);
  animation: hvFloat2 4.5s ease-in-out infinite;
}

.hv-badge-server {
  width: 80px; height: 80px;
  background: rgba(12, 10, 26, 0.96);
  border: 1px solid rgba(255,102,53,0.3);
  color: var(--orange);
  font-size: 1.2rem;
  flex-direction: column;
  gap: 5px;
  bottom: 15px;
  right: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(255,102,53,0.12);
  animation: hvFloat3 5s ease-in-out infinite;
}

.hv-server-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 36px;
}
.hv-server-lines span {
  height: 2px;
  border-radius: 2px;
  background: rgba(255,102,53,0.5);
}
.hv-server-lines span:nth-child(1) { width: 100%; }
.hv-server-lines span:nth-child(2) { width: 68%; }
.hv-server-lines span:nth-child(3) { width: 84%; }

.hv-glow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(255,102,53,0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

@keyframes hvFloat1 {
  0%,100% { transform: rotate(-6deg) translateY(0px); }
  50%      { transform: rotate(-6deg) translateY(-12px); }
}
@keyframes hvFloat2 {
  0%,100% { transform: rotate(8deg) translateY(0px); }
  50%      { transform: rotate(8deg) translateY(-10px); }
}
@keyframes hvFloat3 {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-py    { padding: 96px 0; }
.section-py-sm { padding: 64px 0; }
.bg-2  { background: var(--bg-2); }
.bg-alt { background: var(--bg-2); }

/* Thin gradient divider used between sections */
.grad-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,102,53,0.3) 30%, rgba(124,58,237,0.3) 70%, transparent);
}

/* ============================================================
   TRUSTED BY / TECH LOGOS
   ============================================================ */
.logo-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.logo-strip-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
}
.tech-logo {
  display: flex; align-items: center; justify-content: center;
  height: 36px;
  opacity: 0.35;
  transition: var(--t);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-2);
  letter-spacing: 0.04em;
  gap: 6px;
}
.tech-logo:hover { opacity: 0.75; color: var(--orange); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  height: 100%;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--t);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,102,53,0.15);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover .service-icon { transform: scale(1.08) rotate(-3deg); }

.service-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.3rem;
  transition: var(--t);
}
/* Refined icon colors */
.icon-orange  { background: rgba(255,102,53,0.10); color: #FF6635; }
.icon-purple  { background: rgba(124,58,237,0.10); color: #7C3AED; }
.icon-magenta { background: rgba(192,38,211,0.10); color: #C026D3; }
.icon-blue    { background: rgba(59,130,246,0.10); color: #3B82F6; }
.icon-green   { background: rgba(16,185,129,0.10); color: #10B981; }
.icon-teal    { background: rgba(6,182,212,0.10);  color: #06B6D4; }
.icon-indigo  { background: rgba(99,102,241,0.10); color: #6366F1; }
.icon-amber   { background: rgba(245,158,11,0.10); color: #F59E0B; }
.icon-rose    { background: rgba(244,63,94,0.10);  color: #F43F5E; }

.service-card h4 {
  font-size: 1.02rem; font-weight: 700; margin-bottom: 9px; color: var(--text);
  letter-spacing: -0.015em;
}
.service-card p {
  font-size: 0.865rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px;
}
.service-link {
  font-size: 0.83rem; font-weight: 600; color: var(--orange);
  display: inline-flex; align-items: center; gap: 5px; transition: var(--t);
}
.service-link:hover { gap: 9px; color: var(--orange-d); }

/* ============================================================
   SERVICE DETAIL CARDS (services page)
   ============================================================ */
.service-detail-card {
  scroll-margin-top: calc(var(--navbar-h) + 24px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px;
  margin-bottom: 24px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(255,102,53,0.15); }
.service-detail-card::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--grad);
  transform: scaleY(0); transform-origin: top;
  transition: var(--t-slow);
}
.service-detail-card:hover::before { transform: scaleY(1); }

.service-detail-icon {
  width: 68px; height: 68px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 22px;
}
.service-detail-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.service-detail-card .desc { color: var(--text-muted); line-height: 1.78; margin-bottom: 20px; font-size: 0.94rem; }
.service-feature-list { list-style: none; padding: 0; margin: 0 0 22px; }
.service-feature-list li { display: flex; align-items: center; gap: 9px; font-size: 0.875rem; color: var(--text-2); padding: 5px 0; }
.service-feature-list li i { color: var(--orange); font-size: 0.85rem; flex-shrink: 0; }
.tech-tag {
  display: inline-block;
  background: var(--bg-2); border: 1px solid var(--border);
  color: var(--text-muted); padding: 3px 11px;
  border-radius: var(--r-full); font-size: 0.73rem; font-weight: 600;
  margin: 3px; letter-spacing: 0.02em;
}

/* Redesigned service card */
.service-card-redesign { padding: 48px; }
.service-card-title { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.03em; color: var(--text-1); }
.title-highlight { color: var(--orange); }
.tech-divider { border-color: var(--border); margin: 22px 0; }
.tech-tags-brand { display: flex; flex-wrap: wrap; gap: 8px; }
.tech-tag-brand { display: inline-flex; align-items: center; gap: 7px; background: var(--bg); border: 1.5px solid var(--border); color: var(--text-2); padding: 7px 16px; border-radius: var(--r-full); font-size: 0.82rem; font-weight: 600; }
.tech-tag-brand i { font-size: 1rem; line-height: 1; }
.service-card-img { width: 100%; height: auto; border-radius: 16px; object-fit: cover; display: block; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 16px; border-radius: var(--r-lg);
  transition: var(--t); margin-bottom: 4px;
}
.feature-item:hover { background: var(--bg-2); }
.feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--r-md);
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  box-shadow: 0 4px 10px rgba(255,102,53,0.3);
}
.feature-item h5 { font-size: 0.96rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.feature-item p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--dark-2);
  position: relative; overflow: hidden;
}
/* Subtle grid */
.process-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
/* Orange top edge */
.process-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange) 40%, var(--purple) 60%, transparent);
  opacity: 0.5;
}

.process-step { position: relative; text-align: center; z-index: 1; }
/* Connector line between steps */
.col-lg-2:not(:last-child) .process-step::after {
  content: '';
  position: absolute;
  top: 62px;
  left: calc(50% + 52px);
  width: calc(100% - 52px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,102,53,0.4), rgba(255,102,53,0.08));
}
.process-step-icon {
  width: 116px; height: 116px; border-radius: 50%;
  background: rgba(10,10,20,0.9);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 0 6px rgba(255,102,53,0.07), inset 0 0 20px rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: var(--t);
  position: relative;
}
.process-step-icon i {
  font-size: 2.3rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.process-step:hover .process-step-icon {
  border-color: rgba(255,102,53,0.5);
  box-shadow: 0 0 0 6px rgba(255,102,53,0.12), 0 0 32px rgba(255,102,53,0.22), inset 0 0 20px rgba(0,0,0,0.4);
  transform: translateY(-5px);
}
.process-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--grad);
  color: #fff; font-size: 0.68rem; font-weight: 800;
  position: absolute; top: 4px; right: 4px;
  box-shadow: 0 0 10px rgba(255,102,53,0.5);
}
.process-step h5 { color: #fff; font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; }
.process-step p  { color: rgba(255,255,255,0.42); font-size: 0.8rem; line-height: 1.6; }

/* ============================================================
   STATS (dark section, NOT gradient background)
   ============================================================ */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,102,53,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.stat-item { text-align: center; padding: 10px; position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 20px; }
.stat-item-icon {
  width: 62px; height: 62px; border-radius: 16px; flex-shrink: 0;
  background: rgba(255,102,53,0.08);
  border: 1.5px solid rgba(255,102,53,0.35);
  box-shadow: 0 0 14px rgba(255,102,53,0.1);
  display: flex; align-items: center; justify-content: center;
}
.stat-item-icon i {
  font-size: 1.65rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item-text { text-align: left; }
.stat-item .big-num {
  font-size: 2.6rem; font-weight: 800; line-height: 1; display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}
.stat-item .stat-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  text-transform: none; letter-spacing: 0; font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 30px;
  height: 100%;
  position: relative;
  transition: var(--t);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(255,102,53,0.12); }
.t-stars { color: #F59E0B; font-size: 0.8rem; margin-bottom: 14px; letter-spacing: 2px; }
.t-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.82; font-style: italic; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.95rem; font-weight: 700; flex-shrink: 0;
}
.t-info h6 { font-size: 0.875rem; font-weight: 700; margin-bottom: 1px; color: var(--text); }
.t-info span { font-size: 0.76rem; color: var(--text-muted); }
.t-quote { position: absolute; top: 18px; right: 22px; font-size: 3.5rem; color: rgba(255,102,53,0.08); line-height: 1; font-family: Georgia, serif; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 100px 0;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(255,102,53,0.10) 0%, transparent 50%),
              radial-gradient(ellipse at 75% 50%, rgba(124,58,237,0.10) 0%, transparent 50%);
}
.cta-section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple) 40%, var(--orange) 60%, transparent);
  opacity: 0.3;
}
.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800;
  color: #fff; margin-bottom: 16px; letter-spacing: -0.03em;
  line-height: 1.1;
}
.cta-subtitle { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 480px; line-height: 1.75; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: calc(var(--navbar-h) + 44px) 0 72px;
  display: flex;
  align-items: center;
  position: relative; overflow: hidden;
}
.page-hero .container { width: 100%; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange) 35%, var(--purple) 65%, transparent);
  opacity: 0.4;
}
.page-hero .orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.12; }
.page-hero .orb-a { width: 380px; height: 380px; background: var(--orange); top:-100px; right:4%; }
.page-hero .orb-b { width: 280px; height: 280px; background: var(--purple); bottom:-60px; left:8%; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 14px;
}
.page-hero-subtitle { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 520px; line-height: 1.78; }
.breadcrumb-nav { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.breadcrumb-nav a { color: rgba(255,255,255,0.35); }
.breadcrumb-nav a:hover { color: var(--orange); }
.breadcrumb-nav .sep { opacity: 0.3; }
.breadcrumb-nav .cur { color: var(--orange); font-weight: 600; }

/* ============================================================
   SERVICES OVERVIEW CARDS (dark strip below page hero)
   ============================================================ */
.svc-overview-section {
  background: var(--dark);
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}
.svc-overview-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Services page: hero grows so hero + overview cards = 100vh.
   480px ≈ svc-overview-section height (160px padding + ~320px cards). */
@media (min-width: 992px) {
  .svc-above-fold .page-hero {
    min-height: calc(100vh - 480px);
  }
  /* Fade sits at viewport bottom on initial load — hide it so the dark
     section ends cleanly. It reappears once the user scrolls past. */
  .svc-above-fold .svc-overview-fade {
    display: none;
  }
}

.svc-overview-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
}
.svc-overview-card {
  background: #0D0C1A;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 32px 22px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc-overview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  border-radius: 0 0 4px 4px;
  background: var(--card-accent, #FF6635);
  opacity: 0.85;
}
.svc-overview-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
}
.svc-overview-icon-wrap {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 18px color-mix(in srgb, var(--card-accent) 15%, transparent);
}
.svc-overview-icon-wrap i { font-size: 1.75rem; }
.svc-overview-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.svc-overview-desc {
  color: rgba(255,255,255,0.42);
  font-size: 0.81rem;
  line-height: 1.75;
  margin-bottom: 22px;
  flex-grow: 1;
}
.svc-overview-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--card-accent, #FF6635);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--card-accent, #FF6635);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.svc-overview-arrow:hover {
  background: var(--card-accent, #FF6635);
  color: #fff;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mv-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 38px;
  height: 100%; transition: var(--t);
}
.mv-card:hover { box-shadow: var(--shadow-lg); border-color: rgba(255,102,53,0.12); }
.mv-icon {
  width: 60px; height: 60px; border-radius: var(--r-lg);
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  box-shadow: 0 6px 16px rgba(255,102,53,0.25);
}
.mv-card h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.mv-card p { color: var(--text-muted); line-height: 1.78; margin: 0; font-size: 0.94rem; }

.value-card {
  text-align: center; padding: 30px 22px;
  border-radius: var(--r-xl); background: var(--bg);
  border: 1px solid var(--border); transition: var(--t); height: 100%;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(255,102,53,0.15); }
.value-icon {
  width: 58px; height: 58px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin: 0 auto 16px;
}
.value-card h5 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.value-card p  { font-size: 0.845rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.team-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 30px 22px;
  text-align: center; transition: var(--t); height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: rgba(255,102,53,0.12); }
.team-avatar {
  width: 82px; height: 82px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.7rem; font-weight: 700; color: #fff;
  box-shadow: 0 8px 20px rgba(255,102,53,0.25);
}
.team-card h5 { font-size: 1.02rem; font-weight: 700; margin-bottom: 3px; letter-spacing: -0.01em; }
.team-role { font-size: 0.8rem; color: var(--orange); font-weight: 600; display: block; margin-bottom: 10px; }
.team-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.team-socials { display: flex; justify-content: center; gap: 7px; }
.team-soc {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.8rem; transition: var(--t);
}
.team-soc:hover { background: var(--orange); color: #fff; border-color: var(--orange); transform: translateY(-1px); }

.about-stat { text-align: center; padding: 24px 20px; border-radius: var(--r-lg); background: var(--bg-2); border: 1px solid var(--border); }
.about-stat .num { font-size: 2.4rem; font-weight: 800; line-height: 1; display: block; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-stat .lbl { font-size: 0.76rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.09em; margin-top: 6px; display: block; font-weight: 600; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 32px 28px;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: var(--r-md);
  background: rgba(255,102,53,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem;
}
.contact-info-item h6 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-light); margin-bottom: 4px; }
.contact-info-item p  { font-size: 0.9rem; color: var(--text); margin: 0; font-weight: 500; }

.contact-form-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 38px;
}

.form-label-custom { font-size: 0.84rem; font-weight: 600; color: var(--text-2); margin-bottom: 7px; display: block; }
.form-control-custom {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: 0.9rem; color: var(--text); background: var(--bg-2);
  transition: var(--t); outline: none; font-family: var(--font); appearance: none;
}
.form-control-custom:focus {
  border-color: var(--orange); background: var(--bg);
  box-shadow: 0 0 0 3px rgba(255,102,53,0.1);
}
.form-control-custom::placeholder { color: var(--text-light); }
.form-select-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239CA3AF' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer;
}
.form-group { margin-bottom: 18px; }

.form-alert { display: none; border-radius: var(--r-md); padding: 13px 16px; font-size: 0.875rem; font-weight: 500; align-items: center; gap: 9px; margin-bottom: 16px; }
.form-alert.hidden { display: none; }
.form-alert.show { display: flex; }
.alert-success-msg { background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.25); color: #065f46; }
.alert-error-msg   { background: rgba(255,102,53,0.07); border: 1px solid rgba(255,102,53,0.25); color: #7f1d1d; }

/* FAQ */
.faq-item {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-md); margin-bottom: 8px; overflow: hidden; transition: var(--t);
}
.faq-item.open { border-color: rgba(255,102,53,0.3); box-shadow: var(--shadow-sm); }
.faq-q { padding: 17px 20px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; user-select: none; }
.faq-q h6 { font-size: 0.9rem; font-weight: 600; margin: 0; color: var(--text); }
.faq-toggle {
  width: 26px; height: 26px; min-width: 26px; border-radius: var(--r-sm);
  background: var(--bg-2); display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--t); color: var(--text-muted);
}
.faq-item.open .faq-toggle { background: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 20px 18px; font-size: 0.865rem; color: var(--text-muted); line-height: 1.78; margin: 0; }
.faq-item.open .faq-a { max-height: 300px; }

/* Map */
.map-placeholder {
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-2xl);
  height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-muted); gap: 10px;
}
.map-placeholder i { font-size: 2rem; color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); }
.footer-top { padding: 72px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.06); }

.footer-logo-wrap {
  display: inline-flex;
  align-items: center; margin-bottom: 18px;
}
.footer-logo-wrap img { height: 45px; width: auto; display: block; }

.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 260px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 35px; height: 35px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 0.8rem; transition: var(--t);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }

.footer-heading {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.85); margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 0.845rem; color: rgba(255,255,255,0.42);
  display: inline-flex; align-items: center; gap: 5px; transition: var(--t);
}
.footer-links a:hover { color: var(--orange); gap: 8px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; }
.footer-contact-icon {
  width: 30px; height: 30px; min-width: 30px;
  background: rgba(255,102,53,0.12); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 0.76rem; margin-top: 2px;
}
.footer-contact-item span { font-size: 0.835rem; color: rgba(255,255,255,0.42); line-height: 1.5; }

.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.25); margin: 0; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.76rem; color: rgba(255,255,255,0.25); transition: var(--t); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer; z-index: 999;
  opacity: 0; transform: translateY(10px); transition: var(--t); border: none;
  box-shadow: 0 4px 14px rgba(255,102,53,0.4);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--orange-d); color: #fff; transform: translateY(-3px); }

/* Spinner */
.spinner { width: 17px; height: 17px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
.loading .spinner { display: inline-block; }
.loading .btn-text { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-py { padding: 72px 0; }
  .hero-stats { gap: 24px; }
  /* Hide step connectors when not in single-row layout */
  .col-lg-2:not(:last-child) .process-step::after { display: none; }
  .service-card-title { font-size: 1.6rem; }
  .service-card-redesign { padding: 36px; }
}
@media (max-width: 768px) {
  .section-py { padding: 56px 0; }
  .hero { min-height: 90vh; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn-primary-custom,
  .hero-cta .btn-outline-white { width: 100%; justify-content: center; }
  .service-detail-card { padding: 26px; }
  .contact-form-card { padding: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .code-body { font-size: 0.7rem; }
  .metric-row { gap: 10px; }
  .cta-section { padding: 72px 0; }
  .page-hero { padding: 110px 0 56px; }
  .service-card-title { font-size: 1.4rem; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .cta-title { font-size: 1.8rem; }
  .hero-stats { gap: 18px; }
  .hero-stat .n { font-size: 1.4rem; }
  .navbar-logo { height: 34px; }
  .page-hero { padding: 96px 0 48px; }
  .service-card-title { font-size: 1.25rem; }
  /* Stack stat icon + text vertically so col-6 (~160px) isn't cramped */
  .stat-item { flex-direction: column; gap: 10px; }
  .stat-item-text { text-align: center; }
  .stat-item .big-num { font-size: 2rem; }
  /* Tighten service-card-redesign on very small screens */
  .service-card-redesign { padding: 22px; }
}
