/* axeviadigital — Premium Software House */

:root,
[data-theme="dark"] {
  --bg: #05060c;
  --bg-elev: rgba(12, 16, 32, 0.82);
  --bg-soft: #0c1020;
  --text: #f2f4ff;
  --muted: #9aa6c7;
  --line: rgba(242, 244, 255, 0.1);
  --accent: #0084ff;
  --accent-2: #8a2be2;
  --on-accent: #ffffff;
  --danger: #ff7b72;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --header: rgba(5, 6, 12, 0.82);
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: Cairo, system-ui, sans-serif;
  --display: Cairo, system-ui, sans-serif;
  --max: 1180px;
  --header-h: 76px;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f7f8fc;
  --bg-elev: rgba(255, 255, 255, 0.82);
  --bg-soft: #eceff8;
  --text: #050a1a;
  --muted: #4a5570;
  --line: rgba(5, 10, 26, 0.1);
  --accent: #0066d6;
  --accent-2: #7030a0;
  --on-accent: #ffffff;
  --shadow: 0 18px 50px rgba(0, 80, 200, 0.14);
  --glass: rgba(255, 255, 255, 0.76);
  --glass-border: rgba(5, 10, 26, 0.1);
  --header: rgba(247, 248, 252, 0.86);
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

/* Do not apply max-width to bare SVGs — viewBox-only icons expand to full container width. */
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 820px); }

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.7rem 1rem;
  font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 1rem;
  background:
    radial-gradient(ellipse at 50% 42%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 42%),
    var(--bg);
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.page-loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.page-loader__orb {
  position: relative;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
}
.page-loader__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-top-color: var(--accent);
  border-right-color: var(--accent-2);
  animation: loader-spin 0.9s linear infinite;
}
.page-loader__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  animation: loader-float 1.4s ease-in-out infinite;
}
.page-loader__label {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.28em;
  font-weight: 700;
  font-size: 0.78rem;
  color: color-mix(in srgb, var(--text) 72%, transparent);
}
.page-loader__mark {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent);
  margin-inline: auto;
  box-shadow: 0 0 24px color-mix(in srgb, var(--accent) 70%, transparent);
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}
@keyframes loader-float {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-4px); opacity: 0.88; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.75); opacity: 0.6; }
}

/* Background FX */
.bg-fx { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-fx__orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: 0.28;
}
.bg-fx__orb--1 { width: 42vw; height: 42vw; top: -10%; inset-inline-end: -8%; background: color-mix(in srgb, var(--accent) 35%, transparent); }
.bg-fx__orb--2 { width: 34vw; height: 34vw; bottom: 10%; inset-inline-start: -10%; background: color-mix(in srgb, var(--accent-2) 25%, transparent); }
.bg-fx__orb--3 { display: none; }
.bg-fx__grid {
  position: absolute; inset: 0; opacity: 0.22;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.bg-fx__canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
@media (max-width: 768px) {
  .bg-fx__canvas { display: none; }
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(3%, 5%) scale(1.08); }
}

/* Header */
.header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  backdrop-filter: blur(18px); background: var(--header);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--line); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.55rem; }
.brand__logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: min(190px, 48vw);
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}
.brand__logo--light { display: none; }
[data-theme="light"] .brand__logo--dark { display: none; }
[data-theme="light"] .brand__logo--light { display: block; }
.brand--footer .brand__logo {
  height: 56px;
  max-width: 220px;
}
.brand__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 16px color-mix(in srgb, var(--accent) 70%, transparent);
}
.brand__name { font-family: var(--display); font-weight: 700; letter-spacing: 0.02em; font-size: 0.92rem; }
.brand__tag { color: var(--muted); font-size: 0.78rem; display: none; }
@media (min-width: 720px) { .brand__tag { display: inline; } }

.nav { display: none; gap: 1.35rem; }
.nav a {
  color: var(--muted); font-size: 0.9rem; position: relative;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; inset-inline-end: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--accent); transition: width 0.3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 0.45rem; }
.header__cta {
  display: none;
  padding: 0.48rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.mobile-nav__ctas {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.mobile-nav__ctas .btn {
  flex: 1;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
}

.sticky-cta {
  display: none !important;
}

.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px;
  transition: border-color 0.25s, transform 0.25s var(--ease), background 0.25s;
}
.icon-btn:hover { border-color: var(--accent); transform: translateY(-1px); }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="light"] .icon-sun { display: none; }

.burger {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px;
  display: grid; place-content: center; gap: 6px;
}
.burger span { width: 16px; height: 1.5px; background: var(--text); transition: transform 0.3s var(--ease); }
.burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.burger.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-nav {
  display: none; position: absolute; inset-inline: 0; top: var(--header-h);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
  border-bottom: 1px solid var(--line); padding: 1rem 1.25rem 1.5rem;
  flex-direction: column; gap: 0.85rem;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { color: var(--muted); font-size: 1.05rem; }

@media (min-width: 920px) {
  .nav, .header__cta { display: inline-flex; }
  .burger { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.35rem; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, #4f46e5 48%, var(--accent-2) 100%);
  color: var(--on-accent);
}
.btn--primary:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn--ghost {
  border: 1px solid var(--glass-border); background: var(--glass);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn.header__cta {
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  min-height: 34px;
  height: 34px;
  line-height: 1;
}

/* Glass */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

/* Sections */
.section { padding: 3.5rem 0; }
.section--tight { padding: 1.75rem 0 0.75rem; }
.section-head { margin-bottom: 1.75rem; max-width: 42rem; }
.eyebrow, .section-kicker {
  color: var(--accent); font-family: var(--display); font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.75rem;
}
.section-kicker { text-align: center; margin-bottom: 1.25rem; }
h1, h2, h3 { font-family: var(--display); line-height: 1.25; font-weight: 700; }
.section-head h2, .split h2 { font-size: clamp(1.7rem, 3.6vw, 2.55rem); margin-bottom: 0.75rem; }
.lead, .prose { color: var(--muted); font-size: 1.02rem; }
.lead { margin-top: 0.35rem; }
.prose + .prose { margin-top: 1rem; }
.split { display: grid; gap: 2rem; }
@media (min-width: 860px) { .split { grid-template-columns: 0.95fr 1.15fr; gap: 3.5rem; } }

.check-list { margin-top: 1.5rem; display: grid; gap: 0.7rem; }
.check-list li {
  position: relative; padding-inline-start: 1.4rem; color: var(--text); font-weight: 500;
}
.check-list li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 0.55rem;
  width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--accent-2);
}

/* Hero Section */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 3.25rem 0 2.75rem;
  position: relative;
}
@media (min-width: 980px) {
  .hero {
    /* Fill viewport without leaving a dead empty band under the content */
    min-height: calc(100svh - var(--header-h));
    justify-content: center;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 0;
  max-width: var(--max);
  width: 100%;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1.05rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  width: fit-content;
}

.hero__title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 1.22;
  margin: 0;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}
.hero__title span {
  display: block;
}
.hero__title-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #6366f1 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  margin: 1.2rem 0 1.85rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.hero__btn-cta {
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
}
html[dir="rtl"] .hero__btn-arrow {
  transform: rotate(180deg);
}
.hero__btn-ghost {
  gap: 0.55rem;
  padding: 0.9rem 1.4rem;
}

/* Proof Strip */
.hero__proof-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}
.proof-icon {
  font-size: 0.95rem;
}
.proof-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
}

/* Hero Showcase Card */
.hero__showcase {
  position: relative;
  isolation: isolate;
}
.showcase-card {
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  background: color-mix(in srgb, var(--bg-soft) 85%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow), 0 0 40px color-mix(in srgb, var(--accent) 15%, transparent);
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.showcase-card:hover {
  transform: translateY(-4px);
}
.showcase-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: color-mix(in srgb, var(--bg) 60%, transparent);
  border-bottom: 1px solid var(--line);
  gap: 0.75rem;
}
.showcase-card__dots {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.showcase-card__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.showcase-card__dots span:nth-child(1) { background: #ff5f56; }
.showcase-card__dots span:nth-child(2) { background: #ffbd2e; }
.showcase-card__dots span:nth-child(3) { background: #27c93f; }

.showcase-card__tabs {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: color-mix(in srgb, var(--bg-soft) 90%, transparent);
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.showcase-tab {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.showcase-tab:hover {
  color: var(--text);
}
.showcase-tab.is-active {
  background: var(--accent);
  color: var(--on-accent);
}

.showcase-card__body {
  padding: 1.5rem;
  min-height: 240px;
}
.showcase-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.showcase-panel.is-active {
  display: block;
  opacity: 1;
}

/* Architecture Node Flow */
.arch-flow {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.arch-node {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.arch-node__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 15%, transparent);
  display: grid;
  place-items: center;
  font-size: 1rem;
}
.arch-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline-start: 1.5rem;
}
.connector-line {
  height: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.connector-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
}

/* Metrics Dashboard */
.metrics-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.metric-box {
  padding: 1rem 0.75rem;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.metric-box__label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}
.metric-box__val {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}
.metric-box__sub {
  font-size: 0.7rem;
  font-weight: 600;
}
.metric-box__sub.green { color: #00e676; }
.metric-box__sub.blue { color: #0084ff; }

/* Cloud Integrations */
.cloud-integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0.5rem;
}
.cloud-badge {
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.cloud-badge:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-soft) 92%, transparent);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  z-index: 5;
  animation: floatBadge 4s ease-in-out infinite alternate;
}
.floating-badge--top {
  top: -16px;
  inset-inline-end: 20px;
}
.floating-badge--bottom {
  bottom: -16px;
  inset-inline-start: 20px;
  animation-delay: 2s;
}
@keyframes floatBadge {
  from { transform: translateY(0px); }
  to { transform: translateY(-8px); }
}
/* Tech Matrix Filter Bar */
.tech-matrix {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding: 0.25rem 0;
}
.tech-matrix__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}
.tech-matrix__chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.tech-chip__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  transition: background 0.25s;
}
.tech-chip:hover,
.tech-chip.is-active {
  color: var(--text);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}
.tech-chip.is-active .tech-chip__dot {
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

/* Category Filter Chips */
.clients__filter-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.filter-chip {
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-soft) 85%, transparent);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.filter-chip:hover {
  color: var(--text);
  border-color: var(--glass-border);
}
.filter-chip.is-active {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 35%, transparent);
}

/* Bento Clients Grid */
.bento-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.1rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
  max-width: var(--max);
}
@media (min-width: 860px) {
  .bento-clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bento-card {
  box-sizing: border-box;
  padding: 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  position: relative;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s, opacity 0.35s;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}
a.bento-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 14px 35px -8px rgba(0, 0, 0, 0.4), 0 0 25px color-mix(in srgb, var(--accent) 20%, transparent);
}
.bento-card.is-dimmed {
  opacity: 0.3;
  transform: scale(0.97);
  pointer-events: none;
}
.bento-card.is-hidden {
  display: none !important;
}

/* Featured Bento Card Span */
@media (min-width: 860px) {
  .bento-clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card--featured {
    grid-column: auto;
    padding: 1.4rem;
  }
}
.bento-card--featured {
  background: color-mix(in srgb, var(--bg-soft) 90%, transparent);
  border-color: color-mix(in srgb, var(--accent) 25%, transparent);
  min-height: 220px;
}

.bento-card__badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}
.bento-card__badge.green {
  background: rgba(0, 230, 118, 0.12);
  color: #00e676;
  border: 1px solid rgba(0, 230, 118, 0.25);
}
.bento-card__badge.purple {
  background: rgba(138, 43, 226, 0.12);
  color: #a855f7;
  border: 1px solid rgba(138, 43, 226, 0.25);
}

/* Standard Bento Cards Centered Alignment */
.bento-card:not(.bento-card--featured) {
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 140px;
}
.bento-card:not(.bento-card--featured) .bento-card__logo {
  justify-content: center;
  width: 100%;
  margin-bottom: 0.25rem;
}
.bento-card:not(.bento-card--featured) .bento-card__meta {
  align-items: center;
  text-align: center;
  width: 100%;
}

.bento-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 92px;
  min-height: 92px;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: color-mix(in srgb, #ffffff 92%, var(--card));
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.bento-card__logo img {
  display: block !important;
  max-width: min(100%, 160px);
  max-height: 52px;
  width: auto;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.35s var(--ease);
}
.bento-card--featured .bento-card__logo {
  height: 96px;
  min-height: 96px;
}
.bento-card--featured .bento-card__logo img {
  max-width: min(100%, 170px);
  max-height: 56px;
}
.bento-card--featured .bento-card__logo img[src*="logo-mark"] {
  max-height: 64px;
}
.bento-card:hover .bento-card__logo img {
  transform: scale(1.04);
}

.clients__more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.bento-card__info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.bento-card__info p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

.bento-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.bento-card__meta span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.bento-card__meta small {
  font-size: 0.76rem;
  color: var(--muted);
}

.bento-card__tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.bento-card__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  background: var(--glass);
  border: 1px solid var(--line);
  color: var(--muted);
}
.logo-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(120px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: 0;
  pointer-events: none;
}
.logo-pill:hover::before {
  opacity: 1;
}
.logo-pill:hover {
  transform: translateY(-5px) scale(1.03);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--glass) 120%, transparent);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.4), 0 0 20px color-mix(in srgb, var(--accent) 20%, transparent);
}

.logo-pill--img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 125px;
  max-height: 44px;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease), opacity 0.35s, filter 0.35s;
  opacity: 0.85;
}

[data-theme="dark"] .logo-pill--img img[src$=".svg"] {
  filter: brightness(0) invert(0.92);
}
[data-theme="dark"] .logo-pill--img img[src$=".webp"] {
  filter: brightness(0.95) contrast(1.05);
}
.logo-pill:hover img {
  opacity: 1;
  transform: scale(1.06);
}
[data-theme="dark"] .logo-pill:hover img[src$=".svg"] {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Tooltip on Hover */
.logo-pill[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: #090d1f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.logo-pill[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Interactive Grid View State */
.logo-ticker.is-grid {
  overflow: visible;
}
.logo-ticker.is-grid .logo-ticker__viewport {
  height: auto;
  mask-image: none;
  -webkit-mask-image: none;
  padding-block: 1rem;
}
.logo-ticker.is-grid .logo-ticker__track {
  position: relative;
  animation: none !important;
  transform: none !important;
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.1rem;
  justify-content: center;
}
.logo-ticker.is-grid [data-ticker-clone="1"] {
  display: none !important;
}

/* legacy class kept for safety */
.logo-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Stats */
.stats-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card { padding: 1.4rem 1.25rem; }
.stat-card__value {
  font-family: var(--display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-card__label { color: var(--muted); margin-top: 0.35rem; font-size: 0.92rem; }

.about-stats-strip {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

/* Company Overview (#about) 2-Column Spotlight */
.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.about-title-gradient {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.about-subtext {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 600px) {
  .about-checks {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.9rem;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.about-check-item:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  transform: translateY(-2px);
}
.about-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: #00e676;
  font-size: 0.76rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Delivery Excellence Glass Card */
.about-card {
  box-sizing: border-box;
  padding: 1.6rem 1.4rem;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  background: color-mix(in srgb, var(--bg-soft) 92%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4);
}

.about-card__header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.about-card__status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.about-pillar-item:hover {
  transform: translateX(4px);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}
[dir="rtl"] .about-pillar-item:hover {
  transform: translateX(-4px);
}

.about-pillar-icon {
  font-size: 1.25rem;
  line-height: 1;
  padding: 0.4rem;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  flex-shrink: 0;
}

.about-pillar-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.about-pillar-content p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Services */
.services-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  padding: 1.45rem; transition: transform 0.3s var(--ease), border-color 0.3s;
}
.service-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, var(--glass-border)); }
.service-card__icon {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); margin-bottom: 1rem;
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.service-card p { color: var(--muted); font-size: 0.95rem; }

/* Industries Cards Grid */
.industries-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
@media (min-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-card {
  box-sizing: border-box;
  padding: 1.4rem 1.2rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s, background 0.35s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--glass) 120%, transparent);
  box-shadow: 0 14px 35px -8px rgba(0, 0, 0, 0.35), 0 0 25px color-mix(in srgb, var(--accent) 18%, transparent);
}

.industry-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}
.industry-card__icon svg {
  width: 22px;
  height: 22px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.industry-card:hover .industry-card__icon {
  transform: scale(1.08);
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 40%, transparent);
}

.industry-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.industry-card__desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Tech Stack Architecture Pillars Tabs */
.stack-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.stack-tab-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg-soft) 85%, transparent);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.stack-tab-btn:hover {
  color: var(--text);
  border-color: var(--glass-border);
}
.stack-tab-btn.is-active {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
  box-shadow: 0 4px 18px color-mix(in srgb, var(--accent) 38%, transparent);
}

.stack-panels {
  margin-top: 1.5rem;
}

.stack-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.stack-panel.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.stack-panel[hidden] {
  display: none !important;
}

.stack-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
@media (min-width: 900px) {
  .stack-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stack-card {
  box-sizing: border-box;
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s, background 0.35s;
  position: relative;
}
.stack-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--glass) 120%, transparent);
  box-shadow: 0 14px 35px -8px rgba(0, 0, 0, 0.35), 0 0 22px color-mix(in srgb, var(--accent) 18%, transparent);
}

.stack-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stack-card__badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
}

.stack-card__name {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.stack-card__desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
  unicode-bidi: plaintext;
}

/* Principles */
.principles-grid {
  display: grid; gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .principles-grid { grid-template-columns: repeat(3, 1fr); } }
.principle {
  padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: color-mix(in srgb, var(--glass) 80%, transparent);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.principle:hover { border-color: var(--accent); transform: translateY(-2px); }
.principle h3 { color: var(--accent); font-size: 1rem; margin-bottom: 0.4rem; }
.principle p { color: var(--muted); font-size: 0.92rem; }

/* Portfolio */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.35rem; }
.chip {
  padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--line);
  color: var(--muted); transition: all 0.25s var(--ease);
}
.chip.is-active, .chip:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.portfolio-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.portfolio-card { padding: 1.3rem; display: grid; gap: 0.55rem; transition: transform 0.3s var(--ease); }
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card__logo {
  display: block;
  width: 100%;
  height: 52px;
  max-width: none;
  object-fit: contain;
  object-position: start;
  margin-bottom: 0.35rem;
  padding: 0.45rem 0.55rem;
  border-radius: 12px;
  background: #f4f6fb;
  box-sizing: border-box;
}
.portfolio-card__cat { color: var(--accent); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.portfolio-card h3 { font-size: 1.15rem; }
.portfolio-card p { color: var(--muted); font-size: 0.92rem; }
.portfolio-card a { color: var(--accent); font-weight: 600; margin-top: 0.35rem; }

/* Cases */
.cases { display: grid; gap: 1.15rem; }
.case-card { padding: 1.5rem; }
.case-card h3 { font-size: 1.3rem; margin-bottom: 1.1rem; }
.case-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 800px) { .case-grid { grid-template-columns: repeat(2, 1fr); } }
.case-grid h4 { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.35rem; }
.case-grid p, .case-grid li { color: var(--muted); font-size: 0.94rem; }
.case-grid ul { display: grid; gap: 0.35rem; padding-inline-start: 1rem; list-style: disc; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag-row span {
  font-size: 0.78rem; padding: 0.3rem 0.55rem; border-radius: 999px;
  border: 1px solid var(--line); color: var(--text);
}

/* Compare Transformation Grid */
.compare-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
}

.compare-card {
  box-sizing: border-box;
  padding: 1.6rem 1.4rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.compare-card--before {
  border-color: rgba(239, 68, 68, 0.22);
  background: color-mix(in srgb, var(--bg-soft) 85%, rgba(239, 68, 68, 0.04));
}

.compare-card--after {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  background: color-mix(in srgb, var(--bg-soft) 92%, transparent);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.4), 0 0 25px color-mix(in srgb, var(--accent) 15%, transparent);
}
.compare-card--after:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.compare-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  width: max-content;
}
.compare-badge--before {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
}
.compare-badge--after {
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
}

.compare-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease);
}

.compare-item--before {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: var(--muted);
}

.compare-item--after {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text);
}
.compare-item--after:hover {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  transform: translateX(4px);
}
[dir="rtl"] .compare-item--after:hover {
  transform: translateX(-4px);
}

.compare-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.compare-icon--before {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}
.compare-icon--after {
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: #00e676;
}

/* Process Delivery Pipeline Grid */
.process-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
@media (min-width: 1000px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-card {
  box-sizing: border-box;
  padding: 1.4rem 1.15rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s, background 0.35s;
  cursor: pointer;
  position: relative;
}
.process-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  background: color-mix(in srgb, var(--glass) 120%, transparent);
  box-shadow: 0 14px 35px -8px rgba(0, 0, 0, 0.35), 0 0 22px color-mix(in srgb, var(--accent) 18%, transparent);
}

.process-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.process-badge {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
}

.process-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
  display: grid;
  place-items: center;
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s;
}
.process-card__icon svg {
  width: 20px;
  height: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-card:hover .process-card__icon {
  transform: scale(1.08);
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--accent) 40%, transparent);
}

.process-card__title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.process-card__desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Testimonials — force LTR track so RTL page dir doesn't hide slides */
.carousel {
  overflow: hidden;
  width: 100%;
  direction: ltr;
}
.carousel__track {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.testimonial {
  box-sizing: border-box;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  padding: 1.75rem;
  min-height: 200px;
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
  direction: rtl; /* restore text direction for Arabic content */
}
[lang="en"] .testimonial {
  direction: ltr;
}
@media (min-width: 860px) {
  .testimonial {
    flex-basis: calc(50% - 0.625rem);
    width: calc(50% - 0.625rem);
    min-width: calc(50% - 0.625rem);
    max-width: calc(50% - 0.625rem);
  }
}
.testimonial p { font-size: 1.05rem; line-height: 1.7; margin: 0; color: var(--text); }
.testimonial footer { display: grid; gap: 0.15rem; }
.testimonial strong { color: var(--text); }
.testimonial span { color: var(--muted); font-size: 0.88rem; }
.carousel__controls {
  display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.25rem;
  direction: ltr;
}
.carousel__dots { display: flex; gap: 0.4rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--line);
  transition: transform 0.25s, background 0.25s;
}
.dot.is-active { background: var(--accent); transform: scale(1.25); }

/* FAQ */
.faq {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .faq {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
    align-items: start;
  }
}
.faq-item { padding: 0.5rem 1.15rem 0.85rem; box-sizing: border-box; }
.faq-item summary {
  cursor: pointer; font-weight: 600; padding: 0.85rem 0; list-style: none; font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--muted); padding-bottom: 0.5rem; margin: 0; font-size: 0.92rem; line-height: 1.6; }

/* CTA / Contact */
.cta-panel {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid; gap: 1.5rem;
  background:
    radial-gradient(ellipse at 100% 0%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 50%),
    var(--glass);
}
@media (min-width: 860px) {
  .cta-panel { grid-template-columns: 1.4fr auto; align-items: end; }
}
.cta-panel__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.contact-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.95fr 1.15fr;
    grid-template-areas:
      "cards form"
      "map form";
  }
  .contact-cards { grid-area: cards; }
  .contact-form { grid-area: form; }
  .map-wrap { grid-area: map; }
}
.contact-cards { display: grid; gap: 0.75rem; grid-template-columns: 1fr 1fr; }
.contact-card { padding: 1.15rem; transition: transform 0.25s var(--ease), border-color 0.25s; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.contact-card h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.contact-card p { color: var(--muted); font-size: 0.9rem; }
.map-wrap { overflow: hidden; min-height: 240px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 240px; border: 0; filter: grayscale(0.2) contrast(1.05); }

.contact-form {
  position: relative;
  padding: 1.35rem 1.35rem 1.5rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}
.contact-form__title { font-size: 1.15rem; margin: 0; }
.contact-form__lead { color: var(--muted); font-size: 0.92rem; margin: 0 0 0.35rem; }
.form-row { display: grid; gap: 0.35rem; }
.form-row label { font-size: 0.85rem; font-weight: 600; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  color: var(--text);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus-visible,
.form-row select:focus-visible,
.form-row textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  clip: rect(0, 0, 0, 0) !important;
}
.form-status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.form-status.is-ok { color: #35d0a5; }
.form-status.is-err { color: #ff6b7a; }
.recaptcha-mount { margin-top: 0.25rem; }
.contact-form .btn { justify-self: start; }

/* Industries Badges Strip (merged from standalone section) */
.industries-strip {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.industries-strip__title {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.industries-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.25s var(--ease);
}
.industry-badge:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

/* Footer */
.footer {
  border-top: 1px solid var(--line); padding: 3.5rem 0 2rem;
  background: color-mix(in srgb, var(--bg-soft) 55%, transparent);
}
.footer__grid {
  display: grid; gap: 1.75rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer h3 { font-size: 0.9rem; margin-bottom: 0.75rem; color: var(--accent); }
.footer a, .footer__about, .footer p { color: var(--muted); display: block; margin-bottom: 0.45rem; font-size: 0.92rem; }
.footer__social a { display: inline-flex; margin-bottom: 0; }
.footer a:hover { color: var(--text); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: color-mix(in srgb, var(--text) 6%, transparent); border: 1px solid var(--line); color: var(--muted); transition: all .25s ease; }
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 35%, transparent); }
.section-divider { padding-top: 3rem; margin-top: 3rem; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 1rem); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  border-top: 1px solid var(--line); padding-top: 1.25rem;
}

/* Industries Badges Strip */
.industries-strip {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.industries-strip__title {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.industries-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.25s var(--ease), border-color 0.25s, background 0.25s;
}
.industry-badge:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, transparent);
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

/* Team Grid & Cards */
/* Team Grid & Interactive 3D Animated Cards */
.team-grid {
  display: grid !important;
  gap: 1.5rem !important;
  grid-template-columns: repeat(3, 1fr) !important;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr !important; } }

.team-card {
  box-sizing: border-box;
  padding: 2.75rem 1.5rem 2rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s, background 0.4s;
  position: relative;
  overflow: hidden;
}

/* Glowing background highlight on hover */
.team-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1.5px;
  background: linear-gradient(135deg, transparent 40%, var(--accent) 70%, var(--accent-2) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  background: color-mix(in srgb, var(--bg-soft) 95%, transparent);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4), 0 0 30px color-mix(in srgb, var(--accent) 22%, transparent);
}
.team-card:hover::before {
  opacity: 1;
}

/* Featured CEO Card */
.team-card--ceo {
  padding-top: 3.5rem;
  border: 1.5px solid color-mix(in srgb, #ffb703 65%, var(--accent));
  background: linear-gradient(145deg, color-mix(in srgb, var(--bg-soft) 95%, transparent), color-mix(in srgb, #ffb703 10%, transparent));
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5), 0 0 25px color-mix(in srgb, #ffb703 22%, transparent);
}
.team-card--ceo::before {
  background: linear-gradient(135deg, #ffb703 0%, var(--accent) 50%, var(--accent-2) 100%);
  opacity: 0.7;
}
.team-card--ceo:hover {
  border-color: #ffb703;
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.55), 0 0 40px color-mix(in srgb, #ffb703 40%, transparent);
}

.ceo-badge,
.role-badge {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.ceo-badge {
  background: linear-gradient(135deg, #ffb703 0%, #ff8800 100%);
  color: #05060c;
  box-shadow: 0 4px 14px rgba(255, 183, 3, 0.4);
}

.pm-badge {
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #05060c;
  box-shadow: 0 4px 14px rgba(0, 242, 254, 0.35);
}

.cofounder-badge {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.35);
}

.team-card__avatar--ceo {
  width: 96px;
  height: 96px;
  border-color: #ffb703;
  box-shadow: 0 0 22px color-mix(in srgb, #ffb703 45%, transparent);
}

.team-card__avatar {
  width: 92px;
  height: 92px;
  margin-top: 0.4rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 25%, transparent);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s;
  position: relative;
}
.team-card:hover .team-card__avatar {
  transform: scale(1.08) rotate(2deg);
  border-color: var(--accent);
  box-shadow: 0 0 30px color-mix(in srgb, var(--accent) 50%, transparent);
}
.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s var(--ease);
}
.team-card__avatar img[src*="mahsoon"] {
  object-position: center 25%;
}
.team-card__avatar img[src*="ahmed_hassan"] {
  object-position: center 18%;
}
.team-card__avatar img[src*="ismail_mahmoud"] {
  object-position: center 20%;
}
.team-card__avatar img[src*="mohamed_gamal"] {
  object-position: center 20%;
}
.team-card__avatar img[src*="mostafa_bahar"] {
  object-position: center 20%;
}
.team-card:hover .team-card__avatar img {
  transform: scale(1.05);
}

.team-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.team-card__name {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  transition: color 0.3s var(--ease);
}
.team-card:hover .team-card__name {
  color: var(--accent);
}
.team-card__role {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}
.team-card__desc {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0.35rem 0 0;
}

.team-card__stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
}
.team-card__stack span {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  color: var(--accent);
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.team-card:hover .team-card__stack span {
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  transform: translateY(-2px);
}

/* Reveal — visible by default if JS/observer fails; animate when ready */
.reveal {
  opacity: 1;
  transform: none;
}
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

  @media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .js-reveal .reveal { opacity: 1; transform: none; }
  .tech-ticker__track,
  .logo-ticker__track { animation: none !important; }
}

/* ===== Conversion redesign additions ===== */
.hero--simple { min-height: auto; padding: 3.5rem 0 2.5rem; }
.hero--pro {
  min-height: auto;
  padding: 3.25rem 0 2.75rem;
}
@media (min-width: 980px) {
  .hero--pro {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
  }
}
.hero__grid--simple { grid-template-columns: 1fr; max-width: 48rem; }
.hero__phone-line {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.65rem;
  margin-top: 1.25rem; font-size: 0.95rem; color: var(--muted);
}
.hero__phone-line a { color: var(--accent); font-weight: 700; text-decoration: none; }
.hero__phone-line a:hover { text-decoration: underline; }
a[dir="ltr"],
p[dir="ltr"],
.ltr-num,
.header__phone,
.hero__phone-line a[dir="ltr"] {
  direction: ltr;
  unicode-bidi: isolate;
}
.header__phone { font-size: 0.82rem; white-space: nowrap; }
@media (max-width: 1100px) { .header__phone { display: none; } }

.hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .hero__stats { grid-template-columns: repeat(3, 1fr); }
}
.hero-stat {
  padding: 0.85rem 1rem;
  text-align: center;
  border-radius: 14px;
}
.hero-stat strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.45;
}
.hero--pro .hero__proof-strip { display: none; }
.hero--pro .hero__actions { margin-bottom: 1.35rem; }

.hero-panel {
  padding: 1.5rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.hero-panel__kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-panel__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.35;
}
.hero-panel__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg-soft) 70%, transparent);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, transform 0.25s, background 0.25s;
}
.hero-panel__item:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}
.hero-panel__icon {
  flex: 0 0 auto;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--accent);
  font-weight: 800;
}
.hero-panel__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.hero-panel__item small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}
.hero-panel__cta {
  margin-top: 0.35rem;
  justify-content: center;
}

.work-grid {
  display: grid !important;
  gap: 1.5rem !important;
  grid-template-columns: repeat(3, 1fr) !important;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 960px) { .work-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 640px) { .work-grid { grid-template-columns: 1fr !important; } }

a.work-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.work-card__logo {
  background: #fff !important;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.65rem;
}
.work-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0 !important;
  transform: none !important;
}
.work-card .team-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-grid--simple { grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 900px) {
  .about-grid--simple { grid-template-columns: 1.2fr 1fr; align-items: start; }
}
.about-grid--simple .about-stats-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 0;
}

.services-grid--featured { margin-bottom: 1.5rem; }
.service-card--featured {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--line));
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 70%);
}
.section-cta-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 0.5rem;
}
.industries-strip { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.industries-strip__title {
  color: var(--accent); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.85rem;
}
.industries-badges { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.industry-badge {
  font-size: 0.82rem; font-weight: 600; padding: 0.4rem 0.75rem;
  border-radius: 999px; border: 1px solid var(--line); color: var(--muted);
  background: color-mix(in srgb, var(--card) 80%, transparent);
}

.section--premium {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
}
.module-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.65rem;
}
@media (min-width: 700px) { .module-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .module-grid { grid-template-columns: repeat(4, 1fr); } }
.module-chip {
  padding: 0.85rem 1rem; border-radius: 12px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 88%, transparent);
  font-size: 0.9rem; font-weight: 650; text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.module-chip:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  transform: translateY(-2px);
}
.benefit-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1.25rem;
}
@media (min-width: 800px) { .benefit-row { grid-template-columns: repeat(4, 1fr); } }
.benefit-card {
  padding: 1rem; text-align: center; font-weight: 700; font-size: 0.95rem;
}
.process-grid {
  display: grid; grid-template-columns: 1fr; gap: 0.85rem;
}
@media (min-width: 700px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step { padding: 1.15rem; }
.process-step__num {
  display: inline-block; font-weight: 800; color: var(--accent);
  font-size: 0.85rem; margin-bottom: 0.4rem; letter-spacing: 0.04em;
}
.process-step h3 { margin: 0 0 0.35rem; font-size: 1.05rem; }
.process-step p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

.section--team-lite .team-card__stack { display: none; }
.section--team-lite .team-card__desc { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bento-card__tags, .bento-card__badge { display: none; }
.footer__tech {
  margin-top: 0.85rem; font-size: 0.78rem; color: var(--muted); line-height: 1.5; opacity: 0.85;
}

/* Lighter page loader */
.page-loader { transition: opacity 0.35s ease, visibility 0.35s; }
@media (max-width: 768px) {
  .hero--simple { padding: 2.25rem 0 1.5rem; }
  .section { padding: 2.5rem 0; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .benefit-row { grid-template-columns: 1fr 1fr; }
}
