/* ── System Font Fallbacks (work without internet / Google Fonts) ── */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --font-display: 'Bebas Neue', 'Arial Black', 'Haettenschweiler', Impact, sans-serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'Cascadia Code', 'Fira Code', Consolas, 'Courier New', monospace;
}

/* ================================================================
   ICS — Innovative Consolidated Solutions
   Full Design System | v1.0 | 2026
   ================================================================ */

/* --- RESET ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://grainy-gradients.vercel.app/noise.svg');
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
}
/* Cursor Follower */
.cursor-follower {
  position: fixed;
  width: 20px; height: 20px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: transform 0.15s ease-out;
  display: none;
}
@media (hover: hover) { .cursor-follower { display: block; } }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- DESIGN TOKENS ------------------------------------------- */
:root {
  --red:           #C8102E;
  --red-dark:      #9B0D22;
  --red-light:     #E8203E;
  --red-glow:      rgba(200, 16, 46, 0.12);
  --red-glow-md:   rgba(200, 16, 46, 0.22);
  --red-glow-lg:   rgba(200, 16, 46, 0.4);

  --black:         #080808;
  --surface-1:     #0E0E0E;
  --surface-2:     #141414;
  --surface-3:     #1C1C1C;
  --surface-4:     #242424;

  --border-1:      rgba(255,255,255,0.05);
  --border-2:      rgba(255,255,255,0.09);
  --border-red:    rgba(200, 16, 46, 0.25);

  /* Glassmorphism */
  --glass:         rgba(15, 15, 15, 0.7);
  --glass-red:     rgba(20, 2, 5, 0.75);
  --glass-blur:    blur(12px);

  --text-primary:  #FFFFFF;
  --text-secondary:#ABABAB;
  --text-muted:    #5A5A5A;

  --font-display:  'Bebas Neue', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  --radius-sm:     4px;
  --radius-md:     10px;
  --radius-lg:     18px;
  --radius-xl:     28px;

  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --t-fast:        0.2s;
  --t-med:         0.35s;
  --t-slow:        0.6s;

  --container:     1200px;
  --nav-h:         72px;
  --glass-border:  rgba(255,255,255,0.08);
}

/* --- LIGHT THEME OVERRIDES ----------------------------------- */
[data-theme="light"] {
  --black:         #F8F9FA;
  --surface-1:     #FFFFFF;
  --surface-2:     #F3F4F6;
  --surface-3:     #E5E7EB;
  --surface-4:     #D1D5DB;

  --border-1:      rgba(0,0,0,0.05);
  --border-2:      rgba(0,0,0,0.1);
  --border-red:    rgba(200, 16, 46, 0.2);

  --glass:         rgba(255, 255, 255, 0.85);
  --glass-red:     rgba(200, 16, 46, 0.05);
  --glass-border:  rgba(0, 0, 0, 0.06);
  --glass-blur:    blur(16px);

  --text-primary:  #111827;
  --text-secondary:#4B5563;
  --text-muted:    #6B7280;
  
  --red-glow:      rgba(200, 16, 46, 0.06);
  --red-glow-md:   rgba(200, 16, 46, 0.12);
  --red-glow-lg:   rgba(200, 16, 46, 0.2);
}

/* --- LAYOUT --------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

/* --- TYPOGRAPHY ----------------------------------------------- */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--red);
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-top: 1rem;
  line-height: 1.7;
}
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }

/* --- BUTTONS -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--t-med) var(--ease);
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--red-glow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--border-red);
}
.btn-outline-red:hover {
  background: var(--red-glow);
  border-color: var(--red);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-nav {
  background: var(--red);
  color: #fff;
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}
.btn-nav:hover { background: var(--red-light); }

/* --- NAVIGATION ---------------------------------------------- */
/* #navbar rules moved to glass.css */
#navbar-disabled {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--t-med) var(--ease),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
#navbar-disabled-scrolled {
  background: rgba(8, 8, 8, 0.92);
  border-bottom-color: var(--border-1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.logo-ics {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #fff;
}
.logo-dot { color: var(--red); font-size: 0.6rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}
/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%; height: 3px;
  background: var(--red);
  z-index: 1001;
  transition: width 0.1s ease-out;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--t-med) var(--ease);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.dropdown a:hover {
  background: var(--red-glow);
  color: var(--red);
  padding-left: 1.2rem;
}
.chevron { font-size: 0.65rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--surface-1);
  z-index: 999;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.8rem 0;
  display: block;
  border-bottom: 1px solid var(--border-1);
}
.mobile-menu a:hover { color: var(--red); }

/* --- HERO ---------------------------------------------------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--red-glow-md) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
@keyframes pulseGlow {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.15); }
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: left;
  padding-left: 2%; /* Reduced from 5% for tighter left alignment */
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface-3);
  border: 1px solid var(--border-red);
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}
.tag-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.8rem;
  text-shadow: 0 0 30px rgba(200, 16, 46, 0.2);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-1);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
}
.stat-plus { color: var(--red); font-size: 1.8rem; font-family: var(--font-display); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; letter-spacing: 0.05em; }
.stat-row { display: flex; align-items: baseline; }
.stat-divider { width: 1px; height: 40px; background: var(--border-2); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* --- TICKER -------------------------------------------------- */
.ticker-section {
  background: var(--surface-2);
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 2rem;
}
.ticker-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--red);
  white-space: nowrap;
  padding: 0 2rem;
  flex-shrink: 0;
  border-right: 1px solid var(--border-2);
  padding-right: 2rem;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-inner span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.ticker-dot { color: var(--red) !important; font-size: 0.5rem !important; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- SERVICES ----------------------------------------------- */
#services { background: var(--black); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--surface-1);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
  cursor: default;
  border: 1px solid transparent;
}
.service-card:hover {
  background: var(--surface-2);
  border-color: var(--glass-border);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-glow);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--surface-2); }
.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.service-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  border: 1px solid var(--border-2);
  transition: all var(--t-med) var(--ease);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-icon {
  background: var(--red);
  border-color: var(--red);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--t-fast);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-link { color: var(--red); }

/* --- WHY ICS ----------------------------------------------- */
#why-ics { background: var(--surface-1); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
  margin-top: 3.5rem;
}
.why-item { display: flex; gap: 1.2rem; }
.why-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--red-glow);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  margin-top: 0.2rem;
}
.why-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}
.why-text p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.65; }

/* --- PORTFOLIO PREVIEW -------------------------------------- */
#portfolio-preview { background: var(--black); }
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-1);
}
.portfolio-card {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.portfolio-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--border-2);
  transition: transform var(--t-slow) var(--ease);
}
.portfolio-card:hover .portfolio-card-bg { transform: scale(1.08); }
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transform: translateY(60px);
  transition: transform var(--t-med) var(--ease);
}
.portfolio-card:hover .portfolio-card-overlay { transform: translateY(0); }
.portfolio-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.portfolio-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}
.portfolio-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t-med) var(--ease) 0.05s;
}
.portfolio-card:hover .portfolio-desc { opacity: 1; transform: translateY(0); }
.portfolio-visit {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
/* Card color accents */
.pc-1 { background: linear-gradient(135deg, #0D0D1A 0%, #12001A 100%); }
.pc-2 { background: linear-gradient(135deg, #0D1A0D 0%, #001A0A 100%); }
.pc-3 { background: linear-gradient(135deg, #1A0D0D 0%, #200010 100%); }
.pc-4 { background: linear-gradient(135deg, #0D141A 0%, #001020 100%); }

/* --- TESTIMONIALS ------------------------------------------ */
#testimonials { background: var(--surface-1); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: border-color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease);
}
.testimonial-card:hover {
  border-color: var(--border-red);
  transform: translateY(-4px);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-4);
  border: 2px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--red);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.1rem;
}
.author-company { font-size: 0.78rem; color: var(--text-muted); }
.stars { color: var(--red); font-size: 0.75rem; margin-bottom: 0.8rem; }

/* --- CTA BANNER ------------------------------------------- */
#cta-banner {
  background: var(--red);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
#cta-banner::after {
  content: 'ICS';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.cta-text p { font-size: 1rem; opacity: 0.85; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--red);
  font-weight: 700;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  font-weight: 600;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* --- FOOTER ----------------------------------------------- */
footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border-1);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer-brand .logo-ics { font-size: 2.2rem; display: block; margin-bottom: 0.6rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col li a:hover { color: var(--red); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.7rem;
}
.footer-contact-item span:first-child { color: var(--red); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border-1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: var(--red); }

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--t-med) var(--ease);
  animation: waBounce 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6); }
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* --- INNER PAGE HERO --------------------------------------- */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-1);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-1) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-content { position: relative; z-index: 1; }
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.logo-img {
  height: 42px;
  width: auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-secondary); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1.2rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* --- ABOUT PAGE ------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  border: 1px solid var(--border-1);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.about-big-num {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.15;
}
.team-badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem;
}
.team-badge {
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
}
.team-badge strong { display: block; color: var(--red); font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.about-content p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.values-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.value-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.value-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- SERVICES PAGE ---------------------------------------- */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.service-full-card {
  background: var(--surface-1);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background var(--t-med) var(--ease);
}
.service-full-card::after {
  content: attr(data-num);
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--border-1);
  line-height: 1;
  pointer-events: none;
  transition: color var(--t-med);
}
.service-full-card:hover::after { color: var(--red-glow); }
.service-full-card:hover { background: var(--surface-2); }
.service-full-icon {
  width: 60px; height: 60px;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: all var(--t-med) var(--ease);
  position: relative;
  z-index: 1;
}
.service-full-card:hover .service-full-icon {
  background: var(--red);
  border-color: var(--red);
}
.service-full-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}
.service-full-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}
.service-tag {
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* --- PORTFOLIO PAGE --------------------------------------- */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}
.filter-btn {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  color: var(--text-secondary);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.portfolio-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pf-card {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.pf-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--border-2);
  transition: transform var(--t-slow) var(--ease);
}
.pf-card:hover .pf-card-bg { transform: scale(1.1); }
.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transform: translateY(50px);
  transition: transform var(--t-med) var(--ease);
}
.pf-card:hover .pf-overlay { transform: translateY(0); }
.pf-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.pf-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}
.pf-url {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.pf-card[data-filter="hidden"] { display: none; }

/* --- CONTACT PAGE ----------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: flex-start;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.8rem;
}
.contact-item-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: var(--red-glow);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.95rem;
}
.contact-item-text { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.contact-item-text strong { color: var(--text-primary); display: block; font-size: 0.82rem; margin-bottom: 0.15rem; font-family: var(--font-mono); letter-spacing: 0.05em; font-size: 0.7rem; color: var(--text-muted); }
.contact-form-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color var(--t-fast);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
}
.form-success .check { font-size: 3rem; color: var(--red); display: block; margin-bottom: 1rem; }

/* --- SCROLL ANIMATIONS ------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

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

/* --- UTILITIES -------------------------------------------- */
.divider {
  height: 1px;
  background: var(--border-1);
  margin: 0;
}
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.text-center .section-eyebrow { justify-content: center; }
.text-center .section-eyebrow::before { display: none; }
.text-center .section-sub { margin: 1rem auto 0; }

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }

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

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card { aspect-ratio: 16/9; }
  .portfolio-header { flex-direction: column; align-items: flex-start; }

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

  .cta-content { flex-direction: column; }

  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .about-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .portfolio-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .page-hero h1 { font-size: clamp(2.2rem, 9vw, 3.5rem); }
}

@media (max-width: 480px) {
  .portfolio-full-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ================================================================
   INDIVIDUAL SERVICE PAGES — Extended Styles
   ================================================================ */

/* --- MEGA DROPDOWN -------------------------------------------- */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  width: 620px;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-med) var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 1001;
}
.has-dropdown:hover .mega-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.3rem;
}
.mega-dropdown-group { display: flex; flex-direction: column; gap: 0.15rem; }
.mega-group-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.3rem 0.7rem 0.5rem;
  border-bottom: 1px solid var(--border-1);
  margin-bottom: 0.3rem;
}
.mega-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.7rem;
  font-size: 0.83rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.mega-dropdown a:hover {
  background: var(--red-glow);
  color: var(--red);
  padding-left: 0.9rem;
}
.mega-dropdown a .icon { font-size: 0.9rem; flex-shrink: 0; }

/* --- SERVICE HERO (individual pages) -------------------------- */
.svc-hero {
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.svc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-1) 1px, transparent 1px);
  background-size: 55px 55px;
}
.svc-hero-glow {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--red-glow-md) 0%, transparent 65%);
  border-radius: 50%;
}
.svc-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.svc-hero-text {}
.svc-hero-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-hero-icon-box {
  width: 200px; height: 200px;
  background: var(--surface-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  box-shadow: 0 0 60px var(--red-glow-md);
}
.svc-hero-icon-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--red) 0%, transparent 50%, transparent 100%);
  opacity: 0.3;
  z-index: -1;
}
.svc-hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: 9rem;
  color: var(--border-1);
  white-space: nowrap;
  user-select: none;
  z-index: 0;
}

/* --- FEATURES GRID ------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-1);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.feature-card {
  background: var(--surface-1);
  padding: 2rem 1.8rem;
  transition: background var(--t-med);
}
.feature-card:hover { background: var(--surface-2); }
.feature-card-icon {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  display: block;
}
.feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.65; }

/* --- RESULTS STRIP ------------------------------------------- */
.results-strip {
  background: var(--red);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.results-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 35px 35px;
}
.results-strip .container { position: relative; z-index: 1; }
.results-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.result-item .r-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: #fff;
}
.result-item .r-label { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin-top: 0.3rem; }

/* --- PROCESS STEPS ------------------------------------------ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--border-2), var(--red), var(--border-2));
}
.process-step {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.step-num {
  width: 4rem; height: 4rem;
  background: var(--surface-3);
  border: 1px solid var(--border-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--red);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  background: var(--surface-1);
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }

/* --- WHO IT'S FOR ------------------------------------------- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.who-card {
  background: var(--surface-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--t-fast);
}
.who-card:hover { border-color: var(--border-red); }
.who-icon { font-size: 1.5rem; flex-shrink: 0; }
.who-card h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.25rem; }
.who-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.55; }

/* --- SERVICE FAQ -------------------------------------------- */
.svc-faq { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 2.5rem; }
.svc-faq details {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  cursor: pointer;
}
.svc-faq details[open] { border-color: var(--border-red); }
.svc-faq summary {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.svc-faq summary .faq-arrow { color: var(--red); flex-shrink: 0; transition: transform var(--t-fast); }
.svc-faq details[open] summary .faq-arrow { transform: rotate(45deg); }
.svc-faq details p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-top: 1rem; }

/* --- RELATED SERVICES --------------------------------------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.related-card {
  background: var(--surface-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--t-med) var(--ease);
  text-decoration: none;
  display: block;
}
.related-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}
.related-card .r-icon { font-size: 1.5rem; margin-bottom: 0.7rem; display: block; }
.related-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}
.related-card p { font-size: 0.8rem; color: var(--text-secondary); }

/* --- TESTIMONIAL SINGLE ------------------------------------ */
.testimonial-feature {
  background: var(--surface-2);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.testimonial-feature::before {
  content: '"';
  position: absolute;
  right: 1.5rem;
  top: -1rem;
  font-family: var(--font-display);
  font-size: 10rem;
  color: var(--red);
  opacity: 0.08;
  line-height: 1;
}
.tf-text { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75; font-style: italic; margin-bottom: 1.5rem; }
.tf-author { display: flex; align-items: center; gap: 1rem; }
.tf-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--surface-4);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--red);
}

/* --- PACKAGE CARDS ----------------------------------------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.package-card {
  background: var(--surface-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.package-card.featured {
  border-color: var(--red);
  background: var(--surface-3);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  white-space: nowrap;
}
.package-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}
.package-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
  margin: 0.8rem 0 0.3rem;
}
.package-price span { font-size: 0.9rem; color: var(--text-muted); font-family: var(--font-body); }
.package-desc { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.55; }
.package-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; flex: 1; }
.package-features li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.package-features li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* --- TWO-COL CONTENT --------------------------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-visual {
  background: var(--surface-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.visual-metric {
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.vm-label { font-size: 0.82rem; color: var(--text-secondary); }
.vm-value { font-family: var(--font-display); font-size: 1.5rem; color: var(--red); }
.vm-bar {
  height: 4px;
  background: var(--surface-4);
  border-radius: 2px;
  margin-top: 0.5rem;
  overflow: hidden;
}
.vm-bar-fill { height: 100%; background: var(--red); border-radius: 2px; }

/* RESPONSIVE for new elements */
@media (max-width: 1024px) {
  .svc-hero-content { grid-template-columns: 1fr; }
  .svc-hero-icon-wrap { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .results-inner { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .mega-dropdown { width: 460px; }
  .mega-dropdown-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .results-inner { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-visual { display: none; }
  .mega-dropdown { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   LIGHT MODE THEME
   ================================================================ */

[data-theme="light"] {
  --black:         #F8F8F8;
  --surface-1:     #FFFFFF;
  --surface-2:     #F2F2F2;
  --surface-3:     #E8E8E8;
  --surface-4:     #DCDCDC;

  --border-1:      rgba(0,0,0,0.07);
  --border-2:      rgba(0,0,0,0.11);
  --border-red:    rgba(200, 16, 46, 0.2);

  --text-primary:  #0A0A0A;
  --text-secondary:#444444;
  --text-muted:    #888888;

  --red-glow:      rgba(200, 16, 46, 0.07);
  --red-glow-md:   rgba(200, 16, 46, 0.14);
  --red-glow-lg:   rgba(200, 16, 46, 0.25);
}

/* Light-mode specifics */
[data-theme="light"] #navbar-disabled-scrolled {
  background: rgba(248,248,248,0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
[data-theme="light"] .hero-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
}
[data-theme="light"] .mobile-menu {
  background: var(--surface-1);
}
[data-theme="light"] .page-hero,
[data-theme="light"] .svc-hero {
  background: #f0f0f0;
}
[data-theme="light"] .svc-hero-grid {
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}
[data-theme="light"] .ticker-section {
  background: #ECECEC;
}
[data-theme="light"] #cta-banner { background: var(--red); }
[data-theme="light"] .mega-dropdown {
  background: #FFFFFF;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
[data-theme="light"] .dropdown {
  background: #FFFFFF;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
[data-theme="light"] .services-grid,
[data-theme="light"] .services-full-grid,
[data-theme="light"] .portfolio-grid,
[data-theme="light"] .portfolio-full-grid,
[data-theme="light"] .features-grid {
  background: rgba(0,0,0,0.06);
}
[data-theme="light"] .wa-float {
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
[data-theme="light"] footer {
  background: #ECECEC;
}

/* ================================================================
   THEME TOGGLE BUTTON
   ================================================================ */

.theme-toggle {
  width: 40px; height: 40px;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--t-med) var(--ease);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover {
  background: var(--red-glow);
  border-color: var(--border-red);
}
.theme-toggle .icon-dark,
.theme-toggle .icon-light {
  position: absolute;
  transition: all var(--t-med) var(--ease);
  line-height: 1;
}
.theme-toggle .icon-light { opacity: 0; transform: translateY(8px); }
.theme-toggle .icon-dark  { opacity: 1; transform: translateY(0); }

[data-theme="light"] .theme-toggle .icon-light { opacity: 1; transform: translateY(0); }
[data-theme="light"] .theme-toggle .icon-dark  { opacity: 0; transform: translateY(-8px); }

/* ================================================================
   HERO SLIDER
   ================================================================ */

#hero {
  min-height: 100vh;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

/* Slider track */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 7s ease;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,8,8,0.82) 0%,
    rgba(8,8,8,0.55) 50%,
    rgba(200,16,46,0.18) 100%
  );
}
[data-theme="light"] .hero-slide::after {
  background: linear-gradient(
    135deg,
    rgba(248,248,248,0.88) 0%,
    rgba(248,248,248,0.65) 50%,
    rgba(200,16,46,0.12) 100%
  );
}

/* Slide images from Unsplash */







/* Slider grid overlay */
.hero-slider-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,16,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,16,46,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}

/* Hero content sits on top */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  max-width: var(--container);
  margin: 0 auto;
}

/* Slide indicator pill */
.hero-slide-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200,16,46,0.15);
  border: 1px solid rgba(200,16,46,0.3);
  backdrop-filter: blur(8px);
  color: var(--red-light);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  transition: opacity 0.4s;
}
[data-theme="light"] .hero-slide-label {
  color: var(--red);
  background: rgba(200,16,46,0.1);
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.slider-dots {
  display: flex;
  gap: 0.5rem;
}
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--t-med) var(--ease);
}
.slider-dot.active {
  width: 28px;
  border-radius: 3px;
  background: var(--red);
}
.slider-arrow {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all var(--t-fast);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
[data-theme="light"] .slider-dot { background: rgba(0,0,0,0.3); }
[data-theme="light"] .slider-arrow {
  background: rgba(255,255,255,0.6);
  border-color: rgba(0,0,0,0.15);
  color: var(--text-primary);
}

/* Slide counter */
.slider-counter {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
[data-theme="light"] .slider-counter { color: rgba(0,0,0,0.4); }

/* Progress bar under hero */
.slider-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  z-index: 4;
  transition: width 0.1s linear;
}

/* ================================================================
   CLIENT DASHBOARD
   ================================================================ */

.dash-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: var(--black);
}

/* Sidebar */
.dash-sidebar {
  background: var(--glass);
  border-right: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
  z-index: 200;
}
.dash-sidebar-brand {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.dash-sidebar-brand .logo-ics { font-size: 1.6rem; }
.dash-brand-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  display: block;
  margin-top: -2px;
}

.dash-nav { padding: 1rem 0; flex: 1; }
.dash-nav-section {
  padding: 0.4rem 1rem 0.2rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.8rem;
}
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  margin: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
  background: none;
  width: calc(100% - 1.2rem);
  text-align: left;
}
.dash-nav-item:hover {
  background: var(--surface-3);
  color: var(--text-primary);
}
.dash-nav-item.active {
  background: var(--red-glow);
  color: var(--red);
  font-weight: 600;
}
.dash-nav-item .nav-icon { font-size: 1rem; flex-shrink: 0; }
.dash-nav-badge {
  margin-left: auto;
  background: var(--red);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
  font-family: var(--font-mono);
}

.dash-sidebar-footer {
  padding: 1rem;
  border-top: 1px solid var(--border-1);
}
.dash-user-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  border: 1px solid var(--border-1);
}
.dash-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.dash-user-info { flex: 1; min-width: 0; }
.dash-user-name { font-size: 0.82rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dash-user-role { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 0.05em; }

/* Main dashboard area */
.dash-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.dash-topbar {
  background: var(--glass);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.dash-topbar-title { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.04em; }
.dash-topbar-actions { display: flex; align-items: center; gap: 0.6rem; margin-left: auto; }
.dash-icon-btn {
  width: 38px; height: 38px;
  background: var(--surface-2);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-secondary);
  position: relative;
  transition: all var(--t-fast);
}
.dash-icon-btn:hover { background: var(--surface-3); color: var(--text-primary); }
.dash-notif-dot {
  position: absolute;
  top: 7px; right: 7px;
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  border: 1.5px solid var(--surface-1);
}

.dash-content { padding: 2rem; flex: 1; }
.dash-content-panel { display: none; }
.dash-content-panel.active { display: block; }

/* Welcome / greeting */
.dash-welcome {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.dash-welcome::after {
  content: 'ICS';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--border-1);
  line-height: 1;
  pointer-events: none;
}
.dash-welcome h2 { font-family: var(--font-display); font-size: 1.8rem; letter-spacing: 0.04em; margin-bottom: 0.3rem; }
.dash-welcome p { font-size: 0.88rem; color: var(--text-secondary); }
.dash-welcome-actions { display: flex; gap: 0.6rem; flex-shrink: 0; position: relative; z-index: 1; }

/* KPI cards */
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.kpi-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
}
.kpi-card:hover { border-color: var(--border-red); transform: translateY(-2px); }
.kpi-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--t-med) var(--ease);
}
.kpi-card:hover::before { transform: scaleX(1); }
.kpi-icon { font-size: 1.4rem; margin-bottom: 0.8rem; }
.kpi-value { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; margin-bottom: 0.2rem; }
.kpi-label { font-size: 0.78rem; color: var(--text-muted); font-family: var(--font-mono); letter-spacing: 0.05em; }
.kpi-change { font-size: 0.75rem; margin-top: 0.4rem; }
.kpi-up { color: #22C55E; }
.kpi-down { color: var(--red); }

/* Dashboard grid */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.dash-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
[data-theme="light"] .dash-card,
[data-theme="light"] .kpi-card,
[data-theme="light"] .dash-welcome {
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
}
[data-theme="light"] .dash-sidebar {
  background: #111; /* Keep sidebar dark for premium contrast in light mode */
  color: #fff;
}
[data-theme="light"] .dash-sidebar .dash-nav-item { color: rgba(255,255,255,0.7); }
[data-theme="light"] .dash-sidebar .dash-nav-item:hover { color: #fff; background: rgba(255,255,255,0.05); }
[data-theme="light"] .dash-sidebar .dash-nav-item.active { background: var(--red-glow); color: var(--red); }

.dash-card-full { grid-column: 1 / -1; }
.dash-card-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: space-between;
}
.dash-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.dash-card-action {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--t-fast);
}
.dash-card-action:hover { opacity: 0.75; }
.dash-card-body { padding: 1.5rem; }

/* Project list items */
.project-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-1);
}
.project-item:last-child { border-bottom: none; padding-bottom: 0; }
.project-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.proj-web { background: rgba(59,130,246,0.12); }
.proj-mktg { background: rgba(168,85,247,0.12); }
.proj-bot { background: rgba(34,197,94,0.12); }
.proj-audit { background: rgba(245,158,11,0.12); }
.proj-gmb { background: rgba(236,72,153,0.12); }
.proj-consult { background: rgba(200,16,46,0.12); }

.project-info { flex: 1; min-width: 0; }
.project-name { font-size: 0.88rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.project-meta { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.1rem; }
.project-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; flex-shrink: 0; }
.project-status {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  padding: 0.18rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
}
.status-active { background: rgba(34,197,94,0.12); color: #22C55E; }
.status-review { background: rgba(245,158,11,0.12); color: #F59E0B; }
.status-complete { background: rgba(100,116,139,0.12); color: #64748B; }
.status-pending { background: rgba(200,16,46,0.12); color: var(--red); }
.project-progress { width: 80px; }
.progress-bar-wrap {
  height: 4px;
  background: var(--surface-4);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--red);
  border-radius: 2px;
  transition: width 1s var(--ease-out);
}
.progress-fill.green { background: #22C55E; }
.progress-fill.amber { background: #F59E0B; }
.progress-pct { font-size: 0.68rem; color: var(--text-muted); margin-top: 0.2rem; text-align: right; }

/* Service cards in dashboard */
.dash-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.dash-svc-card {
  background: var(--surface-3);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  cursor: pointer;
  transition: all var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.dash-svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-glow);
  opacity: 0;
  transition: opacity var(--t-med);
}
.dash-svc-card:hover::before { opacity: 1; }
.dash-svc-card:hover { border-color: var(--border-red); transform: translateY(-2px); }
.dash-svc-icon { font-size: 1.4rem; margin-bottom: 0.6rem; }
.dash-svc-name { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.04em; margin-bottom: 0.2rem; }
.dash-svc-price { font-size: 0.72rem; color: var(--red); font-family: var(--font-mono); font-weight: 600; }

/* Timeline */
.timeline { position: relative; padding-left: 1.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 0; bottom: 0;
  width: 1px;
  background: var(--border-2);
}
.timeline-item { position: relative; padding-bottom: 1.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-dot.done { background: #22C55E; }
.timeline-dot.pending { background: var(--surface-4); border-color: var(--border-2); }
.timeline-date { font-family: var(--font-mono); font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.08em; margin-bottom: 0.2rem; }
.timeline-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.1rem; }
.timeline-desc { font-size: 0.78rem; color: var(--text-secondary); }

/* Invoice table */
.invoice-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.invoice-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid var(--border-1);
}
.invoice-table td { padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--border-1); color: var(--text-secondary); }
.invoice-table tr:last-child td { border-bottom: none; }
.invoice-table tr:hover td { background: var(--surface-3); }
.inv-paid { color: #22C55E; font-weight: 600; font-size: 0.75rem; }
.inv-pending { color: #F59E0B; font-weight: 600; font-size: 0.75rem; }
.inv-overdue { color: var(--red); font-weight: 600; font-size: 0.75rem; }

/* Notifications panel */
.notif-list { display: flex; flex-direction: column; gap: 0.6rem; }
.notif-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.8rem;
  background: var(--surface-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-1);
  transition: all var(--t-fast);
}
.notif-item:hover { border-color: var(--border-red); }
.notif-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.notif-body { flex: 1; }
.notif-title { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.1rem; }
.notif-text { font-size: 0.77rem; color: var(--text-secondary); line-height: 1.5; }
.notif-time { font-size: 0.68rem; color: var(--text-muted); font-family: var(--font-mono); flex-shrink: 0; }
.notif-unread { border-left: 2px solid var(--red); }

/* Messages */
.msg-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-1);
  cursor: pointer;
  transition: background var(--t-fast);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
}
.msg-item:hover { background: var(--surface-3); }
.msg-item:last-child { border-bottom: none; }
.msg-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--red-glow);
  border: 1px solid var(--border-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--red);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.msg-info { flex: 1; min-width: 0; }
.msg-name { font-size: 0.83rem; font-weight: 700; }
.msg-preview { font-size: 0.77rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-time { font-size: 0.68rem; color: var(--text-muted); font-family: var(--font-mono); flex-shrink: 0; }
.msg-unread .msg-name::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  margin-left: 5px;
  vertical-align: middle;
}

/* Support form in dash */
.dash-support-form { display: flex; flex-direction: column; gap: 1rem; }
.dash-support-form label { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.35rem; }
.dash-support-form input,
.dash-support-form select,
.dash-support-form textarea {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.65rem 0.9rem;
  outline: none;
  transition: border-color var(--t-fast);
}
.dash-support-form input:focus,
.dash-support-form select:focus,
.dash-support-form textarea:focus { border-color: var(--red); }
.dash-support-form textarea { min-height: 100px; resize: vertical; }

/* Chart-like progress ring */
.ring-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ring-svg { flex-shrink: 0; }
.ring-track { fill: none; stroke: var(--surface-4); stroke-width: 6; }
.ring-fill { fill: none; stroke-width: 6; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset 1.5s var(--ease-out); }
.ring-fill-red { stroke: var(--red); }
.ring-fill-green { stroke: #22C55E; }
.ring-fill-amber { stroke: #F59E0B; }
.ring-fill-blue { stroke: #3B82F6; }
.ring-info { flex: 1; }
.ring-pct { font-family: var(--font-display); font-size: 2rem; line-height: 1; margin-bottom: 0.2rem; }
.ring-label { font-size: 0.78rem; color: var(--text-secondary); }

/* Responsive dashboard */
@media (max-width: 1024px) {
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    z-index: 500;
    height: 100%;
    transition: left var(--t-med) var(--ease);
    width: 260px;
  }
  .dash-sidebar.open { left: 0; }
  .dash-grid { grid-template-columns: 1fr; }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .dash-services-grid { grid-template-columns: 1fr; }
}
/* ═══════════ LOGIN ROBOT & ANIMATION ══════════════════════ */
.login-page-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  overflow: hidden;
  background: #050505;
}

.robot-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.ai-robot-visual {
  width: 400px;
  animation: robotEntry 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes robotEntry {
  from { opacity: 0; transform: translateX(-100px) rotate(-10deg); }
  to { opacity: 1; transform: translateX(0) rotate(0); }
}

.login-card-animated {
  opacity: 0;
  transform: translateX(200px);
  animation: pushIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.5s;
}

@keyframes pushIn {
  to { opacity: 1; transform: translateX(0); }
}

.robot-speech-bubble {
  position: absolute;
  top: -20px;
  left: 280px;
  background: var(--red);
  color: #fff;
  padding: 0.8rem 1.2rem;
  border-radius: 1rem 1rem 1rem 0;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  box-shadow: 0 10px 20px rgba(255, 59, 59, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 20;
}

.robot-speech-bubble.active {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════ HERO SLIDER TEXT ═════════════════════════════ */
.keyword-slider {
  color: var(--red);
  display: inline-block;
  min-width: 300px;
}

/* ═══════════ 3D MORPH PRELOADER ══════════════════════════════ */
#jarvis-preloader {
  position: fixed;
  inset: 0;
  background: #020205;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#preloader-canvas {
  width: 100%;
  height: 100%;
}

#preloader-overlay {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
}

#preloader-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: rgba(255, 59, 59, 0.6);
  text-transform: uppercase;
}

.nav-logo img, .footer-brand img, .login-header img {
  height: 40px;
  width: auto;
  display: block;
}

/* ═══════════ 3D HERO ENHANCEMENTS ══════════════════════════ */
.hero-3d-scene {
  perspective: 1000px;
}

.floating-hud-element {
  position: absolute;
  padding: 1rem;
  background: rgba(255, 59, 59, 0.05);
  border: 1px solid rgba(255, 59, 59, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  color: var(--red);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  pointer-events: none;
  animation: floatHUD 6s ease-in-out infinite;
  z-index: 5;
}

@keyframes floatHUD {
  0%, 100% { transform: translateY(0) rotateX(10deg) rotateY(10deg); }
  50% { transform: translateY(-20px) rotateX(-10deg) rotateY(-10deg); }
}
/* --- CHATBOT UI ----------------------------------------------- */
.ai-concierge-trigger {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 65px;
  height: 65px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 10px 30px var(--red-glow-lg);
  transition: all 0.4s var(--ease);
  border: 1px solid rgba(255,255,255,0.2);
}
.ai-concierge-trigger:hover {
  transform: scale(1.1) rotate(15deg);
  background: var(--red-light);
}
.ai-concierge-trigger .neural-core {
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  animation: pulse-core 2s infinite ease-in-out;
}
.ai-concierge-trigger .neural-core::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; height: 60%;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px #fff;
}
@keyframes pulse-core {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

.ai-chat-window {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 380px;
  height: 550px;
  background: var(--glass);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-red);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s var(--ease);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  overflow: hidden;
}
.ai-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.ai-chat-header {
  padding: 1.5rem;
  background: var(--glass-red);
  border-bottom: 1px solid var(--border-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-chat-header h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-chat-header .status-dot {
  width: 6px;
  height: 6px;
  background: #00ff00;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff00;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.ai-chat-messages {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}
.msg {
  max-width: 85%;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
  animation: slide-up 0.3s ease-out;
}
@keyframes slide-up { from { transform: translateY(10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.msg-bot {
  align-self: flex-start;
  background: var(--surface-3);
  color: var(--text-primary);
  border-bottom-left-radius: 2px;
  border: 1px solid var(--border-1);
}
.msg-user {
  align-self: flex-end;
  background: var(--red);
  color: #fff;
  border-bottom-right-radius: 2px;
}

.ai-chat-input-area {
  padding: 1.5rem;
  border-top: 1px solid var(--border-1);
  background: rgba(0,0,0,0.2);
}
.ai-chat-input-wrap {
  display: flex;
  gap: 10px;
  background: var(--surface-1);
  padding: 5px;
  border-radius: 100px;
  border: 1px solid var(--border-2);
}
.ai-chat-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}
.ai-chat-input-wrap input:focus { outline: none; }
.ai-chat-send {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ai-chat-send:hover { background: var(--red-light); }

/* Neural Loading */
.typing {
  display: flex;
  gap: 4px;
  padding: 0.5rem 1rem;
  background: var(--surface-2);
  border-radius: 100px;
  width: fit-content;
}
.typing span {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

@media (max-width: 480px) {
  .ai-chat-window {
    width: calc(100vw - 2rem);
    height: 70vh;
    right: 1rem;
    bottom: 5.5rem;
  }
}

/* --- DASHBOARD ENHANCEMENTS ----------------------------------- */
.progress-fill {
  position: relative;
  overflow: hidden;
}
.progress-fill::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: neural-pulse 2s infinite;
}
@keyframes neural-pulse {
  0% { left: -100%; }
  100% { left: 100%; }
}


/* --- ENTERPRISE TRANSITIONS & PRELOADER ------------------------ */

/* Preloader */
.ics-preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.ics-preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-brand {
  font-family: var(--font-display);
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: pulseBrand 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.preloader-brand span { color: var(--red); }
.preloader-bar-wrap {
  width: 200px;
  height: 2px;
  background: var(--border-2);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}
.preloader-bar {
  position: absolute;
  top: 0; left: 0; height: 100%;
  background: var(--red);
  width: 0%;
  animation: loadProgress 1.5s var(--ease) forwards;
}

@keyframes pulseBrand {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.98); }
}
@keyframes loadProgress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* Page Transition Overlay */
.ics-transition-overlay {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--red);
  z-index: 99999;
  transition: top 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
.ics-transition-overlay.active {
  top: 0;
}

/* Upgraded Cinematic Reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(4px);
  transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Smooth Scrolling setup for Lenis */
html.lenis {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
/* --- MOBILE BOTTOM NAVIGATION (GLASSMORPHIC) --- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(15,15,15,0.7); /* match glass variable */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}
.bottom-nav-item {
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--red);
}
.bottom-nav-item i {
  font-size: 1.4rem;
}
/* Hide bottom navigation on larger screens */
@media (min-width: 768px) {
  .bottom-nav { display: none; }
}

/* Ensure home item is highlighted */
.bottom-nav-item.home {
  color: var(--red);
}

/* ── Hero Slides — CSS gradient backgrounds (no external URLs) ── */
/* slide-web → see glass.css */
/* slide-ai → see glass.css */
/* slide-marketing → see glass.css */
/* slide-ecommerce → see glass.css */
/* slide-consult → see glass.css */
/* slide-audit → see glass.css */
