@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');/* ═══════════════════════════════════════════════════
   Navbar — Premium Floating Glass
══════════════════════════════════════════════════ */

.navbar-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
  border-bottom: 1px solid transparent;
  height: 80px;
}

/* On scroll — glass effect activates */
.navbar-main.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.07);
  box-shadow: 0 1px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(99,102,241,0.04);
  height: 66px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
}

/* ── Logo ── */
.logo-wrapper {
  position: relative;
  padding: 0.6rem;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.logo-wrapper:hover { opacity: 0.8; }

.logo-bracket {
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: var(--accent-base);
  border-style: solid;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}

.logo-wrapper:hover .logo-bracket { opacity: 0.9; }

.bracket-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.bracket-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.bracket-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.bracket-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* ── Desktop Links ── */
.nav-links-list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.18s ease, color 0.18s ease;
  text-decoration: none;
}

.nav-link-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
  transition: color 0.18s ease;
  font-family: var(--font-main);
}

.nav-link-num {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--accent-base);
  opacity: 0;
  margin-bottom: 0.2rem;
  letter-spacing: 0.1em;
  transition: opacity 0.18s ease;
}

.nav-link-item:hover .nav-link-num { opacity: 0.5; }
.nav-link-item.active .nav-link-num { opacity: 1; }

.nav-link-item:hover .nav-link-label,
.nav-link-item.active .nav-link-label {
  color: var(--text-main);
}

.nav-link-item:hover {
  background: rgba(255,255,255,0.04);
}

.nav-link-item.active {
  background: rgba(99,102,241,0.08);
}

/* Active underline */
.nav-link-item.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  border-radius: 2px;
}

/* ── Centre Breadcrumb ── */
.nav-hud-data {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.25;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .nav-hud-data { display: none; }
}

.hud-path {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Actions ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid rgba(148,163,184,0.10);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s ease;
}

.theme-toggle-btn:hover {
  color: var(--text-main);
  border-color: rgba(201, 151, 62, 0.35);
  background: rgba(201, 151, 62, 0.06);
}


/* ── Mobile Toggle (shown via CSS on small screens) ── */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid rgba(148,163,184,0.10);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.18s ease;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }
  .nav-desktop {
    display: none;
  }
}

/* ── Mobile Menu ── */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 998;
  display: flex;
  flex-direction: column;
  padding: 7rem 2.5rem 4rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(148,163,184,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-sub);
  transition: color 0.18s ease;
}

.mobile-nav-link:hover { color: var(--text-main); }

.mobile-nav-link span:last-child {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  opacity: 0.3;
}
/* ============================================================
   SX-TECH Admin Panel — Elite Industrial Engineering Theme
   ============================================================ */

:root {
  --adm-bg:          #0F172A; /* Slate 900 */
  --adm-bg2:         #1E293B; /* Slate 800 */
  --adm-glass:       transparent;
  --adm-glass-h:     rgba(99, 102, 241, 0.04);
  --adm-border:      rgba(255, 255, 255, 0.08);
  --adm-border-h:    rgba(99, 102, 241, 0.3);
  --adm-border-act:  #6366F1; /* Indigo 500 */
  --adm-blue:        #818CF8; /* Indigo 400 */
  --adm-green:       #34D399; /* Emerald 400 */
  --adm-purple:      #A78BFA; /* Violet 400 */
  --adm-amber:       #FBBF24; /* Amber 400 */
  --adm-red:         #F87171; /* Red 400 */
  --adm-glow-blue:   rgba(99, 102, 241, 0.15);
  --adm-glow-purple: rgba(167, 139, 250, 0.15);
  --adm-sidebar-w:   260px;
  --adm-radius:      12px;
  --adm-radius-sm:   6px;
  --adm-trans:       all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET for admin scope ──────────────────────────────── */
.admin-layout *,
.admin-login-page * {
  box-sizing: border-box;
  font-family: var(--font-main);
}

/* ─── LAYOUT SHELL ──────────────────────────────────────── */
.admin-layout {
  display: flex;
  min-height: 100vh;
  background: var(--adm-bg);
  position: relative;
  overflow: hidden;
  /* Premium radial gradient background */
  background-image: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05), transparent 40%),
                    radial-gradient(circle at bottom left, rgba(167, 139, 250, 0.03), transparent 40%);
}

/* ─── SIDEBAR ────────────────────────────────────────────── */
.admin-sidebar {
  width: var(--adm-sidebar-w);
  min-height: 100vh;
  border-right: 1px solid var(--adm-border);
  display: flex;
  flex-direction: column;
  background: var(--adm-bg);
  z-index: 40;
  flex-shrink: 0;
  position: relative;
}

.admin-logo-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--adm-border);
}

.admin-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--adm-bg2);
  border: 1px solid var(--adm-border-act);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--adm-blue);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.9rem;
}

.admin-logo-text .admin-logo-title {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #FFF;
  text-transform: uppercase;
}

.admin-logo-text .admin-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--adm-blue);
  margin-top: 0.2rem;
  opacity: 0.7;
}

/* NAV */
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  margin-top: 0.75rem;
}

.admin-nav-section-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.25);
  font-weight: 700;
  padding: 0.65rem 0.75rem 0.35rem;
  margin-top: 0.75rem;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--adm-radius-sm);
  color: rgba(255,255,255,0.45);
  transition: var(--adm-trans);
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  background: none;
  font-family: inherit;
  width: 100%;
  text-align: left;
}

.admin-nav-item:hover {
  background: var(--adm-glass-h);
  color: #FAFAFA;
  border-color: var(--adm-border);
}

.admin-nav-item.active {
  background: rgba(129, 140, 248, 0.08);
  color: #FFF;
  border-color: rgba(129, 140, 248, 0.2);
}

.admin-nav-item svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: var(--adm-trans);
}

.admin-nav-item:hover svg,
.admin-nav-item.active svg {
  opacity: 1;
  color: var(--adm-blue);
}

/* Nav badge */
.admin-nav-badge {
  margin-left: auto;
  background: rgba(129, 140, 248, 0.1);
  color: var(--adm-blue);
  border: 1px solid rgba(129, 140, 248, 0.2);
  border-radius: 2px;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  letter-spacing: 0.04em;
}

.admin-nav-badge.amber {
  background: rgba(255,184,0,0.15);
  color: var(--adm-amber);
  border-color: rgba(255,184,0,0.25);
}

/* SIDEBAR FOOTER */
.admin-sidebar-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--adm-border);
  margin-top: auto;
}

.admin-user-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--adm-radius-sm);
  margin-bottom: 0.5rem;
}

.admin-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--adm-blue), var(--adm-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.admin-user-info .admin-user-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.admin-user-info .admin-user-role {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--adm-blue);
  opacity: 0.7;
}

.admin-env-pill {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.2);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.admin-env-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--adm-green);
  box-shadow: 0 0 6px var(--adm-green);
  animation: pulse-dot 2.5s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── CONTENT AREA ───────────────────────────────────────── */
.admin-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
  position: relative;
  z-index: 1;
}

/* TOPBAR */
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.75rem;
  border-bottom: 1px solid var(--adm-border);
  background: rgba(6, 8, 16, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 30;
}

/* Gradient accent on topbar bottom */
.admin-topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,163,255,0.25) 50%, transparent 100%);
}

.admin-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--adm-radius-sm);
  border: 1px solid var(--adm-border);
  background: var(--adm-glass);
  color: rgba(255,255,255,0.7);
  cursor: pointer;
}

.admin-breadcrumb {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.admin-breadcrumb-path {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
}

.admin-breadcrumb-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255,255,255,0.92);
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.admin-topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--adm-radius-sm);
  border: 1px solid var(--adm-border);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: var(--adm-trans);
  background: var(--adm-glass);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
}

.admin-topbar-btn:hover {
  border-color: var(--adm-border-h);
  color: rgba(255,255,255,0.85);
  background: var(--adm-glass-h);
}

/* BACKDROP */
.admin-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 35;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.admin-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* SCROLL + INNER */
.admin-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
}

.admin-scroll::-webkit-scrollbar { width: 4px; }
.admin-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.admin-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 2.25rem 2rem 4rem;
}

@media (min-width: 1024px) {
  .admin-inner { padding: 2.5rem 2.5rem 4rem; }
}

/* PAGE HEADER */
.admin-page-header {
  margin-bottom: 2.25rem;
}

.admin-page-header h1 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.94);
  letter-spacing: -0.02em;
}

.admin-page-header p {
  color: rgba(255,255,255,0.35);
  font-size: 0.88rem;
  max-width: 52ch;
}

/* ─── RESPONSIVE mobile ──────────────────────────────────── */
@media (max-width: 900px) {
  .admin-menu-toggle { display: flex; }

  .admin-sidebar {
    position: fixed;
    left: 0; top: 0;
    transform: translateX(-110%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 12px 0 60px rgba(0, 0, 0, 0.6);
  }

  .admin-sidebar.open { transform: translateX(0); }
  .admin-backdrop { display: block; }
}

/* ═══════════════════════════════════════════════════════════
   DASHBOARD
═══════════════════════════════════════════════════════════ */
.admin-grid-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .admin-grid-layout { grid-template-columns: 1fr; }
}

.admin-stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* STAT CARDS */
.stat-card {
  padding: 1.5rem;
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
  background: var(--adm-glass);
  transition: var(--adm-trans);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--stat-accent, var(--adm-blue)), transparent);
  opacity: 0.7;
}

.stat-card:hover {
  background: var(--adm-glass-h);
  border-color: var(--adm-border-h);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.stat-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  color: rgba(255,255,255,0.38);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.stat-trend {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ANALYTICS CARD */
.analytics-card {
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
  background: var(--adm-glass);
  padding: 1.5rem;
}

.analytics-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.analytics-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  font-weight: 700;
}

.analytics-trend-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,255,133,0.1);
  border: 1px solid rgba(0,255,133,0.2);
  color: var(--adm-green);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawChart 2.5s ease-out forwards;
}

@keyframes drawChart {
  to { stroke-dashoffset: 0; }
}

.analytics-stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-top: 1.25rem;
  text-align: center;
}

.analytics-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
}

.analytics-stat-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28);
  margin-top: 2px;
}

/* PIPELINE CARD */
.project-pipeline {
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
  background: var(--adm-glass);
  padding: 1.5rem;
  height: 100%;
}

.pipeline-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pipeline-item {
  margin-bottom: 1.5rem;
}

.pipeline-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.pipeline-count {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

.progress-track {
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* LEADS TABLE */
.leads-section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.leads-section-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.filter-pill-row {
  display: flex;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--adm-border);
  border-radius: 50px;
  padding: 0.2rem;
}

.filter-pill {
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--adm-trans);
  font-family: inherit;
}

.filter-pill.active {
  background: rgba(0,163,255,0.15);
  color: var(--adm-blue);
}

.filter-pill:hover:not(.active) {
  color: rgba(255,255,255,0.7);
}

/* Data table */
.data-table-wrapper {
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
  background: var(--adm-glass);
  overflow: hidden;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.data-table th {
  padding: 0.85rem 1.1rem;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
  border-bottom: 1px solid var(--adm-border);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.data-table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
  font-size: 0.875rem;
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.lead-row {
  transition: var(--adm-trans);
}

.lead-row:hover {
  background: rgba(255,255,255,0.025);
}

.status-badge {
  padding: 0.22rem 0.65rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.status-new {
  background: rgba(0,163,255,0.12);
  color: var(--adm-blue);
  border: 1px solid rgba(0,163,255,0.25);
}

.status-contacted {
  background: rgba(0,255,133,0.1);
  color: var(--adm-green);
  border: 1px solid rgba(0,255,133,0.25);
}

/* ═══════════════════════════════════════════════════════════
   CMS PANELS (Services, Portfolio, Apps)
═══════════════════════════════════════════════════════════ */
.grid-2-dashboard {
  display: grid;
  grid-template-columns: minmax(260px, 310px) 1fr;
  gap: 1.5rem;
  align-items: start;
}

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

.cms-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1rem;
}

.admin-search {
  flex: 1;
  min-width: 160px;
  padding: 0.6rem 1rem;
  border-radius: var(--adm-radius-sm);
  border: 1px solid var(--adm-border);
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-family: inherit;
}

.admin-search:focus {
  outline: none;
  border-color: var(--adm-blue);
  box-shadow: 0 0 0 3px rgba(0,163,255,0.1);
  background: rgba(0,163,255,0.04);
}

.admin-search::placeholder { color: rgba(255,255,255,0.2); }

.cms-list-panel {
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
  background: var(--adm-glass);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 220px);
}

.cms-list-panel-header {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.cms-list-scroll {
  overflow-y: auto;
  flex: 1;
  padding-right: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cms-list-scroll::-webkit-scrollbar { width: 4px; }
.cms-list-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
}

.cms-card {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--adm-border);
  background: rgba(255,255,255,0.018);
  cursor: pointer;
  transition: var(--adm-trans);
  text-align: left;
  width: 100%;
  color: inherit;
  font: inherit;
}

.cms-card:hover {
  border-color: var(--adm-border-h);
  background: var(--adm-glass-h);
}

.cms-card.active {
  border-color: rgba(0,163,255,0.4);
  background: rgba(0,163,255,0.07);
  box-shadow: inset 0 0 0 1px rgba(0,163,255,0.1);
}

.cms-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
}

.cms-card-actions {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.cms-card-title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  color: rgba(255,255,255,0.88);
}

.cms-card-meta {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
}

.cms-thumb {
  width: 56px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0,0,0,0.35);
  flex-shrink: 0;
}

.cms-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* EDITOR PANEL */
.editor-panel { min-height: 320px; }

.editor-card {
  padding: 1.75rem 2rem;
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
  background: var(--adm-glass);
}

.editor-card.editor-sticky {
  position: sticky;
  top: 1rem;
}

.editor-card-highlight {
  border-color: rgba(0,163,255,0.3);
  box-shadow: 0 0 0 1px rgba(0,163,255,0.08), 0 0 24px rgba(0,163,255,0.06);
}

.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--adm-border);
}

.editor-header h2 {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
}

.editor-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  padding: 3rem 2rem;
  border-radius: var(--adm-radius);
  border: 1px dashed rgba(255,255,255,0.08);
}

.editor-empty-icon {
  margin-bottom: 1.25rem;
  color: var(--adm-blue);
  opacity: 0.4;
}

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea,
.form-group select,
.admin-input {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--adm-border);
  padding: 0.7rem 0.95rem;
  border-radius: var(--adm-radius-sm);
  color: rgba(255,255,255,0.85);
  font-family: inherit;
  font-size: 0.875rem;
  transition: var(--adm-trans);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.admin-input:focus {
  outline: none;
  border-color: var(--adm-blue);
  background: rgba(0,163,255,0.05);
  box-shadow: 0 0 0 3px rgba(0,163,255,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.admin-input::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.admin-inner .form-grid .form-group { grid-column: auto; }

.form-sections {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.features-edit-list {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 0.3rem;
}

.features-edit-list::-webkit-scrollbar { width: 3px; }
.features-edit-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
}

.feature-edit-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.45rem;
}

.feature-edit-row .admin-input { flex: 1; }

/* STATUS PILLS */
.stat.hud-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--adm-blue);
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.8;
}

.hud-label.active {
  opacity: 1;
  color: #FFF;
}

.status-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.status-pill.live {
  background: rgba(0,255,133,0.1);
  color: var(--adm-green);
  border: 1px solid rgba(0,255,133,0.3);
}

.status-pill.draft {
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.35);
  border: 1px solid var(--adm-border);
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-icon-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--adm-radius-sm);
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,100,100,0.55);
  transition: var(--adm-trans);
  cursor: pointer;
}

.btn-icon-danger:hover {
  background: rgba(255,60,60,0.1);
  border-color: rgba(255,60,60,0.3);
  color: var(--adm-red);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: var(--adm-radius-sm);
  border: 1px solid var(--adm-border);
  background: var(--adm-glass);
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: var(--adm-trans);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--adm-glass-h);
  border-color: var(--adm-border-h);
  color: rgba(255,255,255,0.9);
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,60,60,0.1);
  border: 1px solid rgba(255,80,80,0.35);
  color: #ff9a9a;
  padding: 0.6rem 1.1rem;
  border-radius: var(--adm-radius-sm);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--adm-trans);
  font-family: inherit;
}

.btn-danger:hover {
  background: rgba(255,60,60,0.18);
  border-color: rgba(255,80,80,0.6);
  color: #ffb3b3;
}

/* ─── TOAST / MODALS ─────────────────────────────────────── */
.admin-toast {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 100;
  padding: 0.85rem 1.25rem;
  border-radius: var(--adm-radius-sm);
  background: rgba(0,255,133,0.1);
  border: 1px solid rgba(0,255,133,0.3);
  color: #b8ffd9;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 16px 50px rgba(0,0,0,0.5);
  animation: toast-in 0.3s ease;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.confirm-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: toast-in 0.2s ease;
}

.confirm-modal {
  width: 100%;
  max-width: 420px;
  padding: 2rem;
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
  background: rgba(9, 12, 21, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.confirm-modal h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.confirm-modal p {
  color: rgba(255,255,255,0.4);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.confirm-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

/* ─── EMAIL MANAGER ──────────────────────────────────────── */
.mono-muted {
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.em-hint {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.em-tabs {
  display: flex;
  border-bottom: 1px solid var(--adm-border);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.em-tab {
  padding: 0.75rem 1rem;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: var(--adm-trans);
  cursor: pointer;
  font-family: inherit;
}

.em-tab:hover { color: rgba(255,255,255,0.65); }

.em-tab.active {
  color: var(--adm-blue);
  border-bottom-color: var(--adm-blue);
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   LOGIN PAGE
═══════════════════════════════════════════════════════════ */
.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #060810;
  position: relative;
  overflow: hidden;
}

/* Animated mesh grid background */
.admin-login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,163,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,163,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 75%);
}

/* Orbs */
.admin-login-page::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,163,255,0.1) 0%, rgba(123,97,255,0.06) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.admin-login-card {
  width: 100%;
  max-width: 420px;
  padding: 2.5rem 2.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(8, 10, 18, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow:
    0 0 0 1px rgba(0,163,255,0.06),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Top accent glow on card */
.admin-login-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,163,255,0.7), transparent);
  border-radius: 999px;
}

.login-shield-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,163,255,0.15), rgba(123,97,255,0.12));
  border: 1px solid rgba(0,163,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--adm-blue);
  box-shadow: 0 0 30px rgba(0,163,255,0.15);
}

.login-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.94);
}

.login-subtitle {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2rem;
}

/* ─── APP PRODUCT MANAGER ────────────────────────────────── */
.app-prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.app-prod-card {
  border-radius: var(--adm-radius);
  border: 1px solid var(--adm-border);
  background: var(--adm-glass);
  padding: 1.5rem;
  transition: var(--adm-trans);
  position: relative;
  overflow: hidden;
}

.app-prod-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--prod-accent, var(--adm-blue)), transparent);
}

.app-prod-card:hover {
  border-color: var(--adm-border-h);
  background: var(--adm-glass-h);
  transform: translateY(-2px);
}

.app-prod-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-prod-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.app-prod-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
}

.app-prod-category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

.app-prod-price {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0.75rem 0 0.25rem;
}

.app-prod-price-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
}

.app-prod-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--adm-border);
}

/* ═══════════════════════════════════════════════════════════
   HUD UTILITY CLASSES  (used by all refactored admin pages)
═══════════════════════════════════════════════════════════ */

/* ─── Text gradient (matches public site) ───────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--adm-blue) 0%, #7b61ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── HUD label  (monospaced uppercase status tag) ──────── */
.hud-label {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
}

/* ─── HUD form label ────────────────────────────────────── */
.hud-form-label {
  display: block;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--adm-blue);
  margin-bottom: 0.5rem;
}

/* ─── HUD input group ───────────────────────────────────── */
.hud-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ─── HUD input / textarea / select ────────────────────── */
.hud-input {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--adm-border);
  border-radius: var(--adm-radius-sm);
  color: #FAFAFA;
  padding: 0.8rem 1rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  width: 100%;
  transition: var(--adm-trans);
  outline: none;
}

.hud-input:focus {
  border-color: var(--adm-blue);
  background: rgba(129, 140, 248, 0.03);
  box-shadow: 0 0 15px rgba(129, 140, 248, 0.05);
}

.hud-input::placeholder {
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--font-mono, ui-monospace, monospace);
}

/* keep textarea resizable vertically only */
textarea.hud-input { resize: vertical; }

/* ─── Primary button (shared admin CTA) ─────────────────── */
.btn-primary-admin {
  background: var(--adm-blue);
  color: #000;
  border: none;
  border-radius: var(--adm-radius-sm);
  padding: 0.8rem 1.75rem;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: var(--adm-trans);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-primary-admin:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 4px 20px rgba(129, 140, 248, 0.25);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  filter: none;
  transform: none;
}

/* ─── Overwrite old toast to match HUD palette ───────────── */
.admin-toast {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  padding: 1rem 2rem;
  background: var(--adm-blue);
  color: #000;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(0, 245, 255, 0.2);
  animation: toast-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── HUD img preview ────────────────────────────────────── */
.img-preview-lg {
  margin-top: 0.75rem;
  border: 1px solid var(--adm-border);
  overflow: hidden;
}

.img-preview-lg img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* ─── Scale-in animation ─────────────────────────────────── */
.scale-in-center {
  animation: scaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── Responsive: stack grid panels on narrow screens ────── */
@media (max-width: 900px) {
  .grid-2-dashboard {
    grid-template-columns: 1fr !important;
  }
}
/* App.css */

.app {
  /* padding handled per-page so hero can be full-bleed */
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 1.5rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
  background: var(--accent-glow);
  border: 1px solid var(--border-bright);
}


  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Interactive BG */
.interactive-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.btn-secondary {
  padding: 0.8rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.hero-img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
  transition: var(--transition-smooth);
}

.glow-effect {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Asymmetric Grid */
.services-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(300px, auto);
  gap: 2rem;
}

.service-card.size-large,
.service-card.size-medium,
.service-card.size-small {
  grid-column: span 1;
  grid-row: auto;
}

.services-asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem 1.5rem;
}

.service-card {
  perspective: 1000px;
  transform-style: preserve-3d;
}

.service-card:hover {
  border-color: var(--accent-blue);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-glow: 0 0 20px rgba(0, 163, 255, 0.2);
  --ease-luxury: cubic-bezier(0.83, 0, 0.17, 1);
}

/* App Production */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.app-features {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
}

.app-features li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.8rem;
  background: rgba(0, 163, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 163, 255, 0.2);
}

.iphone-mockup {
  width: 300px;
  height: 600px;
  border-radius: 40px;
  padding: 12px;
  margin: 0 auto;
  border: 4px solid var(--border-subtle);
  background: var(--bg-primary);
  position: relative;
  z-index: 2;
}

.iphone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.app-ui-preview {
  padding: 20px;
}

.ui-header {
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-bottom: 20px;
}

.ui-chart {
  height: 150px;
  background: linear-gradient(to top, rgba(0, 163, 255, 0.2), transparent);
  border-radius: 15px;
  margin-bottom: 20px;
}

.ui-cards div {
  height: 80px;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  margin-bottom: 15px;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
}

/* Footer Bottom Enhancement */
.acknowledgement {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0.8;
}

.copyright {
  font-size: 0.9rem;
}

/* Services Page Pillars */
.services-pillars {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}

.pillars-grid-subset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.pillar-card {
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

.pillar-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin: 1rem 0;
}

.pillar-list {
  margin-top: 2rem;
}

.pillar-list li {
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.pillar-visual {
  font-size: 5rem;
  opacity: 0.1;
}

/* About Page Timeline */
.about-hero {
  text-align: center;
  margin-bottom: 8rem;
}

.about-mission {
  font-size: 1.5rem;
  max-width: 900px;
  margin: 2rem auto;
  color: var(--text-muted);
}

.methodology-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.methodology-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--border-subtle);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 4rem;
  width: 50%;
  position: relative;
}

.timeline-item.left { left: 0; padding-right: 3rem; text-align: right; }
.timeline-item.right { left: 50%; padding-left: 3rem; }

.timeline-content {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

/* Accelerator Page */
.accelerator-hero {
  padding: 6rem;
  text-align: center;
}

.pitch {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  margin: 2rem 0;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.inclusion-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

/* Responsive updates for asymmetric grid */
@media (min-width: 769px) {
  .services-asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 2rem;
  }

  .service-card.size-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .service-card.size-medium {
    grid-column: span 2;
  }

  .service-card.size-small {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .services-pillars { gap: 2rem; }
  .pillars-grid-subset { grid-template-columns: 1fr; }
  .methodology-timeline::before { left: 0; }
  .timeline-item { width: 100%; left: 0 !important; padding: 0 0 0 2rem !important; text-align: left !important; }
  .grid-3 { grid-template-columns: 1fr; }
  .accelerator-hero { padding: 3rem 1.5rem; }
  
  .iphone-mockup {
    width: 260px;
    height: 520px;
  }
  
  .app-visual {
    margin-top: 3rem;
  }
}

.service-card {
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

.service-card.featured {
  border-color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.05);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-blue);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.service-desc {
  color: var(--text-muted);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 2.5rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.bullet {
  color: var(--accent-blue);
  margin-right: 0.5rem;
}

.btn-outline {
  border: 1px solid var(--border-subtle);
  padding: 0.8rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 600;
}

.enterprise-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin-top: 4rem;
}

/* Advantage */
.advantage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.advantage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.advantage-item {
  display: flex;
  gap: 1.5rem;
}

.advantage-icon {
  font-size: 2rem;
}

.advantage-text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.advantage-text p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.advantage-visual {
  height: 400px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
}

.stat-card {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
}

.portfolio-img-wrapper {
  position: relative;
  height: 100%;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition-smooth);
}

.portfolio-card:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-card:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.category {
  font-size: 0.8rem;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  position: relative;
  z-index: 2;
}

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

.footer-tagline {
  color: var(--text-muted);
  margin: 1.5rem 0;
  font-size: 1.1rem;
}

.legal-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-links h4, .footer-contact h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: var(--text-muted);
}

.footer-links ul li a:hover {
  color: var(--accent-blue);
}

.footer-email {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container, .advantage-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 3rem;
  }
  
  .advantage-visual {
    height: 300px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .advantage-list {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .enterprise-box {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

section.fade-in {
  transition-delay: 0.1s;
}

.service-card:nth-child(3) { transition-delay: 0.3s; }

/* Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.gap-8 { gap: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-20 { margin-top: 5rem; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.sticky { position: sticky; }
.top-10 { top: 2.5rem; }

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

.min-height-screen { min-height: 100vh; }
.max-width-400 { max-width: 400px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.flex { display: flex; }
.justify-between { justify-content: space-between; }
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   HOME: SERVICES GRID (4-col, 2-col mobile)
   ============================================= */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

/* =============================================
   PORTFOLIO EXPANDED
   ============================================= */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* Portfolio Filter Buttons */
.portfolio-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  background: rgba(0, 163, 255, 0.08);
}

/* Case Study page */
.case-study-page h1 {
  font-family: var(--font-heading);
}

.project-hero-viz {
  position: relative;
  box-shadow: 0 40px 100px -20px rgba(0, 163, 255, 0.2);
}

/* =============================================
   FOOTER V2
   ============================================= */
.footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

@media (max-width: 1100px) {
  .footer-grid-v2 { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 768px) {
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 480px) {
  .footer-grid-v2 { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-col ul {
  display: grid;
  gap: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--text-sub);
  transition: color 0.2s ease;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 0.1rem 0;
}

.footer-col ul li a:hover {
  color: var(--accent-base);
}

/* Contact column links */
.footer-contact-col a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
  cursor: pointer;
}

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

/* Social links — icon variant */
.social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
  color: var(--accent-base);
  border-color: var(--border-bright);
}

.footer-contact-col .footer-contact-items {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  font-size: 0.85rem;
}

/* Partner Trust Strip */
.footer-partner-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1rem 0;
  background: rgba(255,255,255,0.02);
}

.partner-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.4;
}

/* =============================================
   SERVICES PAGE: PROCESS + TECH CAP GRIDS
   ============================================= */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.process-step-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  opacity: 0.07;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.process-step-icon {
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.process-step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.tech-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.tech-cap-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.tech-cap-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tech-cap-card ul {
  display: grid;
  gap: 0.6rem;
}

.tech-cap-card ul li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.feature-check {
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* =============================================
   APP PRODUCTS PAGE
   ============================================= */
.white-label-page .section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.wl-hero {
  padding-top: 8rem;
}

.wl-trust-bar {
  border-radius: 100px;
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.wl-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wl-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.wl-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.tier-card.featured {
  border-color: rgba(0, 163, 255, 0.45);
  background: rgba(0, 163, 255, 0.06);
  box-shadow:
    0 0 0 1px rgba(0, 163, 255, 0.12),
    0 28px 70px -28px rgba(0, 163, 255, 0.45);
}

@media (min-width: 900px) {
  .tier-card.featured {
    transform: translateY(-4px);
  }
}

.wl-tech-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.wl-tech-aside {
  position: sticky;
  top: 120px;
}

@media (max-width: 900px) {
  .wl-tech-split {
    grid-template-columns: 1fr;
  }

  .wl-tech-aside {
    position: static;
  }
}

.text-accent-blue {
  color: var(--accent-blue);
}

/* Responsive utilities */
.flex-wrap { flex-wrap: wrap; }
.gap-4 { gap: 1rem; }
.justify-center { justify-content: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-6 { margin-top: 1.5rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.inline { display: inline; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.gap-8 { gap: 2rem; }
.items-start { align-items: flex-start; }
.p-8 { padding: 2rem; }
.p-6 { padding: 1.5rem; }

@media (max-width: 900px) {
  .footer-grid-v2 { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}



:root {
  /* ═══════════════════════════════════════════════════
     SX-TECH — Elite Design System v3
     Palette: Deep Navy / Soft Alabaster + Gold
  ══════════════════════════════════════════════════ */

  /* Dark Theme (Default) — lightened for readability */
  --bg-primary:       #060A14;
  --bg-secondary:     #0C1220;
  --bg-tertiary:      #131B2E;
  --bg-raised:        #1A2540;
  --bg-glass:         rgba(12, 18, 32, 0.88);
  --bg-glass-strong:  rgba(6, 10, 20, 0.95);

  /* ─── Accent: Realistic Liquid Gold ───────────────
     Layered like real metal: bright highlight, warm
     mid-tone, deep shadow. Reference: #D4AF37 base.
  ─────────────────────────────────────────────────── */
  --accent-base:         #C9973E;
  --accent-hover:        #EBC96A;
  --accent-secondary:    #8B6914;
  --accent-cta:          #D4AF37;
  --accent-blue:         #D4AF37;
  --accent-glow:         rgba(201, 151, 62, 0.10);
  --accent-glow-strong:  rgba(201, 151, 62, 0.25);

  /* Realistic metallic gradient stops */
  --gradient-gold-1: #8B6914;
  --gradient-gold-2: #BF953F;
  --gradient-gold-3: #FCF6BA;
  --gradient-gold-4: #D4AF37;
  --gradient-gold-5: #AA771C;
  --gradient-gold-6: #F7EF8A;

  --gradient-start:  #BF953F;
  --gradient-mid:    #FCF6BA;
  --gradient-end:    #AA771C;

  /* ─── Typography: High-Contrast for Dark Theme ──── */
  --text-main:  #F0F2F5;       /* Bright white — primary text    */
  --text-sub:   #C8CDD6;       /* Soft grey — secondary text     */
  --text-muted: #8B95A5;       /* Mid grey — labels, captions    */
  --text-dim:   #5A6478;       /* Dim — timestamps, disabled     */

  /* ─── Borders ──────────────────────────────────── */
  --border-subtle:  rgba(255, 255, 255, 0.07);
  --border-mid:     rgba(255, 255, 255, 0.12);
  --border-bright:  rgba(201, 151, 62, 0.30);
  --border-glass:   rgba(255, 255, 255, 0.04);

  /* ─── Shadows ──────────────────────────────────── */
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.25);
  --shadow-md:   0 12px 32px rgba(0,0,0,0.35);
  --shadow-lg:   0 32px 80px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 40px rgba(201, 151, 62, 0.08);

  --font-main:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --font-heading: 'Outfit', sans-serif;

  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm:  8px;
  --radius-xs:  4px;

  --transition-smooth: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.light-theme {
  /* Light Theme (Soft Alabaster) */
  --bg-primary:       #F9FAFB;
  --bg-secondary:     #FFFFFF;
  --bg-tertiary:      #F1F5F9;
  --bg-raised:        #E2E8F0;
  --bg-glass:         rgba(255, 255, 255, 0.9);
  --bg-glass-strong:  rgba(255, 255, 255, 1);

  --accent-base:        #B45309; /* Deep Amber Gold */
  --accent-hover:       #92400E;
  --accent-secondary:   #78350F;
  --accent-cta:         #B45309;
  --accent-blue:        #B45309;
  --accent-glow:        rgba(180, 83, 9, 0.06);
  --accent-glow-strong: rgba(180, 83, 9, 0.15);

  --gradient-start: #D97706;
  --gradient-end:   #92400E;

  --text-main:  #0F172A;
  --text-sub:   #334155;
  --text-muted: #64748B;
  --text-dim:   #94A3B8;

  --border-subtle: rgba(15, 23, 42, 0.06);
  --border-mid:    rgba(15, 23, 42, 0.1);
  --border-bright: rgba(79, 70, 229, 0.25);
  --border-glass:  rgba(15, 23, 42, 0.03);

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:   0 12px 32px rgba(0,0,0,0.06);
  --shadow-lg:   0 32px 80px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
  /* Subtle dot grid — very quiet */
  background-image: radial-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.light-theme body,
body.light-theme {
  background-image: radial-gradient(rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
}

p {
  line-height: 1.7;
  color: var(--text-sub);
}

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

/* ─── Engineering HUD Label ───────────────────────── */

.hud-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-base);
  opacity: 0.75;
  display: block;
}

/* ─── Glass Utility ───────────────────────────────── */

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

/* ─── Layout ──────────────────────────────────────── */

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5rem;
}

@media (max-width: 1280px) { .container { padding: 0 3rem; } }

@media (max-width: 768px)  { .container { padding: 0 1.5rem; } }

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding { padding: 4rem 0; }
}

/* ─── Text Utilities ──────────────────────────────── */

.text-gradient {
  background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent-base);
  background-size: 200% auto;
  animation: shine 4s linear infinite;
}

/* ─── Realistic 3D Metallic Gold ─────────────────────
   Multi-stop gradient simulates actual metal reflection:
   deep shadow → warm gold → bright shine → gold → shadow
   Combined with layered drop-shadows for true 3D depth.
──────────────────────────────────────────────────── */

.text-gold-3d {
  background: linear-gradient(
    160deg,
    var(--gradient-gold-1) 0%,
    var(--gradient-gold-2) 20%,
    var(--gradient-gold-3) 38%,
    var(--gradient-gold-6) 50%,
    var(--gradient-gold-3) 62%,
    var(--gradient-gold-4) 78%,
    var(--gradient-gold-5) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  /* Layered shadows: hard engraved shadow + soft warm glow */
  filter:
    drop-shadow(0 1px 0 rgba(0,0,0,0.7))
    drop-shadow(0 2px 0 rgba(0,0,0,0.5))
    drop-shadow(0 6px 20px rgba(201, 151, 62, 0.35))
    drop-shadow(0 0 40px rgba(252, 246, 186, 0.10));
  font-weight: 900;
  letter-spacing: -0.03em;
  position: relative;
  animation: gold-shimmer 5s ease-in-out infinite;
}

@keyframes gold-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes shine {
  to { background-position: 200% center; }
}

.text-accent { color: var(--accent-base); }

.text-muted  { color: var(--text-muted); }

/* ─── Bento Grid ──────────────────────────────────── */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

/* ─── Services Bento Grid (Home page) ─────────────── */

.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

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

/* Service card bottom gradient sweep on hover */

.card-gradient-sweep {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(99,102,241,0.06), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover .card-gradient-sweep {
  opacity: 1;
}

.bento-item {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
  isolation: isolate;
}

.bento-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(600px circle at var(--mouse-x,50%) var(--mouse-y,50%), rgba(99,102,241,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.bento-item:hover::before { opacity: 1; }

.bento-item:hover {
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 0 0 1px rgba(99,102,241,0.08), 0 24px 48px rgba(0,0,0,0.5), 0 0 30px rgba(99,102,241,0.08);
  transform: translateY(-2px);
}

/* Portfolio card hover effects */

.portfolio-card .port-card-img {
  transform: scale(1.0);
}

.portfolio-card:hover .port-card-img {
  transform: scale(1.06);
  opacity: 0.85 !important;
}

.port-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.port-overlay span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.portfolio-card:hover .port-overlay {
  opacity: 1;
}

/* btn-outline — bordered accent button */

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--accent-base);
  color: var(--accent-base);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--accent-glow);
  color: var(--accent-base);
}

/* ─── Section Badge ───────────────────────────────── */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-bright);
  color: var(--accent-base);
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  background: var(--accent-glow);
}

/* hero-badge → pill badge */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-bright);
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
  color: var(--accent-base);
  margin-bottom: 1.2rem;
  background: var(--accent-glow);
  border-radius: 100px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-base);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-base);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

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

.section-header {
  margin-bottom: 4rem;
}

.section-header.text-center { text-align: center; }

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

/* ─── Buttons ─────────────────────────────────────── */

@keyframes shimmer {
  0%   { transform: translateX(-100%) skewX(-12deg); }
  100% { transform: translateX(200%) skewX(-12deg); }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-base) 0%, var(--accent-secondary) 100%);
  color: #fff;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-main);
  letter-spacing: -0.01em;
  font-size: 0.9rem;
  box-shadow: 0 0 0 1px rgba(99,102,241,0.4), 0 4px 20px rgba(99,102,241,0.25);
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

/* shimmer sweep on hover */

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%) skewX(-12deg);
  transition: none;
}

.btn-primary:hover::after {
  animation: shimmer 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(99,102,241,0.6), 0 8px 32px rgba(99,102,241,0.35);
  transform: translateY(-2px);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-main);
  letter-spacing: -0.01em;
  font-size: 0.9rem;
  border: 1px solid var(--border-mid);
  color: var(--text-sub);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.22,1,0.36,1);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: rgba(99,102,241,0.45);
  color: var(--text-main);
  background: rgba(99,102,241,0.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border-bright);
  color: var(--accent-base);
  background: transparent;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.22,1,0.36,1);
}

.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(99,102,241,0.15);
}

.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }

/* ─── Nav responsive ─────────────────────────────── */

@media (max-width: 768px) {
  .nav-desktop  { display: none !important; }
  .mobile-toggle { display: flex !important; align-items: center; justify-content: center; }
}

.mobile-toggle {
  display: none;
  background: var(--bg-raised);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.45rem;
  color: var(--text-main);
  transition: var(--transition-fast);
}

.mobile-toggle:hover { border-color: var(--border-bright); }

/* ─── Advantage grid responsive ──────────────────── */

@media (max-width: 900px) {
  .advantage-main-grid { grid-template-columns: 1fr !important; }
}

/* ─── Fade-in Observer class ─────────────────────── */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Spin animation ─────────────────────────────── */

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── Service icon wrapper legacy ───────────────── */

.service-icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-bright);
  margin-bottom: 1.5rem;
  color: var(--accent-base);
  background: var(--accent-glow);
}

.feature-check { color: var(--accent-base); }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  font-size: 0.85rem;
  text-transform: uppercase;
  border: 1px solid var(--border-bright);
  color: var(--text-main);
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  border-color: var(--accent-base);
  background: rgba(99, 102, 241, 0.1);
  box-shadow: 0 0 20px var(--accent-glow);
  transform: translateY(-1px);
}

.play-icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero-stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--accent-base) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}

.hero-stat-label {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--border-bright), transparent);
}

/* 3D Orb Drift Animations */

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -30px) scale(1.08); }
  66% { transform: translate(-20px, 20px) scale(0.92); }
}

@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-15px, -20px) scale(1.1); }
}

.hero-visual-wrapper {
  position: relative;
}

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

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.glow-effect {
  position: absolute;
  top: -30%;
  right: -30%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--border-subtle) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.floating-badge-1 { top: 10%; left: -20px; }

.floating-badge-2 { top: 40%; right: -30px; }

.floating-badge-3 { bottom: 15%; left: 10%; }

.badge-icon {
  color: var(--accent-blue);
}

.badge-title {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
}

.badge-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Section Styles */

.section-header {
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Home Services */

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.home-service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.home-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  border: 1px solid;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-top: 1rem;
}

/* Process Section */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.process-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--border-subtle);
  font-family: var(--font-heading);
  line-height: 1;
}

.process-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-base);
  transition: width 0.5s ease;
}

.process-card:hover .process-line {
  width: 100%;
}

/* Tech Stack */

.tech-section {
  background: var(--bg-secondary);
}

.tech-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-desc {
  margin: 1.5rem 0 2rem;
  line-height: 1.7;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tech-item {
  padding: 1rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.tech-name {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.tech-category {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Testimonials */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.testimonial-quote {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* CTA Section */

.home-cta-section {
  padding-bottom: 100px;
}

.cta-inner {
  padding: 4rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--border-subtle) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

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

.cta-desc {
  max-width: 500px;
  margin: 1rem auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Advantage Section */

.advantage-list {
  display: grid;
  gap: 1.5rem;
}

.advantage-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.advantage-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--accent-blue);
  flex-shrink: 0;
}

.advantage-text h4 {
  margin-bottom: 0.5rem;
}

.advantage-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.advantage-visual {
  padding: 3rem;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.advantage-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--border-subtle) 0%, transparent 70%);
  filter: blur(40px);
}

/* Portfolio Section */

.portfolio-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-base);
  color: white;
  border-color: transparent;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.portfolio-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img-wrapper img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-overlay.visible {
  opacity: 1;
}

.portfolio-overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay-content {
  transform: translateY(0);
}

.portfolio-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0.75rem 0;
}

.portfolio-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.portfolio-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.75rem;
}

.portfolio-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.portfolio-info {
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-category-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.portfolio-year {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer Styles */

.footer-newsletter {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(148,163,184,0.06);
}

.newsletter-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(148,163,184,0.07);
}

.newsletter-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.newsletter-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-muted);
}

.newsletter-input-wrapper input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148,163,184,0.10);
  padding: 0.8rem 1rem 0.8rem 2.75rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  min-width: 260px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.newsletter-input-wrapper input:focus {
  border-color: rgba(99,102,241,0.4);
}

.newsletter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-main {
  padding: 4rem 0;
}

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

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.legal-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.72rem;
  border: 1px solid rgba(148,163,184,0.10);
  color: var(--text-muted);
  transition: all 0.2s ease;
  background: transparent;
}

.social-link:hover {
  border-color: rgba(99,102,241,0.35);
  color: var(--text-main);
  background: rgba(99,102,241,0.08);
  transform: translateY(-2px);
}

.footer-links h4, .footer-contact h4, .footer-col h4 {
  font-size: 0.72rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-sub);
  font-family: var(--font-mono);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--accent-blue);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.footer-email {
  color: var(--accent-blue) !important;
  font-weight: 600;
}

.footer-bottom {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(148,163,184,0.06);
}

.acknowledgement {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Form Styles */

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1rem 1rem 3rem;
  border-radius: var(--radius-md);
  color: white;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: var(--border-subtle);
}

.form-icon {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.form-group.focused .form-icon {
  color: var(--accent-blue);
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-base);
  transition: width 0.3s ease;
}

.form-group.focused .form-line {
  width: 100%;
}

.form-submit-btn {
  width: 100%;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.success-message {
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 255, 133, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00FF85;
}

.success-message h3 {
  margin-bottom: 0.5rem;
}

.success-btn {
  margin-top: 1.5rem;
  display: inline-flex;
}

/* Contact Page */

.contact-hero {
  padding: 80px 0;
  text-align: center;
}

.contact-hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.contact-hero-sub {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.contact-info-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.contact-info-card h3 {
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-top: 0.5rem;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-desc {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-process {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.process-step-num {
  width: 40px;
  height: 40px;
  background: var(--accent-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-process-step h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-map-section {
  padding-bottom: 100px;
}

.contact-map-wrapper {
  padding: 3rem;
  border-radius: var(--radius-lg);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-content {
  text-align: center;
}

.map-content h3 {
  margin-bottom: 0.5rem;
}

.map-dots {
  position: relative;
  width: 100%;
  height: 200px;
  margin-top: 2rem;
}

.map-dot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.dot-pulse {
  width: 12px;
  height: 12px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.dot-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* About Page */

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero .hero-badge {
  margin-bottom: 1rem;
}

.about-mission {
  font-size: 1.35rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.about-stat-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(148,163,184,0.07);
  background: rgba(255,255,255,0.015);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-stat-card:hover {
  border-color: rgba(99,102,241,0.25);
  transform: translateY(-3px);
}

.about-stat-value {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
}

.about-stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148,163,184,0.07);
  background: rgba(255,255,255,0.015);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  border-color: rgba(99,102,241,0.22);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-base);
  margin-bottom: 1.5rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.methodology-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.methodology-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--border-subtle);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
}

.timeline-content {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  max-width: 350px;
}

.timeline-year {
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 2px rgba(99,102,241,0.3);
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.methodology-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.methodology-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}

.methodology-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(99,102,241,0.12);
}

.team-role {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.team-specialty {
  font-size: 0.9rem;
}

.about-cta {
  padding: 4rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about-cta-icon {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.about-cta .cta-desc {
  max-width: 500px;
  margin: 1rem auto 2rem;
}

/* Accelerator Page */

.acc-hero {
  padding: 80px 0;
}

.acc-pitch {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-muted);
  margin: 1.5rem 0;
}

.acc-price-wrapper {
  display: inline-block;
  padding: 2.5rem 3rem;
  border-radius: var(--radius-lg);
  max-width: 400px;
}

.acc-price-inner {
  text-align: center;
  margin-bottom: 1.5rem;
}

.acc-price-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.acc-price-value {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-blue);
}

.acc-price-currency {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.acc-price-features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.acc-price-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.acc-hero-cta {
  display: inline-flex;
  gap: 0.5rem;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.inclusion-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.inclusion-card.featured {
  border-color: var(--accent-blue);
  background: var(--border-subtle);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-base);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.inclusion-icon {
  width: 60px;
  height: 60px;
  background: var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.inclusion-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.inclusion-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.feature-check {
  color: var(--accent-blue);
  flex-shrink: 0;
}

.acc-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.acc-timeline-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.acc-timeline-day {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 120px;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.acc-timeline-day span {
  font-weight: 600;
  font-size: 0.9rem;
}

.acc-timeline-content {
  flex: 1;
}

.acc-timeline-content h3 {
  margin-bottom: 0.5rem;
}

.timeline-connector {
  position: absolute;
  left: 80px;
  bottom: -1rem;
  width: 2px;
  height: 1rem;
  background: var(--border-subtle);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.guarantee-item {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.guarantee-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  cursor: pointer;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.05rem;
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.visible {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
}

.acc-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.acc-cta-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.acc-cta-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.acc-cta-stat span:first-child {
  font-size: 1.5rem;
  font-weight: 800;
}

/* Services Page */

.services-hero {
  padding: 80px 0;
  text-align: center;
}

.page-header {
  max-width: 700px;
  margin: 0 auto;
}

.services-asymmetric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}

.service-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--border-subtle) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card-glow.active {
  opacity: 1;
}

.service-card-icon {
  width: 50px;
  height: 50px;
  background: var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.process-step-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.process-step-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--border-subtle);
  margin-bottom: 0.5rem;
}

.process-step-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.process-step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

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

.tech-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.tech-cap-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.tech-cap-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.tech-cap-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tech-cap-card li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.app-content .section-badge {
  margin-bottom: 0.5rem;
}

.app-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1rem 0 2rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-features li {
  display: flex;
  gap: 1rem;
}

.app-features .feature-icon {
  width: 45px;
  height: 45px;
  background: var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.app-features h4 {
  margin-bottom: 0.25rem;
}

.app-features p {
  font-size: 0.9rem;
}

.app-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.iphone-mockup {
  width: 280px;
  height: 560px;
  background: #000;
  border-radius: 40px;
  padding: 10px;
  border: 4px solid var(--border-subtle);
  position: relative;
  z-index: 1;
}

.iphone-notch {
  width: 40%;
  height: 25px;
  background: #000;
  border-radius: 0 0 15px 15px;
  margin: 0 auto;
}

.iphone-screen {
  width: 100%;
  height: calc(100% - 30px);
  border-radius: 30px;
  background: #0a0a0a;
  overflow: hidden;
  padding: 1rem;
}

.app-ui-preview .ui-header {
  height: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.app-ui-preview .ui-chart {
  height: 80px;
  background: linear-gradient(to top, var(--border-subtle), transparent);
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0.5rem;
}

.chart-bar {
  width: 12%;
  background: var(--accent-base);
  border-radius: 4px 4px 0 0;
}

.ui-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ui-card-item {
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--border-subtle) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

/* Admin Layout */

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-subtle);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.admin-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-weight: 500;
}

.admin-nav-item:hover, .admin-nav-item.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-blue);
}

.admin-content {
  flex: 1;
  padding: 3rem;
  overflow-y: auto;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-blue);
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.data-table-wrapper {
  border-radius: var(--radius-lg);
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  padding: 1rem;
  text-align: left;
  color: var(--text-muted);
  font-weight: 500;
  border-bottom: 1px solid var(--border-subtle);
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: capitalize;
}

.status-new {
  background: var(--border-subtle);
  color: var(--accent-blue);
}

.status-contacted {
  background: rgba(0, 255, 133, 0.2);
  color: #00FF85;
}

.services-list {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.services-list h2 {
  margin-bottom: 1.5rem;
}

.editor-panel .glass {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.admin-login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  max-width: 400px;
  width: 100%;
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

/* 404 Page */

.notfound-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.notfound-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--border-subtle) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 50px 50px;
}

.notfound-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.notfound-code {
  font-size: 8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--accent-base);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

.notfound-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.notfound-desc {
  max-width: 400px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.notfound-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-container, .advantage-grid, .tech-layout, 
  .contact-form-layout, .app-grid, .acc-cta-layout {
    grid-template-columns: 1fr;
  }
  
  .services-asymmetric-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps-grid, .tech-capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .inclusions-grid {
    grid-template-columns: 1fr;
  }
  
  .methodology-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .hero-stat-divider {
    display: none;
  }
  
  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-asymmetric-grid,
  .process-steps-grid,
  .tech-capabilities-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .methodology-timeline::before {
    display: none;
  }
  
  .timeline-item {
    padding: 0 !important;
    justify-content: flex-start !important;
  }
  
  .timeline-dot {
    display: none;
  }
  
  .iphone-mockup {
    width: 240px;
    height: 480px;
  }
}

/* Mobile Menu */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 1rem;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1rem;
}

.mobile-nav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  background: var(--border-subtle);
  color: var(--accent-blue);
}

.mobile-cta {
  margin-top: 1rem;
  text-align: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    display: none;
  }
}

/* Footer booking */

.footer-book {
  position: relative;
  z-index: 2;
}

.footer-book-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: clamp(1.75rem, 2vw, 2.4rem);
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 10% 10%, var(--border-subtle), transparent 35%),
              radial-gradient(circle at 80% 20%, rgba(123,97,255,0.05), transparent 35%),
              rgba(255,255,255,0.04);
}

.footer-book-info h3 {
  line-height: 1.2;
}

.footer-book-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-book-tags .tag {
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  background: rgba(255,255,255,0.04);
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-book-tags .tag.active,
.footer-book-tags .tag:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 1px var(--accent-blue);
  color: var(--accent-blue);
}

.footer-book-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-book-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem 1rem;
}

.footer-book-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.footer-book-form input,
.footer-book-form select,
.footer-book-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  color: var(--text-main);
  padding: 0.75rem 0.9rem;
  font-size: 0.95rem;
}

.footer-book-form textarea {
  resize: vertical;
}

.footer-book .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.success-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #4ade80;
  border-radius: 10px;
  font-size: 0.9rem;
}

/* =============================================
   UTILITY CLASSES (Tailwind Parity)
   ============================================= */

/* Layout */

.flex { display: flex; }

.flex-col { flex-direction: column; }

.flex-wrap { flex-wrap: wrap; }

.flex-1 { flex: 1; }

.items-center { align-items: center; }

.items-start { align-items: flex-start; }

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

.justify-between { justify-content: space-between; }

.grid { display: grid; }

.gap-2 { gap: 0.5rem; }

.gap-3 { gap: 0.75rem; }

.gap-4 { gap: 1rem; }

.gap-5 { gap: 1.25rem; }

.gap-6 { gap: 1.5rem; }

.gap-8 { gap: 2rem; }

.gap-10 { gap: 2.5rem; }

.hidden { display: none; }

.inline { display: inline; }

.shrink-0 { flex-shrink: 0; }

/* Spacing */

.mt-2 { margin-top: 0.5rem; }

.mt-4 { margin-top: 1rem; }

.mt-6 { margin-top: 1.5rem; }

.mt-8 { margin-top: 2rem; }

.mt-10 { margin-top: 2.5rem; }

.mt-12 { margin-top: 3rem; }

.mt-14 { margin-top: 3.5rem; }

.mt-16 { margin-top: 4rem; }

.mb-2 { margin-bottom: 0.5rem; }

.mb-4 { margin-bottom: 1rem; }

.mb-6 { margin-bottom: 1.5rem; }

.mb-8 { margin-bottom: 2rem; }

.mb-10 { margin-bottom: 2.5rem; }

.mb-12 { margin-bottom: 3rem; }

.mb-16 { margin-bottom: 4rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.ml-1 { margin-left: 0.25rem; }

.ml-2 { margin-left: 0.5rem; }

.p-2 { padding: 0.5rem; }

.p-4 { padding: 1rem; }

.p-6 { padding: 1.5rem; }

.p-8 { padding: 2rem; }

.p-10 { padding: 2.5rem; }

.p-12 { padding: 3rem; }

.pt-32 { padding-top: 8rem; }

.pb-20 { padding-bottom: 5rem; }

/* Typography */

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

.text-left { text-align: left; }

.text-right { text-align: right; }

.text-xs { font-size: 0.75rem; }

.text-sm { font-size: 0.875rem; }

.text-2xl { font-size: 1.5rem; }

.text-3xl { font-size: 1.875rem; }

.text-6xl { font-size: 3.75rem; }

.font-bold { font-weight: 700; }

.font-mono { font-family: 'JetBrains Mono', 'Fira Code', monospace; }

.uppercase { text-transform: uppercase; }

.tracking-widest { letter-spacing: 0.1em; }

.tracking-tighter { letter-spacing: -0.05em; }

.leading-tight { line-height: 1.25; }

.leading-relaxed { line-height: 1.625; }

/* Colors & Helpers */

.text-accent-blue { color: var(--accent-blue); }

.text-muted { color: var(--text-muted); }

.opacity-10 { opacity: 0.1; }

.opacity-40 { opacity: 0.4; }

.opacity-60 { opacity: 0.6; }

.opacity-80 { opacity: 0.8; }

.bg-white\/5 { background: rgba(255, 255, 255, 0.05); }

.bg-black\/20 { background: rgba(0, 0, 0, 0.2); }

.bg-black\/40 { background: rgba(0, 0, 0, 0.4); }

.border-subtle { border: 1px solid var(--border-subtle); }

.rounded-full { border-radius: 9999px; }

.rounded-xl { border-radius: 12px; }

.rounded-2xl { border-radius: 16px; }

.rounded-3xl { border-radius: 24px; }

.overflow-hidden { overflow: hidden; }

.aspect-video { aspect-ratio: 16 / 9; }

.max-w-2xl { max-width: 42rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }

/* =============================================
   COMPONENTS & SPECIALIZED STYLES
   ============================================= */

/* Success States */

.success-message {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.success-icon-wrapper {
  color: #00FF85;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.success-btn {
  margin-top: 2rem;
}

/* Forms Utility */

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

.form-group.focused .form-line,
.form-group.has-value .form-line {
  width: 100%;
}

.form-icon.textarea-icon {
  align-self: flex-start;
  margin-top: 1rem;
}

.form-submit-btn {
  width: 100%;
  margin-top: 2rem;
  justify-content: center;
}

/* App Products Page Grids */

.wl-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

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

.wl-tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

/* FAQ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.faq-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-subtle);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.faq-chevron {
  transition: transform 0.3s ease;
  opacity: 0.5;
}

.faq-chevron.rotated {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--accent-blue);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-answer.visible {
  height: auto;
  padding: 0 2rem 2rem;
  opacity: 1;
}

/* Admin Dashboard Specifics */

.admin-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.em-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-subtle);
  gap: 2rem;
}

.em-tab {
  padding: 1rem 0;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: all 0.3s ease;
}

.em-tab.active {
  color: var(--accent-blue);
  border-bottom-color: var(--accent-blue);
}

/* Animations */

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ─── Launch-Ready Apps / App Products Page ─────────────────────────────── */

.wl-hero {
  padding-top: 140px;
  position: relative;
}

.wl-trust-strip {
  border-radius: 50px !important;
}

/* Product Grid */

.app-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 680px) {
  .app-product-grid {
    grid-template-columns: 1fr;
  }
}

/* Product Cards */

.product-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

/* Included Grid */

.wl-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

@media (max-width: 580px) {
  .wl-included-grid {
    grid-template-columns: 1fr;
  }
}

/* Steps */

.wl-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

@media (max-width: 840px) {
  .wl-steps-grid {
    grid-template-columns: 1fr;
  }
  .wl-step-connector { display: none !important; }
}

.wl-step {
  position: relative;
}

.wl-step-connector {
  position: absolute;
  top: 2.5rem;
  right: -1.1rem;
  width: 2.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--border-subtle), transparent);
  z-index: 1;
}

/* Addon Table */

.addon-row:hover {
  background: var(--border-subtle);
}

.addon-table {
  overflow: hidden;
}

/* Use cases grid for App Products */

.wl-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .wl-use-cases-grid {
    grid-template-columns: 1fr;
  }
}

/* Page Loader — Suspense fallback for lazy-loaded routes */

.page-loader {
  min-height: 100vh;
  background: var(--bg-primary, #04060B);
}

/* ============================================================
   UI/UX Pro Max: Accessibility — prefers-reduced-motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Light theme image invert for logo visibility */

.light-theme .navbar img,
.light-theme .footer-logo img {
  filter: brightness(0.2) saturate(0);
}
