/* ============================================================
   PIXEMA — LANDING PAGE STYLESHEET
   pixema.io · Tailored Software. Scalable Products.
   © 2026 Pixema Technologies
   ============================================================ */

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

/* ── 1. DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --deep-navy:        #0B1220;
  --technology-blue:  #2563EB;
  --digital-cyan:     #06B6D4;
  --cloud-white:      #F8FAFC;
  --charcoal-text:    #111827;
  --muted-text:       #64748B;
  --border-light:     #E2E8F0;
  --card-white:       #FFFFFF;
  --soft-blue:        #EFF6FF;
  --soft-cyan:        #ECFEFF;
  --electric-violet:  #7C3AED;

  --blue-50:   #EFF6FF;
  --blue-100:  #DBEAFE;
  --blue-700:  #1D4ED8;
  --blue-800:  #1E40AF;
  --cyan-50:   #ECFEFF;
  --cyan-600:  #0891B2;
  --violet-50: #F5F3FF;

  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --success:        #16A34A;
  --success-bg:     #F0FDF4;
  --success-border: #BBF7D0;
  --warning:        #D97706;
  --warning-bg:     #FFFBEB;
  --warning-border: #FDE68A;
  --danger:         #DC2626;
  --danger-bg:      #FEF2F2;
  --danger-border:  #FECACA;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:   6px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  20px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(11,18,32,0.05);
  --shadow-sm: 0 1px 3px rgba(11,18,32,0.06);
  --shadow-md: 0 4px 12px rgba(11,18,32,0.09);
  --shadow-lg: 0 12px 32px rgba(11,18,32,0.13);
  --shadow-xl: 0 24px 60px rgba(11,18,32,0.18);

  --container-max: 1120px;
  --header-h: 66px;
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal-text);
  background: var(--cloud-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── 3. LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.section-py  { padding: 80px 0; }
.section-py-sm { padding: 48px 0; }
.section-bg-light { background: var(--gray-50); }
.section-bg-navy  { background: var(--deep-navy); }

/* ── 4. TYPOGRAPHY UTILITIES ───────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--digital-cyan);
  margin-bottom: 12px;
}
.eyebrow-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--digital-cyan);
  flex-shrink: 0;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted-text);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.022em;
  line-height: 1.18;
  margin-bottom: 14px;
}
.section-title-white { color: #fff; }

.section-subtitle {
  font-size: 16px;
  color: var(--muted-text);
  line-height: 1.75;
  max-width: 580px;
}
.section-subtitle-white { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }

.btn-primary {
  background: var(--technology-blue);
  color: #fff;
  border-color: var(--technology-blue);
}
.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--technology-blue);
  border-color: var(--technology-blue);
}
.btn-outline:hover {
  background: var(--soft-blue);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

.btn-coming-soon {
  background: var(--gray-100);
  color: var(--muted-text);
  border-color: var(--gray-200);
  cursor: default;
  pointer-events: none;
}

/* ── 6. CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── 7. HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-h);
}
.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-mark { width: 28px; height: 28px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--technology-blue);
  background: var(--soft-blue);
}
.nav-cta { flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.nav-hamburger:hover { background: var(--gray-100); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 8. MOBILE MENU ────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
  padding: 24px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  border-top: 1px solid var(--border-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: background 0.12s, color 0.12s;
}
.mobile-menu a:hover { background: var(--gray-100); color: var(--technology-blue); }
.mobile-menu-divider {
  height: 1px;
  background: var(--border-light);
  margin: 8px 0;
}
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ── 9. HERO ───────────────────────────────────────────────── */
.section-hero {
  background: var(--deep-navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--digital-cyan); }
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 28px;
}
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.hero-point-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(6,182,212,0.18);
  border: 1.5px solid rgba(6,182,212,0.45);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-point-dot::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--digital-cyan);
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Hero Ecosystem Visual ────────────────────────────────── */
.hero-ecosystem {
  position: relative;
  width: 100%;
  height: 480px;
  z-index: 1;
}

/* Dot-grid background */
.eco-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(37,99,235,0.35) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  animation: gridShift 18s linear infinite;
}

/* SVG connection lines */
.eco-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.eco-line {
  stroke: rgba(37,99,235,0.35);
  stroke-width: 1.5;
  stroke-dasharray: 6 5;
  animation: dashFlow 3s linear infinite;
}
.eco-packet {
  filter: drop-shadow(0 0 4px #06B6D4);
}

/* Central Core */
.eco-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.3);
  animation: corePulse 3s ease-in-out infinite;
}
.eco-core-ring-1 {
  width: 110px;
  height: 110px;
  animation-delay: 0s;
}
.eco-core-ring-2 {
  width: 150px;
  height: 150px;
  animation-delay: 0.8s;
  border-color: rgba(6,182,212,0.18);
}
.eco-core-inner {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--technology-blue), #1D4ED8);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow:
    0 0 0 3px rgba(37,99,235,0.25),
    0 0 32px rgba(37,99,235,0.45),
    0 8px 24px rgba(0,0,0,0.4);
  animation: corePulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.eco-core-inner svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.eco-core-label {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.eco-core-sub {
  font-size: 6.5px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

/* Orbit nodes — positioned absolutely around center */
.eco-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  animation: floatNode 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  cursor: default;
}
.eco-node-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.eco-node-icon svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.eco-node:hover .eco-node-icon {
  border-color: rgba(6,182,212,0.6);
  box-shadow: 0 4px 20px rgba(6,182,212,0.3);
  transform: scale(1.08);
}
.eco-node-name {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.eco-node-tag {
  font-size: 8.5px;
  color: var(--digital-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Node positions (centered at 50%/50%) */
.eco-node-top          { top: 2%;  left: 50%; transform: translateX(-50%); }
.eco-node-top-right    { top: 10%; right: 3%; }
.eco-node-right        { top: 50%; right: 0;  transform: translateY(-50%); }
.eco-node-bottom-right { bottom: 10%; right: 3%; }
.eco-node-bottom       { bottom: 2%; left: 50%; transform: translateX(-50%); }
.eco-node-bottom-left  { bottom: 10%; left: 3%; }
.eco-node-left         { top: 50%; left: 0;  transform: translateY(-50%); }
.eco-node-top-left     { top: 10%; left: 3%; }

/* Micro chips */
.eco-chip {
  position: absolute;
  padding: 4px 10px;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.3);
  border-radius: var(--radius-pill);
  font-size: 9px;
  font-weight: 700;
  color: var(--digital-cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: floatNode 5s ease-in-out infinite;
  white-space: nowrap;
}
.eco-chip-1 { top: 34%; left: 14%; animation-delay: 0.5s; }
.eco-chip-2 { top: 34%; right: 14%; animation-delay: 1.2s; }
.eco-chip-3 { bottom: 28%; left: 50%; transform: translateX(-50%); animation-delay: 0.9s; }

/* Keyframes */
@keyframes floatNode {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
/* Overrides for nodes with translateX so float still works */
.eco-node-top          { animation-name: floatNodeX; }
.eco-node-bottom       { animation-name: floatNodeX; }
.eco-node-right        { animation-name: floatNodeY; }
.eco-node-left         { animation-name: floatNodeY; }
@keyframes floatNodeX {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-7px); }
}
@keyframes floatNodeY {
  0%, 100% { transform: translateY(-50%) translateY(0px); }
  50%       { transform: translateY(-50%) translateY(-7px); }
}

@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,99,235,0.25), 0 0 32px rgba(37,99,235,0.45), 0 8px 24px rgba(0,0,0,0.4); }
  50%       { box-shadow: 0 0 0 5px rgba(37,99,235,0.18), 0 0 48px rgba(37,99,235,0.6),  0 8px 24px rgba(0,0,0,0.4); }
}

@keyframes dashFlow {
  to { stroke-dashoffset: -22; }
}

@keyframes gridShift {
  0%   { background-position: 0 0; }
  100% { background-position: 28px 28px; }
}
.trend-up   { background: var(--success-bg); color: var(--success); }
.trend-warn { background: var(--warning-bg); color: var(--warning); }
.trend-flat { background: var(--gray-100);   color: var(--gray-500); }
.trend-down { background: var(--danger-bg);  color: var(--danger); }

.db-content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
  min-height: 0;
}
.db-chart-panel, .db-list-panel {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  overflow: hidden;
}
.db-panel-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.db-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 68px;
}
.db-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
}
.db-bar-fill {
  width: 100%;
  background: var(--technology-blue);
  border-radius: 3px 3px 0 0;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.db-bar-fill.accent { background: var(--digital-cyan); opacity: 1; }
.db-bar-label { font-size: 8px; color: var(--gray-400); font-weight: 500; }

.db-work-orders { display: flex; flex-direction: column; gap: 5px; }
.db-wo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--gray-100);
  gap: 8px;
}
.db-wo-item:last-child { border-bottom: none; }
.db-wo-id {
  font-size: 9px;
  font-weight: 700;
  color: var(--technology-blue);
  font-family: var(--font-display);
}
.db-wo-name { font-size: 10px; color: var(--gray-600); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.db-status-pill {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.status-done    { background: var(--success-bg); color: var(--success); }
.status-pending { background: var(--warning-bg); color: var(--warning); }
.status-urgent  { background: var(--danger-bg);  color: var(--danger); }
.status-active  { background: var(--soft-blue);  color: var(--technology-blue); }

/* ── 10. TRUST STRIP ──────────────────────────────────────── */
.section-trust {
  background: var(--card-white);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 500;
}
.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--soft-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 16px; height: 16px; color: var(--technology-blue); }
.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* ── 11. ABOUT ─────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-desc {
  font-size: 16px;
  color: var(--muted-text);
  line-height: 1.78;
  margin-bottom: 28px;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-card {
  padding: 18px;
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}
.about-card-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--soft-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--technology-blue);
}
.about-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal-text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.about-card p { font-size: 13px; color: var(--muted-text); line-height: 1.55; }

/* About visual block */
.about-visual {
  background: var(--deep-navy);
  border-radius: var(--radius-2xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.about-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat {
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-num span { color: var(--digital-cyan); }
.about-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.about-product-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.about-pill {
  padding: 6px 12px;
  background: rgba(37,99,235,0.2);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: #93C5FD;
}
.about-pill.cyan-pill {
  background: rgba(6,182,212,0.15);
  border-color: rgba(6,182,212,0.3);
  color: #67E8F9;
}

/* ── 12. MISSION / VISION / PURPOSE ────────────────────────── */
.mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvp-card {
  padding: 32px 28px;
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}
.mvp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mvp-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.mvp-icon.blue  { background: var(--soft-blue); color: var(--technology-blue); }
.mvp-icon.cyan  { background: var(--soft-cyan); color: var(--cyan-600); }
.mvp-icon.violet { background: var(--violet-50); color: var(--electric-violet); }
.mvp-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--digital-cyan);
  margin-bottom: 8px;
  display: block;
}
.mvp-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.mvp-card p { font-size: 14px; color: var(--muted-text); line-height: 1.7; }

/* ── 13. SERVICES ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  padding: 24px 20px;
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--soft-blue);
  color: var(--technology-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal-text);
  margin-bottom: 7px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.service-card p { font-size: 13px; color: var(--muted-text); line-height: 1.65; }

/* ── 14. PRODUCTS ──────────────────────────────────────────── */
.products-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card.featured {
  border-color: var(--blue-100);
  box-shadow: 0 1px 3px rgba(37,99,235,0.1), inset 0 0 0 1px rgba(37,99,235,0.08);
}
.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--technology-blue), var(--digital-cyan));
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  width: fit-content;
}
.badge-blue   { background: var(--soft-blue);  color: var(--technology-blue); }
.badge-cyan   { background: var(--soft-cyan);  color: var(--cyan-600); }
.badge-green  { background: var(--success-bg); color: var(--success); }
.badge-violet { background: var(--violet-50);  color: var(--electric-violet); }
.badge-gray   { background: var(--gray-100);   color: var(--gray-500); }

.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.product-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-text);
  margin-bottom: 12px;
}
.product-desc {
  font-size: 13.5px;
  color: var(--muted-text);
  line-height: 1.68;
  margin-bottom: 18px;
  flex: 1;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.feature-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  color: var(--gray-600);
}

/* ── 15. FEATURED PRODUCTS ─────────────────────────────────── */
.featured-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fp-card {
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.fp-card.navy {
  background: var(--deep-navy);
  color: #fff;
}
.fp-card.blue {
  background: #1D4ED8;
  color: #fff;
}
.fp-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.fp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--digital-cyan);
  margin-bottom: 14px;
  display: block;
}
.fp-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.fp-subtitle { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.fp-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.fp-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
}
.fp-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(6,182,212,0.2);
  border: 1.5px solid rgba(6,182,212,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fp-check svg { width: 10px; height: 10px; color: var(--digital-cyan); }

/* ── 16. INDUSTRIES ───────────────────────────────────────── */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  padding: 22px 18px;
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-100);
}
.industry-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--soft-blue);
  color: var(--technology-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal-text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.industry-card p { font-size: 12px; color: var(--muted-text); line-height: 1.6; }

/* ── 17. WHY PIXEMA ───────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  padding: 28px 24px;
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s, box-shadow 0.18s;
}
.why-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.why-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--digital-cyan);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: block;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-card p { font-size: 13.5px; color: var(--muted-text); line-height: 1.68; }

/* ── 18. OUR APPROACH (TIMELINE) ──────────────────────────── */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}
.approach-steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, var(--technology-blue), var(--digital-cyan));
  z-index: 0;
}
.approach-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--technology-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 0 0 4px var(--cloud-white), 0 0 0 6px rgba(37,99,235,0.2);
  flex-shrink: 0;
}
.step-num.accent { background: var(--digital-cyan); }
.approach-step h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.approach-step p { font-size: 12px; color: var(--muted-text); line-height: 1.6; }

/* ── 19. TECHNOLOGY ────────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tech-card {
  padding: 24px 22px;
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.tech-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.tech-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--soft-blue);
  color: var(--technology-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tech-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.01em;
}
.tech-list { display: flex; flex-direction: column; gap: 6px; }
.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-text);
}
.tech-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--technology-blue);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── 20. PRODUCT MOCKUP SECTION ───────────────────────────── */
.section-mockup {
  background: var(--deep-navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section-mockup::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.mockup-header { margin-bottom: 48px; }
.large-dashboard {
  background: var(--card-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}
.ld-topbar {
  background: var(--deep-navy);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ld-dots { display: flex; gap: 6px; }
.ld-title-bar {
  margin-left: 14px;
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.ld-body { display: flex; height: 440px; }
.ld-sidebar {
  width: 196px;
  background: #0F172A;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.05);
}
.ld-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 6px;
}
.ld-logo-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.ld-nav-group-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 10px 8px 4px;
}
.ld-nav-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  cursor: default;
}
.ld-nav-item.active {
  background: rgba(37,99,235,0.25);
  color: #93C5FD;
}
.ld-nav-item.active .ld-nav-icon { color: #60A5FA; }
.ld-nav-icon { width: 15px; height: 15px; flex-shrink: 0; }
.ld-content {
  flex: 1;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ld-header {
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ld-page-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.015em;
}
.ld-header-actions { display: flex; align-items: center; gap: 10px; }
.ld-action-btn {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
}
.ld-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--technology-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.ld-main { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.ld-kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ld-kpi {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}
.ld-kpi-label { font-size: 11px; color: var(--muted-text); font-weight: 500; margin-bottom: 6px; }
.ld-kpi-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 5px;
}
.ld-kpi-sub {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  display: inline-block;
}
.ld-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 10px; flex: 1; min-height: 0; }
.ld-panel {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  overflow: hidden;
}
.ld-panel-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ld-panel-badge {
  font-size: 9px;
  padding: 2px 7px;
  background: var(--soft-blue);
  color: var(--technology-blue);
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.ld-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
}
.ld-bar-group { flex: 1; display: flex; align-items: flex-end; gap: 2px; height: 100%; }
.ld-bar { flex: 1; border-radius: 3px 3px 0 0; }
.ld-bar.primary { background: var(--technology-blue); opacity: 0.85; }
.ld-bar.secondary { background: var(--digital-cyan); opacity: 0.7; }
.ld-chart-legend {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.ld-legend-item { display: flex; align-items: center; gap: 5px; font-size: 10px; color: var(--gray-500); }
.ld-legend-dot { width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0; }
.ld-wo-list { display: flex; flex-direction: column; gap: 6px; }
.ld-wo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 11px;
}
.ld-wo-row:last-child { border-bottom: none; }
.ld-wo-code { font-weight: 700; color: var(--technology-blue); font-family: var(--font-display); width: 48px; flex-shrink: 0; }
.ld-wo-desc { flex: 1; color: var(--gray-600); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ld-notif-list { display: flex; flex-direction: column; gap: 8px; }
.ld-notif {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  font-size: 11px;
}
.ld-notif.warn { background: var(--warning-bg); border-color: var(--warning); }
.ld-notif.info { background: var(--soft-blue);  border-color: var(--technology-blue); }
.ld-notif.good { background: var(--success-bg); border-color: var(--success); }
.ld-notif-title { font-weight: 700; color: var(--charcoal-text); margin-bottom: 2px; }
.ld-notif-body  { color: var(--muted-text); }

/* ── 21. CONTACT / CTA ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.contact-info-desc { font-size: 15px; color: var(--muted-text); line-height: 1.75; margin-bottom: 32px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 14px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--soft-blue);
  color: var(--technology-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-text { font-size: 14px; color: var(--gray-700); font-weight: 500; }
.contact-detail-text a { color: var(--technology-blue); transition: color 0.12s; }
.contact-detail-text a:hover { color: var(--blue-700); }

.contact-form {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal-text);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--charcoal-text);
  background: var(--gray-50);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-control::placeholder { color: var(--gray-400); }
.form-control:focus {
  border-color: var(--technology-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
textarea.form-control { resize: vertical; min-height: 110px; }
.form-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-note { font-size: 12px; color: var(--muted-text); }
.form-success {
  display: none;
  padding: 12px 16px;
  background: var(--success-bg);
  border: 1px solid var(--success-border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  margin-top: 14px;
}

/* ── 22. FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--deep-navy);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}
.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 22px;
  max-width: 240px;
}
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.social-link:hover { background: rgba(37,99,235,0.35); color: #93C5FD; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.12s;
}
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color 0.12s; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.12s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── 23. BACK TO TOP ───────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--technology-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 50;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--blue-700); transform: translateY(-2px); }

/* ── 24. REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.15s; }
.reveal-delay-3 { transition-delay: 0.22s; }
.reveal-delay-4 { transition-delay: 0.29s; }

/* ── 25. REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .eco-bg-grid,
  .eco-line,
  .eco-node,
  .eco-chip,
  .eco-core-inner,
  .eco-core-ring {
    animation: none !important;
  }
  .eco-packet { display: none; }
}

/* ── 26. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .tech-grid        { grid-template-columns: repeat(2, 1fr); }
  .industries-grid  { grid-template-columns: repeat(2, 1fr); }
  .approach-steps   { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .approach-steps::before { display: none; }
  .approach-step { padding: 0; }
  .footer-grid  { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .footer-grid > *:last-child  { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-grid         { grid-template-columns: 1fr; gap: 48px; }
  .about-grid        { grid-template-columns: 1fr; gap: 40px; }
  .mvp-grid          { grid-template-columns: 1fr; }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .featured-products-grid { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .contact-grid      { grid-template-columns: 1fr; gap: 40px; }
  .ld-grid           { grid-template-columns: 1fr 1fr; }
  .ld-grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }
  .hero-title { font-size: 30px; }
  .section-py { padding: 56px 0; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid  { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: repeat(2, 1fr); }
  .about-cards { grid-template-columns: 1fr; }
  .trust-grid { justify-content: flex-start; gap: 16px; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ecosystem { display: none; }
  .products-intro { flex-direction: column; align-items: flex-start; }
  .ld-body { height: auto; flex-direction: column; }
  .ld-sidebar { width: 100%; flex-direction: row; overflow-x: auto; height: 44px; padding: 0 12px; }
  .ld-nav-group-label { display: none; }
  .ld-logo-row { display: none; }
  .ld-main { padding: 12px; }
  .ld-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .ld-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-ecosystem { height: 300px; }
  .eco-core-inner { width: 66px; height: 66px; }
  .eco-node-icon  { width: 34px; height: 34px; }
  .eco-chip       { display: none; }
  .industries-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; }
  .form-footer .btn { width: 100%; justify-content: center; }
  .back-to-top { bottom: 16px; right: 16px; }
}

/* ── 27. LANGUAGE TOGGLE BUTTON ─────────────────────────────── */
.btn-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 13px;
  border-radius: 6px;
  border: 1.5px solid var(--border-light);
  background: transparent;
  color: var(--gray-600);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-lang:hover {
  border-color: var(--technology-blue);
  color: var(--technology-blue);
  background: var(--soft-blue);
}
@media (max-width: 768px) {
  .btn-lang { display: none; }
  .mobile-lang-toggle {
    display: flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    font-size: 14px;
    padding: 10px;
    border: 1.5px solid var(--border-light);
    color: var(--gray-600);
    background: transparent;
  }
  .mobile-lang-toggle:hover {
    border-color: var(--technology-blue);
    color: var(--technology-blue);
    background: var(--soft-blue);
  }
}

/* ── 28. RTL SUPPORT ────────────────────────────────────────── */
[dir="rtl"] {
  font-family: 'Cairo', 'Space Grotesk', 'Inter', sans-serif;
}
[dir="rtl"] .nav {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}
[dir="rtl"] .eyebrow {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
[dir="rtl"] .hero-content {
  text-align: right;
}
[dir="rtl"] .hero-points {
  text-align: right;
}
[dir="rtl"] .hero-point {
  flex-direction: row-reverse;
}
[dir="rtl"] .hero-ctas {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
[dir="rtl"] .section-header:not(.center) {
  text-align: right;
}
[dir="rtl"] .about-card {
  text-align: right;
}
[dir="rtl"] .about-card-icon {
  margin-right: 0;
  margin-left: auto;
}
[dir="rtl"] .about-stat-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .mvp-card {
  text-align: right;
}
[dir="rtl"] .service-card {
  text-align: right;
}
[dir="rtl"] .service-icon {
  margin-right: 0;
  margin-left: auto;
}
[dir="rtl"] .product-card {
  text-align: right;
}
[dir="rtl"] .product-features {
  justify-content: flex-end;
}
[dir="rtl"] .fp-benefits {
  text-align: right;
}
[dir="rtl"] .fp-benefit {
  flex-direction: row-reverse;
}
[dir="rtl"] .industry-card {
  text-align: right;
}
[dir="rtl"] .industry-icon {
  margin-right: 0;
  margin-left: auto;
}
[dir="rtl"] .why-card {
  text-align: right;
}
[dir="rtl"] .why-number {
  margin-right: 0;
  margin-left: auto;
}
[dir="rtl"] .approach-step {
  text-align: right;
}
[dir="rtl"] .tech-card {
  text-align: right;
}
[dir="rtl"] .tech-card-header {
  flex-direction: row-reverse;
}
[dir="rtl"] .tech-item {
  flex-direction: row-reverse;
}
[dir="rtl"] .contact-detail {
  flex-direction: row-reverse;
  text-align: right;
}
[dir="rtl"] .contact-detail-text {
  text-align: right;
}
[dir="rtl"] .contact-form {
  text-align: right;
}
[dir="rtl"] .form-label {
  text-align: right;
}
[dir="rtl"] .form-control {
  text-align: right;
  direction: rtl;
}
[dir="rtl"] .form-footer {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-grid {
  direction: rtl;
}
[dir="rtl"] .footer-brand-logo {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-links {
  align-items: flex-end;
}
[dir="rtl"] .footer-contact-item {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-legal {
  flex-direction: row-reverse;
}
[dir="rtl"] .footer-social {
  flex-direction: row-reverse;
}
[dir="rtl"] .back-to-top {
  right: auto;
  left: 28px;
}
[dir="rtl"] .mobile-menu {
  text-align: right;
}
[dir="rtl"] .trust-item {
  flex-direction: row-reverse;
}
[dir="rtl"] .about-desc {
  text-align: right;
}
[dir="rtl"] .mvp-grid {
  direction: rtl;
}
[dir="rtl"] .about-pill {
  direction: rtl;
}
[dir="rtl"] .products-intro {
  direction: rtl;
}
[dir="rtl"] .ld-sidebar {
  direction: rtl;
}
[dir="rtl"] .ld-logo-row {
  flex-direction: row-reverse;
}
[dir="rtl"] .ld-header {
  flex-direction: row-reverse;
}
[dir="rtl"] .ld-header-actions {
  flex-direction: row-reverse;
}
[dir="rtl"] .ld-kpi-row {
  direction: rtl;
}
[dir="rtl"] .ld-grid {
  direction: rtl;
}
[dir="rtl"] .ld-panel-title {
  flex-direction: row-reverse;
}
[dir="rtl"] .ld-wo-row {
  direction: rtl;
}
[dir="rtl"] .ld-notif {
  border-left: none;
  border-right: 3px solid;
  padding-left: 0;
  padding-right: 12px;
}
[dir="rtl"] .ld-notif.warn { border-right-color: var(--warn-orange); }
[dir="rtl"] .ld-notif.info { border-right-color: var(--technology-blue); }
[dir="rtl"] .ld-notif.good { border-right-color: var(--success-green); }
[dir="rtl"] .contact-grid {
  direction: rtl;
}
[dir="rtl"] .contact-detail-list {
  direction: rtl;
}
[dir="rtl"] .eco-node-name,
[dir="rtl"] .eco-node-tag,
[dir="rtl"] .eco-core-label,
[dir="rtl"] .eco-core-sub {
  font-family: 'Cairo', sans-serif;
}
@media (max-width: 480px) {
  [dir="rtl"] .back-to-top {
    right: auto;
    left: 16px;
  }
}
