/* CyperQ Tech – Cybersecurity provider site */

/* ===== Page preloader – animated logo ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(219, 9, 77, 0.12) 0%, transparent 50%);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__logo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-loader__logo {
  animation: loaderLogoPulse 1.8s ease-in-out infinite;
}

.page-loader__ring {
  position: absolute;
  inset: -8px;
  border: 2px solid transparent;
  border-top-color: var(--accent);
  border-right-color: rgba(219, 9, 77, 0.3);
  border-radius: 50%;
  animation: loaderSpin 1s linear infinite;
}

.page-loader__ring::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 2px solid transparent;
  border-bottom-color: var(--accent-light);
  border-left-color: rgba(219, 9, 77, 0.25);
  border-radius: 50%;
  animation: loaderSpin 1.4s linear infinite reverse;
}

@keyframes loaderLogoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

:root {
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', ui-sans-serif, system-ui, sans-serif;

  /* Brand */
  --accent: #db094d;
  --accent-light: #db094d;
  --accent-dark: #a8073d;
  --accent-deep: #8a0634;
  --accent-glow: #ffb3cc;
  --accent-10: rgba(219, 9, 77, 0.1);
  --accent-14: rgba(219, 9, 77, 0.14);
  --accent-22: rgba(219, 9, 77, 0.22);
  --accent-35: rgba(219, 9, 77, 0.35);
  --glow: rgba(219, 9, 77, 0.38);

  /* Backgrounds — dark CyperQ stack */
  --bg-base: #121213;
  --bg-base-85: rgba(18, 18, 19, 0.85);
  --bg-surface: #1a1a1b;
  --bg-elevated: #242425;
  --bg-card: #242425;
  --bg-overlay: rgba(22, 22, 24, 0.92);
  --bg-inset: rgba(0, 0, 0, 0.28);
  --bg-mix: rgb(219, 9, 77);

  /* Text hierarchy */
  --text-primary: #ffffff;
  --text-secondary: #d4d3d4;
  --text-muted: #a5a4a5;
  --text-subtle: #8a898a;
  --text-faint: #6e6d6e;
  --brand-muted: #605f60;
  --muted: var(--text-muted);

  /* Borders & glass */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --glass-bg: rgba(26, 26, 27, 0.72);
  --glass-border: var(--border-default);

  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 1.75rem;
  --gradient-panel: linear-gradient(165deg, rgba(36, 36, 37, 0.95) 0%, rgba(18, 18, 19, 0.98) 100%);
  --gradient-panel-deep: linear-gradient(165deg, rgba(36, 36, 37, 0.98) 0%, rgba(18, 18, 19, 0.99) 100%);
  --gradient-form: linear-gradient(170deg, rgba(36, 36, 37, 0.98) 0%, rgba(18, 18, 19, 0.99) 100%);
  --gradient-card: linear-gradient(165deg, rgba(36, 36, 37, 0.9) 0%, rgba(18, 18, 19, 0.95) 100%);
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 24px 64px -24px rgba(219, 9, 77, 0.45);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Enterprise theme tokens */
  --ent-max: 72rem;
  --ent-radius: 0.5rem;
  --ent-section-y: clamp(4.5rem, 8vh, 6rem);

  /* Shared content width — all section/header/footer containers */
  --site-container-max: var(--ent-max);
  --site-container-pad-x: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion — slower, smoother reveals */
  --motion-ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-duration-reveal: 1.05s;
  --motion-duration-enter: 1.35s;
  --motion-duration-hover: 0.45s;

  /* Buttons — pill radius */
  --btn-radius: 30px;

  /* Site canvas — static brand atmosphere */
  --site-spotlight: rgba(219, 9, 77, 0.09);
  --site-accent-soft: rgba(219, 9, 77, 0.04);
  --site-accent-whisper: rgba(219, 9, 77, 0.03);
  --site-accent-light-soft: rgba(255, 77, 122, 0.05);
  --site-surface-mist: rgba(26, 26, 27, 0.55);
  --site-muted-mist: rgba(96, 95, 96, 0.06);
  --site-ink-deep: #0f0f10;
  --site-ink-elevated: #141415;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  min-height: 100svh;
  background-color: var(--bg-base);
  color: var(--text-secondary);
}

.font-display,
.hero-headline,
.section-title {
  font-family: var(--font-display);
}

::selection {
  background: rgba(219, 9, 77, 0.35);
  color: var(--text-primary);
}

/* Reusable surfaces & nav states */
.surface-card {
  border: 1px solid var(--border-default);
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
}

.surface-card:hover {
  border-color: var(--accent-35);
}

.surface-inset {
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.05);
}

.surface-icon {
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}

.surface-icon:hover,
.group:hover .surface-icon {
  background: var(--accent-10);
}

.nav-link:not(.nav-link--active):not(.nav-link--cta):hover {
  color: var(--text-primary) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.dropdown-panel a:hover {
  color: var(--text-primary) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Section patterns – consistent background texture */
.section-pattern {
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
}

.section-pattern-dots {
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Hero: software-themed pattern – fine grid + subtle diagonal (code/tech feel) */
.hero-software-pattern {
  pointer-events: none;
  background-image:
    linear-gradient(105deg, rgba(219, 9, 77, 0.03) 1px, transparent 1px),
    linear-gradient(-105deg, rgba(219, 9, 77, 0.03) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px, 32px 32px, 20px 20px, 20px 20px;
  background-position: 0 0, 0 0, 0 0, 0 0;
}

/*
 * Site canvas — CyperQ 2026 body background
 * Palette: #121213 base · #1a1a1b / #242425 surfaces · #db094d accent · #d4d3d4 / #605f60 text
 * Static only — no motion (readable, not distracting)
 */
.site-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--bg-base);
}

/* Core vertical depth — charcoal stack */
.site-canvas__base {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--site-ink-elevated) 0%,
    var(--bg-base) 42%,
    var(--bg-base) 68%,
    var(--site-ink-deep) 100%
  );
}

/* Brand spotlight — single magenta wash from header zone */
.site-canvas__spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 100% 52% at 50% -18%,
      var(--site-spotlight) 0%,
      var(--site-accent-soft) 38%,
      transparent 68%
    );
  opacity: 0.9;
}

/* Secondary depth — accent + surface + muted corners */
.site-canvas__depth {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 42% 32% at 0% 12%, var(--site-accent-whisper) 0%, transparent 58%),
    radial-gradient(ellipse 38% 28% at 100% 22%, var(--site-accent-light-soft) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 50% 108%, var(--site-surface-mist) 0%, transparent 62%),
    radial-gradient(ellipse 30% 24% at 85% 88%, var(--site-muted-mist) 0%, transparent 52%);
}

/* Tech grid — white lines + faint accent cross at center-top */
.site-canvas__grid {
  position: absolute;
  inset: 0;
  opacity: 1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(to right, rgba(219, 9, 77, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(219, 9, 77, 0.04) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 400px 400px, 400px 400px;
  background-position: 0 0, 0 0, center top, center top;
  mask-image: radial-gradient(ellipse 115% 90% at 50% 8%, black 5%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 115% 90% at 50% 8%, black 5%, transparent 78%);
}

/* Static grain — ties layers together, barely visible */
.site-canvas__grain {
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Glass cards */
.glass-card {
  border-radius: var(--radius-2xl);
  border: 1px solid var(--glass-border);
  background: linear-gradient(155deg, rgba(36, 36, 37, 0.65) 0%, var(--bg-base-85) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: transform 0.35s var(--ease-out-expo), border-color 0.35s ease, box-shadow 0.35s ease;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 42%, rgba(219, 9, 77, 0.04) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover {
  border-color: rgba(219, 9, 77, 0.35);
}

.service-card-bg {
  background: linear-gradient(145deg, rgba(219, 9, 77, 0.1) 0%, rgba(18, 18, 19, 0.92) 50%, rgba(219, 9, 77, 0.06) 100%);
}

/* ===== Our Services — modern bento ===== */
.services-section {
  position: relative;
  padding: clamp(4rem, 10vh, 6.5rem) 0;
  overflow: hidden;
}

.services-section__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, var(--site-accent-soft) 0%, transparent 55%),
    radial-gradient(ellipse 35% 28% at 0% 70%, var(--site-accent-whisper) 0%, transparent 50%),
    radial-gradient(ellipse 30% 25% at 100% 40%, var(--site-accent-light-soft) 0%, transparent 48%);
}

.services-section__grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 10%, transparent 75%);
}

.services-section__container {
  position: relative;
  z-index: 1;
}

.services-header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: start;
}

.services-header__main {
  min-width: 0;
}

@media (min-width: 1024px) {
  .services-header {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.services-title {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.services-title__accent {
  display: inline;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-lead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 1.75vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .services-lead {
 
    margin-inline-start: 0;
 
  }
}

.services-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.125rem;
  }

  .svc-card--featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .svc-card--featured {
    grid-column: 1 / -1;
  }
}

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border-default);
  background: linear-gradient(
    155deg,
    rgba(36, 36, 37, 0.88) 0%,
    rgba(18, 18, 19, 0.96) 100%
  );
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out-expo),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.svc-card.section-reveal {
  transition:
    opacity var(--motion-duration-reveal) var(--motion-ease-smooth),
    transform var(--motion-duration-reveal) var(--motion-ease-smooth),
    border-color var(--motion-duration-hover) ease,
    box-shadow var(--motion-duration-hover) ease;
  transition-delay: var(--svc-delay, 0s);
}

.svc-card.section-reveal.revealed {
  transform: translateY(0);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0.65;
  transition: opacity 0.35s ease;
}

.svc-card__glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(219, 9, 77, 0.14) 0%, transparent 68%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.svc-card--featured .svc-card__glow {
  opacity: 0.55;
}

.svc-card:hover .svc-card__glow {
  opacity: 1;
}

.svc-card__link {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  color: inherit;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.svc-card__link:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

.svc-card--featured .svc-card__link {
  padding: clamp(1.65rem, 3.5vw, 2.25rem);
}

.svc-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  min-width: 0;
}

.svc-card__index {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}

.svc-card__tag {
  flex-shrink: 1;
  min-width: 0;
  max-width: 72%;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: var(--accent-10);
  border: 1px solid var(--accent-22);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.svc-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

@media (min-width: 1024px) {
  .svc-card--featured .svc-card__body {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.35rem;
  }
}

.svc-card__copy {
  flex: 1;
  min-width: 0;
}

.svc-card__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  color: var(--accent-light);
  background: var(--accent-10);
  border: 1px solid var(--accent-22);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.svc-card--featured .svc-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1.125rem;
}

.svc-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.svc-card--featured .svc-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.svc-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
}

.svc-card--featured .svc-card__title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin-bottom: 0.85rem;
}

.svc-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.svc-card--featured .svc-card__text {
  font-size: 1rem;
  max-width: 38rem;
}

.svc-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  width: 2.25rem;
  height: 2.25rem;
  margin-top: auto;
  padding-top: 1rem;
  border-radius: 50%;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-default);
  opacity: 0.55;
  transition:
    opacity 0.3s ease,
    transform 0.35s var(--ease-out-expo),
    background 0.3s ease,
    border-color 0.3s ease;
}

.svc-card__arrow svg {
  width: 1rem;
  height: 1rem;
}

.svc-card:hover,
.svc-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--accent-35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 48px -28px rgba(219, 9, 77, 0.45);
}

.svc-card:hover::before,
.svc-card:focus-within::before {
  opacity: 1;
}

.svc-card:hover .svc-card__icon,
.svc-card:focus-within .svc-card__icon {
  transform: scale(1.06);
  box-shadow: 0 0 24px rgba(219, 9, 77, 0.25);
}

.svc-card:hover .svc-card__arrow,
.svc-card:focus-within .svc-card__arrow {
  opacity: 1;
  transform: translateX(2px);
  background: var(--accent-10);
  border-color: var(--accent-22);
}

.services-footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.65rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
}

.services-cta__icon {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.3s var(--ease-out-expo);
}

.services-cta:hover .services-cta__icon {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .services-section__grid-bg {
    display: none;
  }

  .svc-card,
  .svc-card.section-reveal {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .svc-card:hover {
    transform: none;
  }

  .svc-card__arrow {
    opacity: 0.7;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-card:hover,
  .svc-card:focus-within {
    transform: none;
  }

  .svc-card:hover .svc-card__icon,
  .svc-card:focus-within .svc-card__icon {
    transform: none;
  }

  .svc-card:hover .svc-card__arrow,
  .svc-card:focus-within .svc-card__arrow {
    transform: none;
  }

  .services-cta:hover .services-cta__icon {
    transform: none;
  }
}

/* Who we are — Mission & Vision (modern bento) */
.mv-section {
  position: relative;
  padding: clamp(4rem, 10vh, 6.5rem) 0;
  overflow: hidden;
}

.mv-section__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 50% at 50% 0%, var(--site-accent-soft) 0%, transparent 58%),
    radial-gradient(ellipse 40% 30% at 100% 80%, var(--site-accent-whisper) 0%, transparent 50%);
}

.mv-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mv-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(219, 9, 77, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(219, 9, 77, 0.05) 0%, transparent 50%);
}

.mv-bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 70%);
}

.mv-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(219, 9, 77, 0.04) 0%, transparent 40%);
}

.mv-container {
  position: relative;
  z-index: 1;
}

.mv-header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
  text-align: start;
}

@media (min-width: 1024px) {
  .mv-header {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    align-items: end;
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.mv-header__main .section-eyebrow {
  margin-bottom: 0;
}

.mv-title {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.mv-title-accent {
  display: inline;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 55%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mv-lead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1rem, 1.75vw, 1.125rem);
  line-height: 1.75;
  color: var(--text-muted);
}

@media (min-width: 1024px) {
  .mv-lead {
    margin-inline-start: auto;
    padding-bottom: 0.2rem;

  }
}

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

@media (min-width: 768px) {
  .mv-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.mv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    160deg,
    rgba(36, 36, 37, 0.75) 0%,
    rgba(18, 18, 19, 0.92) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s ease;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0.75;
}

.mv-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 55%;
  height: 80%;
  background: radial-gradient(circle, rgba(219, 9, 77, 0.12) 0%, transparent 68%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(219, 9, 77, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 48px -28px rgba(219, 9, 77, 0.4);
}

.mv-card:hover::after {
  opacity: 1;
}

.mv-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mv-card__index {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 9, 77, 0.28);
  background: rgba(219, 9, 77, 0.1);
}

.mv-card-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  color: var(--text-primary);
  background: linear-gradient(145deg, rgba(219, 9, 77, 0.35) 0%, rgba(219, 9, 77, 0.1) 100%);
  border: 1px solid rgba(219, 9, 77, 0.3);
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease;
}

.mv-card-icon svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--accent-light);
}

.mv-card:hover .mv-card-icon {
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(219, 9, 77, 0.28);
}

.mv-card-title {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mv-card-text {
  margin: 0;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Legacy markup (unused) */
.mv-card-number,
.mv-card-glow,
.mv-card-border {
  display: none;
}

.mv-card-inner {
  display: contents;
}

/* Hero gradient text */
.hero-gradient {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-deep) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--btn-radius);
  cursor: pointer;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 55%, var(--accent-light) 100%);
  background-size: 200% auto;
  box-shadow: 0 4px 24px var(--glow), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease, background-position 0.4s ease;
}

button.btn-primary,
button.btn-secondary {
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background-position: 100% center;
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  color: var(--text-primary);
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease-out-expo), border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(219, 9, 77, 0.45);
  background: rgba(219, 9, 77, 0.1);
  box-shadow: 0 8px 28px rgba(219, 9, 77, 0.15);
}

/* Beat Tailwind rounded-* utilities on CTA links */
.theme-enterprise .btn-primary,
.theme-enterprise .btn-secondary,
.theme-modern .btn-primary,
.theme-modern .btn-secondary {
  border-radius: var(--btn-radius) !important;
}

.theme-enterprise .btn-primary,
.theme-enterprise .btn-secondary,
.theme-modern .btn-primary,
.theme-modern .btn-secondary {
  min-height: 3.125rem;
  padding: 0.875rem 1.65rem;
  font-size: 1rem;
}

.home-contact-band__actions .btn-primary,
.home-contact-band__actions .btn-secondary {
  min-width: 11.5rem;
}

@media (max-width: 767px) {
  .home-contact-band__actions .btn-primary,
  .home-contact-band__actions .btn-secondary {
    min-width: 0;
  }
}

/* English header: menu next to logo, language picker on right, left space */
header nav.en-nav {
  padding-left: 2rem;
}

/* Center nav links in header (English and Arabic) */
header nav > ul {
  flex: 1;
  justify-content: center;
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

/* English language dropdown – align menu to the right of trigger */
.lang-dropdown-en .lang-dropdown-menu {
  left: auto;
  right: 0;
}

/* Language dropdown (Arabic: left side; English: can reuse) */
.lang-dropdown summary::-webkit-details-marker,
.lang-dropdown-trigger::-webkit-details-marker {
  display: none;
}

.lang-dropdown-menu {
  display: none;
}

.lang-dropdown[open] .lang-dropdown-menu {
  display: block;
}

/* Site logo — header, footer, loader */
.site-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.site-header .site-logo-link {
  padding: 0rem;
  margin-inline-start: -0.15rem;
}

[dir="rtl"] .site-header .site-logo-link {
  padding: 0.35rem 0.25rem 0.35rem 0.5rem;
  margin-inline-start: 0;
  margin-inline-end: -0.15rem;
}

.site-logo {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

[dir="rtl"] .site-logo {
  object-position: right center;
}

.site-logo--header {
  height: 2.75rem;
  max-width: 10rem;
}

@media (min-width: 768px) {
  .site-logo--header {
    height: 3.25rem;
    max-width: 12rem;
  }
}

.site-logo--loader {
  height: 2.5rem;
  max-width: 9rem;
}

.site-logo--footer {
  height: 2.75rem;
  max-width: 10rem;
  margin-bottom: 0.25rem;
}

/* ===== Site container — one width for the whole front site ===== */
.site-container,
:is(
  .site-header__bar,
  .hero-container,
  .home-clients__container,
  .home-projects__container,
  .home-certifications__container,
  .home-faqs__container,
  .cyber-stability-banner__container,
  .cyber-intro__container,
  .cyber-why-world__container,
  .cyber-lifecycle__container,
  .services-section__container,
  .projects-section__container,
  .certifications-section__container,
  .careers-section__container,
  .clients-section__container,
  .about-section__container,
  .project-show-block__container,
  .project-show-hero__container,
  .academy-section__container,
  .blog-teaser__container,
  .blog-section__container,
  .blog-section--page .blog-section__container,
  .mv-container,
  .agile-section__container,
  .home-contact-band__inner,
  .site-footer-inner,
  .enterprise-cta__inner,
  .contact-container,
  .contact-section__container,
  .page-shell,
  .page-hero,
  .service-show-panorama__container,
  .service-inquiry__container,
  .service-show-related__container,
  .services-page__grid,
  .theme-cyber .section-header
) {
  width: 100%;
  max-width: var(--site-container-max);
  margin-inline: auto;
  padding-inline: var(--site-container-pad-x);
  box-sizing: border-box;
}

/* Hero: horizontal padding lives on .hero-section; container is width-only */
.hero-container {
  padding-inline: 0;
}

/* Legacy Tailwind layout wrappers (blog, about, clients, etc.) */
.theme-cyber :is(.max-w-7xl, .max-w-6xl).mx-auto,
.theme-enterprise :is(.max-w-7xl, .max-w-6xl).mx-auto {
  width: 100%;
  max-width: var(--site-container-max);
  margin-inline: auto;
  padding-inline: var(--site-container-pad-x);
  box-sizing: border-box;
}

.theme-cyber main.pt-28,
.theme-enterprise main.pt-28 {
  padding-inline: var(--site-container-pad-x);
}

.theme-cyber section.px-6,
.theme-enterprise section.px-6 {
  padding-inline: var(--site-container-pad-x);
}

/* Floating glass header */
.site-header {
  padding: max(0.75rem, env(safe-area-inset-top)) 0 0;
  transition: background 0.35s var(--ease-out-expo);
}

.site-header.scrolled,
header.site-header.scrolled {
  background: #000;
}

.site-header__bar {
  min-height: 4rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border-radius: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.35s var(--ease-out-expo), border-color 0.35s ease, box-shadow 0.35s ease;
}

header.scrolled .site-header__bar,
.site-header.scrolled .site-header__bar {
  background: #000;
  border: none;
  box-shadow: none;
}

.nav-link--active {
  color: var(--accent-light) !important;
  background: rgba(219, 9, 77, 0.14);
}

.nav-link--cta {
  border-radius: var(--btn-radius) !important;
  color: var(--text-primary) !important;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 16px rgba(219, 9, 77, 0.35);
}

.nav-link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(219, 9, 77, 0.45);
}

.dropdown-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--bg-overlay);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Service cards – lift + border glow */
.service-card {
  border-color: var(--border-default) !important;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -12px rgba(219, 9, 77, 0.15);
}

/* Agile step numbers */
.agile-step-number {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.agile-step.visible .agile-step-number {
  transform: scale(1.08);
  box-shadow: 0 12px 32px -8px var(--glow);
}

.agile-steps .agile-step {
  opacity: 0.85;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.agile-steps .agile-step.visible {
  opacity: 1;
}

/* Section reveal – fade up on scroll */
.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--motion-duration-reveal) var(--motion-ease-smooth),
    transform var(--motion-duration-reveal) var(--motion-ease-smooth);
}

.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  body:not(.page-home-enterprise) .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal {
    animation-duration: 0.45s;
    animation-delay: 0s !important;
  }

  .service-card,
  .svc-card,
  .blog-card a,
  .contact-form-card,
  .lang-dropdown-menu,
  .mobile-nav-panel {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* Defer rendering of below-the-fold content on mobile. */
  section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }

  .section-pattern,
  .section-pattern-dots,
  .contact-bg-pattern,
  .mv-bg-mesh {
    display: none !important;
  }

  .site-canvas__grid,
  .site-canvas__grain {
    display: none;
  }

  .site-canvas__spotlight {
    opacity: 0.75;
  }

  .hero-bg__beam {
    opacity: 0.55;
  }
}

/* Hero elements stagger */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-reveal {
  animation-delay: var(--hero-delay, 0s);
}

.reveal:nth-child(1) { animation-delay: 0.1s; }
.reveal:nth-child(2) { animation-delay: 0.2s; }
.reveal:nth-child(3) { animation-delay: 0.35s; }
.reveal:nth-child(4) { animation-delay: 0.5s; }
.reveal:nth-child(5) { animation-delay: 0.65s; }
.reveal:nth-child(6) { animation-delay: 0.8s; }
.reveal:nth-child(7) { animation-delay: 0.95s; }
.reveal:nth-child(8) { animation-delay: 1.1s; }
.reveal:nth-child(9) { animation-delay: 1.25s; }
.reveal:nth-child(10) { animation-delay: 1.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Agile timeline line – animated on scroll */
.agile-line {
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
}

.agile-line.animated {
  transform: translateY(-50%) scaleX(1);
}

/* Blog section */
.blog-card a {
  display: block;
  height: 100%;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--gradient-card);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card a:hover {
  transform: translateY(-6px);
  border-color: rgba(219, 9, 77, 0.3);
  box-shadow: 0 20px 40px -16px rgba(219, 9, 77, 0.2);
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(219, 9, 77, 0.2) 0%, rgba(219, 9, 77, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.blog-card:hover .blog-card-image {
  background: linear-gradient(135deg, rgba(219, 9, 77, 0.25) 0%, rgba(219, 9, 77, 0.08) 100%);
}

.blog-card-placeholder {
  font-size: 2rem;
  font-weight: 700;
  color: rgba(219, 9, 77, 0.4);
  letter-spacing: -0.02em;
}

.blog-card-content {
  padding: 1.5rem 1.5rem 1.75rem;
}

.blog-card-meta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(219, 9, 77);
  margin-bottom: 0.75rem;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.blog-card a:hover .blog-card-title {
  color: rgb(255, 179, 204);
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-date {
  font-size: 0.8125rem;
  color: var(--text-subtle);
}

/* Input focus glow */
.input-modern:focus {
  box-shadow: 0 0 0 3px rgba(219, 9, 77, 0.2);
}

/* Contact – modern */
.contact-section {
  position: relative;
  padding: 5.5rem 1.5rem 6rem;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(219, 9, 77, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 60%, rgba(219, 9, 77, 0.06) 0%, transparent 50%);
}

.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}

.contact-container {
  position: relative;
}

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

@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .contact-welcome {
    align-items: flex-start;
    text-align: left;
  }
}

.contact-image-wrap {
  position: relative;
  margin-bottom: 2rem;
  max-width: 340px;
  border-radius: 1.5rem;
  padding: 3px;
  background: linear-gradient(145deg, rgba(219, 9, 77, 0.4) 0%, rgba(219, 9, 77, 0.05) 50%, rgba(219, 9, 77, 0.2) 100%);
  box-shadow: 0 0 40px rgba(219, 9, 77, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-image-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -15px rgba(219, 9, 77, 0.2);
}

.contact-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(1.5rem - 3px);
  object-fit: cover;
  background: var(--gradient-panel-deep);
}

.contact-welcome-text {
  max-width: 400px;
}

.contact-pill {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(219, 9, 77);
  background: rgba(219, 9, 77, 0.12);
  border: 1px solid rgba(219, 9, 77, 0.25);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.contact-headline {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.contact-headline-accent {
  background: linear-gradient(135deg, var(--accent-glow) 0%, #db094d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-lead {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgb(219, 9, 77);
  transition: color 0.25s ease, gap 0.25s ease, transform 0.25s ease;
}

.contact-cta-link:hover {
  color: rgb(255, 107, 157);
  gap: 0.75rem;
}

.contact-cta-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.contact-cta-link:hover .contact-cta-arrow {
  transform: translateX(4px);
}

/* Form card */
.contact-form-wrap {
  position: relative;
}

.contact-form-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(145deg, rgba(219, 9, 77, 0.3) 0%, rgba(219, 9, 77, 0.05) 45%, rgba(255, 255, 255, 0.06) 100%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-form-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(219, 9, 77, 0.22);
}

.contact-form-card-glow {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(219, 9, 77, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.contact-form-card-inner {
  position: relative;
  border-radius: calc(1.5rem - 1px);
  background: var(--gradient-form);
  backdrop-filter: blur(24px);
  padding: 2.25rem 2.5rem;
}

.contact-form-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(219, 9, 77, 0.95);
  margin-bottom: 0.75rem;
}

.contact-form-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.contact-form-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-subtle);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border-radius: 0.875rem;
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-faint);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--accent-35);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(219, 9, 77, 0.15);
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: 0.25rem;
  border-radius: 0.875rem;
  border: none;
  background: linear-gradient(135deg, #db094d 0%, var(--accent-dark) 100%);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(219, 9, 77, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(219, 9, 77, 0.4);
}

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-gradient { animation: none; }
  .hero-bg__beam,
  .hero-visual__aura,
  .hero-visual__orbit,
  .hero-orbit-dot,
  .hero-visual__ring--pulse,
  .hero-visual__core,
  .hero-live__dot,
  .hero-hud__pulse,
  .hero-visual__scan,
  .hero-visual__ring--outer,
  .hero-visual__ring--inner,
  .hero-node,
  .hero-scroll__line,
  .hero-scroll__ring { animation: none; }
  .hero-visual__stage {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page-loader__logo { animation: none; }
  .page-loader__ring,
  .page-loader__ring::after { animation: none; opacity: 0.5; }
  .service-card,
  .agile-step-number,
  .agile-steps .agile-step,
  .section-reveal,
  .reveal,
  .mv-card,
  .svc-card,
  .svc-card__icon,
  .mv-card-icon,
  .mv-card-border,
  .contact-image-wrap,
  .contact-form-card,
  .contact-cta-link,
  .contact-cta-arrow,
  .contact-submit { transition: none; }
  .reveal { animation: none; opacity: 1; transform: none; }
  .section-reveal { opacity: 1; transform: none; }
  .mv-card:hover { transform: none; }
  .contact-image-wrap:hover { transform: none; }
  .contact-form-card:hover { transform: none; }
  .contact-cta-link:hover .contact-cta-arrow { transform: none; }
  .contact-submit:hover { transform: none; }
}

/* Single post page – article content */
.post-content {
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-secondary);
}

.post-content p {
  margin-bottom: 1.25rem;
}

.post-content p:last-child {
  margin-bottom: 0;
}

.post-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.post-content ul,
.post-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
}

.post-content a {
  color: var(--accent);
  text-decoration: none;
}

.post-content a:hover {
  text-decoration: underline;
}

/* Modern site footer */
.site-footer {
  position: relative;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-default);
  overflow: hidden;
}

.site-footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.6;
}

.site-footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(219, 9, 77, 0.3), transparent);
  opacity: 0.6;
}

.site-footer-inner {
  position: relative;
}

.site-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .site-footer-top {
    grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.site-footer-brand {
  max-width: 280px;
}

.site-footer-logo-link {
  margin-bottom: 0.75rem;
}

.site-footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.site-footer-column h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle);
  margin-bottom: 1.25rem;
}

.site-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-column li {
  margin-bottom: 0.65rem;
}

.site-footer-column a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-column a:hover {
  color: var(--text-primary);
}

.site-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .site-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.site-footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .site-footer-legal {
    justify-content: flex-end;
  }
}

.site-footer-legal a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-legal a:hover {
  color: var(--text-primary);
}

/* Header must not clip fixed children (safety if menu is ever moved back inside) */
#header {
  overflow: visible;
}

/* ===== Mobile navigation (panel + backdrop) — fixed layers: backdrop 40, panel 45, header 50 ===== */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.75);
  -webkit-tap-highlight-color: transparent;
}

/* Lock page scroll only — avoid touch-action:none so the menu panel can scroll */
body.mobile-menu-open {
  overflow: hidden;
}

.mobile-nav-panel {
  position: fixed;
  z-index: 45;
  left: max(0.625rem, env(safe-area-inset-left, 0px));
  right: max(0.625rem, env(safe-area-inset-right, 0px));
  top: calc(env(safe-area-inset-top, 0px) + 5.5rem);
  bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
  width: auto;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 0;
  /* Prefer bottom anchor so short viewports still get a usable height */
  max-height: none;
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-base-85);
  background: linear-gradient(180deg, rgba(36, 36, 37, 0.95) 0%, var(--bg-base-85) 45%, var(--bg-base) 100%);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  animation: mobileNavPanelIn 0.28s ease-out;
}

/* Tailwind `.hidden` is display:none — but this rule loses to `.mobile-nav-panel { display:flex }` (later in this file). Force closed state. */
.mobile-nav-panel.hidden {
  display: none !important;
}

.mobile-nav-backdrop.hidden {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav-panel {
    animation: none;
  }
}

@keyframes mobileNavPanelIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 0.75rem 0 calc(0.5rem + env(safe-area-inset-bottom));
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0 0.35rem;
}

.mobile-nav-list > li {
  margin: 0;
}

.mobile-nav-slot {
  list-style: none;
}

.mobile-nav-link {
  display: block;
  padding: 0.85rem 1rem;
  margin-bottom: 0.125rem;
  border-radius: 0.875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-secondary);
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link--active {
  color: var(--accent-glow);
  background: rgba(219, 9, 77, 0.22);
  box-shadow: 0 0 0 1px var(--accent-35);
}

.mobile-nav-section {
  margin: 0.75rem 0 0.5rem;
  padding: 0.85rem 0.75rem 0.75rem;
  border-radius: 1rem;
  background: var(--bg-inset);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-section--lang {
  margin-top: 0.6rem;
  margin-bottom: 0.4rem;
}

.mobile-nav-section-label {
  margin: 0 0 0.65rem 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.mobile-nav-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mobile-nav-link--external {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.mobile-nav-link__text {
  flex: 1;
  min-width: 0;
}

.mobile-nav-link__external-icon {
  flex-shrink: 0;
  opacity: 0.7;
  color: var(--text-subtle);
}

.mobile-nav-link--external:hover .mobile-nav-link__external-icon {
  opacity: 1;
  color: var(--text-secondary);
}

.mobile-nav-rule {
  height: 1px;
  margin: 0.5rem 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  list-style: none;
}

.mobile-nav-lang {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-lang li {
  margin: 0;
}

.mobile-nav-lang-link,
.mobile-nav-lang-current {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: center;
}

.mobile-nav-lang-link {
  color: var(--text-secondary);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.mobile-nav-lang-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.mobile-nav-lang-current {
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(219, 9, 77, 0.55), rgba(219, 9, 77, 0.25));
  border: 1px solid rgba(219, 9, 77, 0.45);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

/* ===== Hero — 2026 split layout + SOC visual ===== */
.hero-section {
  --hero-pad-x: var(--site-container-pad-x);
  --hero-pad-top: calc(env(safe-area-inset-top, 0px) + 6.5rem);
  --hero-pad-bottom: clamp(3.5rem, 9vh, 5.5rem);
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--hero-pad-top) var(--hero-pad-x) var(--hero-pad-bottom);
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(219, 9, 77, 0.35) 50%,
    transparent
  );
  opacity: 0.6;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Local hero lift on top of global site-canvas */
.hero-bg__boost {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 30% 35%, rgba(219, 9, 77, 0.16) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 85% 50%, rgba(219, 9, 77, 0.1) 0%, transparent 52%);
  opacity: 0.95;
}

.hero-bg__beam {
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80%;
  height: 160%;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(219, 9, 77, 0.04) 38%,
    rgba(219, 9, 77, 0.22) 50%,
    rgba(255, 77, 122, 0.08) 58%,
    transparent 72%
  );
  transform: rotate(-12deg);
  opacity: 0.9;
  mix-blend-mode: screen;
  animation: heroBeamShift 14s ease-in-out infinite alternate;
}

@keyframes heroBeamShift {
  0% { opacity: 0.65; transform: rotate(-12deg) translateX(0); }
  100% { opacity: 0.95; transform: rotate(-9deg) translateX(3%); }
}

.hero-bg__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(28vh, 14rem);
  background: linear-gradient(to bottom, transparent 0%, var(--bg-base) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  padding-top: clamp(1.25rem, 3vh, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 2.75rem);
  align-items: center;
}

@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
    gap: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .hero-section {
    min-height: min(100dvh, 56rem);
    min-height: min(100svh, 56rem);
    --hero-pad-top: calc(env(safe-area-inset-top, 0px) + 7.25rem);
  }

  .hero-container {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
  }
}

.hero-content {
  text-align: start;
  max-width: 36rem;
}

@media (min-width: 768px) {
  .hero-content {
    max-width: none;
  }
}

.hero-content .section-eyebrow {
  font-size: 0.6875rem;
  padding: 0.38rem 0.9rem;
  letter-spacing: 0.12em;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 0.875rem;
  margin-bottom: clamp(1.125rem, 2.5vh, 1.5rem);
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.75);
  animation: heroLivePulse 2s ease-in-out infinite;
}

@keyframes heroLivePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.92); }
}

.hero-headline {
  display: flex;
  flex-direction: column;
  gap: 0.04em;
  margin-bottom: clamp(1rem, 2.5vh, 1.5rem);
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-wrap: balance;
}

.hero-headline__line {
  display: block;
}

.hero-headline__accent {
  position: relative;
  width: fit-content;
}



.hero-headline__accent .hero-gradient {
  filter: drop-shadow(0 0 28px rgba(219, 9, 77, 0.35));
}

.hero-lead {
  max-width: 34rem;
  margin-bottom: clamp(1.35rem, 3vh, 1.85rem);
  font-size: clamp(0.9375rem, 1.75vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1rem, 2vh, 1.25rem);
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--btn-radius);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
}

.hero-btn__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out-expo);
}

.hero-btn--primary:hover .hero-btn__shine {
  transform: translateX(120%);
}

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

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 clamp(1.25rem, 2.5vh, 1.75rem);
  padding: 0;
  list-style: none;
}

.hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-default);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.hero-trust__item:hover {
  border-color: var(--accent-35);
  background: var(--accent-10);
}

.hero-trust__icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  color: #4ade80;
}

@media (min-width: 640px) {
  .hero-btn {
    padding: 0.875rem 1.65rem;
    font-size: 0.9375rem;
  }
}

.hero-btn--primary {
  color: var(--text-primary);
}

.hero-btn--secondary {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
}

.hero-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hero-btn__icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 100%;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  border-radius: 1.25rem;
  border: 1px solid var(--border-default);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-metrics {
    max-width: 28rem;
  }
}

@media (min-width: 1024px) {
  .hero-metrics {
    max-width: 32rem;
  }
}

.hero-metric {
  position: relative;
  padding: 0.9rem 0.75rem;
  border-radius: 0.95rem;
  background: transparent;
  border: none;
  transition: background 0.3s ease, transform 0.3s var(--ease-out-expo);
}

.hero-metric:not(:first-child) {
  border-inline-start: 1px solid var(--border-subtle);
}

.hero-metric::before {
  content: none;
}

@media (min-width: 640px) {
  .hero-metric {
    padding: 0.85rem 0.75rem;
  }
}

.hero-metric:hover {
  background: rgba(219, 9, 77, 0.08);
  transform: translateY(-1px);
}

.hero-metric__value {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-shadow: 0 0 40px rgba(219, 9, 77, 0.25);
}

.hero-metric__label {
  margin-top: 0.3rem;
  font-size: 0.5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle);
  line-height: 1.3;
}

@media (min-width: 640px) {
  .hero-metric__label {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
  }
}

/* Visual panel — SOC command center */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5rem 0;
}

.hero-visual.hero-visual--soc,
[dir="rtl"] .hero-visual.hero-visual--soc,
[dir="ltr"] .hero-visual.hero-visual--soc {
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .hero-visual:not(.hero-visual--soc) {
    justify-content: flex-end;
    padding: 0;
  }

  .hero-visual--soc {
    justify-content: center;
    padding: 0;
    margin: 0;
  }
}

.hero-visual__stage {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  position: relative;
  width: min(100%, 21rem);
  aspect-ratio: 1;
  overflow: visible;
  opacity: 0;
  transform: perspective(1100px) rotateX(6deg) scale(0.94);
  transition:
    opacity var(--motion-duration-enter) var(--ease-out-expo),
    transform var(--motion-duration-enter) var(--ease-out-expo);
}

.page-home-enterprise.motion-3d .hero-visual__stage {
  transition: none;
}

.hero-section--ready .hero-visual__stage {
  opacity: 1;
  transform: perspective(1100px) rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y)) scale(1);
}

.page-home-enterprise.motion-3d .hero-section--ready .hero-visual__stage {
  transform: none;
}

@media (min-width: 640px) {
  .hero-visual__stage {
    width: min(100%, 24rem);
  }
}

@media (min-width: 1024px) {
  .hero-visual__stage {
    width: clamp(22rem, 40vw, 30rem);
  }
}

.hero-visual__aura {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 9, 77, 0.2) 0%, transparent 68%);
  filter: blur(24px);
  animation: heroAuraPulse 8s ease-in-out infinite;
}

@keyframes heroAuraPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

.hero-visual__orbit {
  position: absolute;
  inset: 4%;
  pointer-events: none;
}

.hero-orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 12px var(--accent);
  animation: heroOrbitPulse 3s ease-in-out infinite;
}

@keyframes heroOrbitPulse {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-orbit-dot--1 { animation-delay: 0s; }
.hero-orbit-dot--2 { animation-delay: -0.5s; }
.hero-orbit-dot--3 { animation-delay: -1s; }
.hero-orbit-dot--4 { animation-delay: -1.5s; }
.hero-orbit-dot--5 { animation-delay: -2s; }
.hero-orbit-dot--6 { animation-delay: -2.5s; }

.hero-orbit-dot--1 { top: 8%; left: 50%; }
.hero-orbit-dot--2 { top: 22%; right: 10%; }
.hero-orbit-dot--3 { top: 50%; right: 2%; }
.hero-orbit-dot--4 { bottom: 18%; right: 12%; }
.hero-orbit-dot--5 { bottom: 8%; left: 50%; }
.hero-orbit-dot--6 { top: 38%; left: 4%; }

.hero-visual__frame {
  position: absolute;
  top: 50%;
  left: auto;
  right: auto;
  width: 80%;
  height: 80%;
  transform: translateY(-50%);
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(219, 9, 77, 0.28) 0%, transparent 58%),
    var(--gradient-panel);
  box-shadow:
    0 40px 80px -28px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(219, 9, 77, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-visual__frame {
    border-radius: 2rem;
  }
}

/* Desktop: frame toward column end (mobile centers via theme-cyber-2026.css) */
@media (min-width: 768px) {
  [dir="ltr"] .hero-visual__frame {
    right: 0;
    left: auto;
  }

  [dir="rtl"] .hero-visual__frame {
    left: 0;
    right: auto;
  }
}

.hero-visual__corners span {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border-color: rgba(219, 9, 77, 0.55);
  border-style: solid;
  z-index: 5;
  pointer-events: none;
}

.hero-visual__corners span:nth-child(1) {
  top: 0.65rem;
  left: 0.65rem;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.hero-visual__corners span:nth-child(2) {
  top: 0.65rem;
  right: 0.65rem;
  border-width: 2px 2px 0 0;
  border-radius: 0 4px 0 0;
}

.hero-visual__corners span:nth-child(3) {
  bottom: 0.65rem;
  right: 0.65rem;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 0;
}

.hero-visual__corners span:nth-child(4) {
  bottom: 0.65rem;
  left: 0.65rem;
  border-width: 0 0 2px 2px;
  border-radius: 0 0 0 4px;
}

.hero-visual__hud {
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  right: 0.85rem;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-hud__label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-hud__status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4ade80;
}

.hero-hud__pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: heroLivePulse 2s ease-in-out infinite;
}

.hero-hud__bars {
  position: absolute;
  top: 2.5rem;
  left: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-hud__row {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  align-items: center;
  gap: 0.5rem;
}

.hero-hud__row-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  text-align: end;
}

.hero-hud__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hero-hud__bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  box-shadow: 0 0 12px rgba(219, 9, 77, 0.5);
}

.hero-hud__bar[data-level="92"] > span { width: 92%; }
.hero-hud__bar[data-level="78"] > span { width: 78%; }
.hero-hud__bar[data-level="88"] > span { width: 88%; }

.hero-visual__ring--pulse {
  width: 64%;
  height: 64%;
  border: 1px solid rgba(219, 9, 77, 0.35);
  animation: heroRingPulse 4.5s ease-out infinite;
}

@keyframes heroRingPulse {
  0% { transform: translate(-50%, -50%) scale(0.92); opacity: 0.8; }
  70% { transform: translate(-50%, -50%) scale(1.08); opacity: 0; }
  100% { transform: translate(-50%, -50%) scale(1.08); opacity: 0; }
}

.hero-visual__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(219, 9, 77, 0.9), transparent);
  box-shadow: 0 0 20px rgba(219, 9, 77, 0.6);
  animation: heroScan 6.5s ease-in-out infinite;
  opacity: 0.85;
  z-index: 3;
}

@keyframes heroScan {
  0%, 100% { top: 28%; opacity: 0; }
  8% { opacity: 0.85; }
  45% { top: 82%; opacity: 0.85; }
  55% { opacity: 0; }
}

.hero-visual__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(219, 9, 77, 0.2);
  transform: translate(-50%, -50%);
}

.hero-visual__ring--outer {
  width: 78%;
  height: 78%;
  animation: heroSpin 28s linear infinite;
}

.hero-visual__ring--inner {
  width: 52%;
  height: 52%;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.08);
  animation: heroSpin 18s linear infinite reverse;
}

@keyframes heroSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-float {
  position: absolute;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(36, 36, 37, 0.95), rgba(18, 18, 19, 0.9));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.hero-float__value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.hero-float__label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-float--tl {
  top: 4%;
  left: -2%;
}

.hero-float--br {
  bottom: 6%;
  right: -2%;
}

.hero-float--tl .hero-float__value {
  color: #4ade80;
}

@media (max-width: 767px) {
  .hero-float {
    display: none;
  }
}

.hero-visual__core {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(4.25rem, 24%, 5.5rem);
  height: clamp(4.25rem, 24%, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.25rem;
  color: var(--text-primary);
  background: linear-gradient(145deg, rgba(219, 9, 77, 0.55) 0%, rgba(219, 9, 77, 0.15) 100%);
  border: 1px solid rgba(219, 9, 77, 0.45);
  box-shadow:
    0 0 48px rgba(219, 9, 77, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  z-index: 2;
  animation: heroCoreGlow 4s ease-in-out infinite;
}

@keyframes heroCoreGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(219, 9, 77, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12); }
  50% { box-shadow: 0 0 56px rgba(219, 9, 77, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.hero-visual__core svg {
  width: 48%;
  height: 48%;
  max-width: 2.35rem;
  max-height: 2.35rem;
}

.hero-visual__nodes {
  position: absolute;
  inset: -2%;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 6;
  pointer-events: none;
}

.hero-node {
  --hero-node-accent: rgba(219, 9, 77, 0.35);
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  max-width: 9.5rem;
  padding: 0.4rem 0.65rem 0.4rem 0.4rem;
  border-radius: 2rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(
    145deg,
    rgba(36, 36, 37, 0.96) 0%,
    rgba(18, 18, 19, 0.9) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgba(219, 9, 77, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: heroNodeFloat 5.5s ease-in-out infinite;
  pointer-events: auto;
}

.hero-node__text {
  display: block;
  flex: 1;
  min-width: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-node__icon {
  display: flex;
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-primary);
  background: linear-gradient(
    145deg,
    var(--hero-node-accent) 0%,
    rgba(219, 9, 77, 0.12) 100%
  );
  border: 1px solid rgba(219, 9, 77, 0.35);
  box-shadow: 0 0 14px rgba(219, 9, 77, 0.22);
}

.hero-node__icon svg {
  width: 0.9rem;
  height: 0.9rem;
}

/* Service chips orbit the command center */
.hero-node--1 {
  top: 2%;
  bottom: auto;
  inset-inline-start: 0;
  inset-inline-end: auto;
  max-width: 9.5rem;
  animation-delay: 0s;
}

.hero-node--2 {
  top: 36%;
  bottom: auto;
  inset-inline-end: -2%;
  inset-inline-start: auto;
  max-width: 9rem;
  translate: 0 0;
  animation-name: heroNodeFloat;
  animation-delay: -1.8s;
}

.hero-node--3 {
  top: auto;
  bottom: 2%;
  left: 50%;
  right: auto;
  inset-inline-start: 50%;
  inset-inline-end: auto;
  max-width: 10.75rem;
  translate: -50% 0;
  animation-name: heroNodeFloatCenter;
  animation-delay: -3.6s;
}

.hero-node--1 {
  --hero-node-accent: rgba(219, 9, 77, 0.5);
}

.hero-node--2 {
  --hero-node-accent: rgba(255, 77, 122, 0.45);
}

.hero-node--3 {
  --hero-node-accent: rgba(219, 9, 77, 0.4);
}

@media (min-width: 640px) {
  .hero-node {
    max-width: 10.25rem;
    padding: 0.45rem 0.75rem 0.45rem 0.45rem;
    font-size: 0.6875rem;
    gap: 0.5rem;
  }

  .hero-node__icon {
    width: 1.8rem;
    height: 1.8rem;
  }

  .hero-node__icon svg {
    width: 1rem;
    height: 1rem;
  }

  .hero-node--1 {
    top: 3%;
    inset-inline-start: 2%;
    max-width: 10.5rem;
  }

  .hero-node--2 {
    top: 38%;
    inset-inline-end: 0;
    max-width: 9.75rem;
  }

  .hero-node--3 {
    bottom: 3%;
    max-width: 11.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-node {
    max-width: 11.5rem;
    padding: 0.5rem 0.85rem 0.5rem 0.5rem;
    font-size: 0.71875rem;
  }

  .hero-node__icon {
    width: 1.95rem;
    height: 1.95rem;
  }

  .hero-node__icon svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .hero-node--1 {
    top: 4%;
    inset-inline-start: 3%;
    max-width: 11.75rem;
  }

  .hero-node--2 {
    top: 40%;
    inset-inline-end: 1%;
    max-width: 11rem;
  }

  .hero-node--3 {
    bottom: 4%;
    max-width: 12.25rem;
  }

  .hero-float--tl {
    left: -4%;
  }

  .hero-float--br {
    right: -4%;
  }
}

@keyframes heroNodeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -4px; }
}

@keyframes heroNodeFloatMid {
  0%, 100% { translate: 0 -50%; }
  50% { translate: 0 calc(-50% - 4px); }
}

@keyframes heroNodeFloatCenter {
  0%, 100% { translate: -50% 0; }
  50% { translate: -50% -4px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-node {
    animation: none;
  }

  .hero-node--2 {
    translate: 0 -50%;
  }

  .hero-node--3 {
    translate: -50% 0;
  }
}

.hero-scroll {
  position: absolute;
  bottom: clamp(1rem, 3vh, 1.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-subtle);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.hero-scroll__ring {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid rgba(219, 9, 77, 0.35);
  animation: heroScrollRing 2.5s ease-in-out infinite;
}

@keyframes heroScrollRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}

@media (max-height: 700px) and (min-width: 1024px) {
  .hero-scroll {
    display: none;
  }
}

.hero-scroll:hover {
  color: var(--text-primary);
}

.hero-scroll__line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(219, 9, 77, 0.8), transparent);
  animation: heroScrollLine 2s ease-in-out infinite;
}

@keyframes heroScrollLine {
  0%, 100% { opacity: 0.35; transform: scaleY(0.65); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

[dir="rtl"] .hero-visual__core svg,
[dir="rtl"] .hero-btn__icon {
  transform: scaleX(-1);
}

[dir="rtl"] .hero-headline,
[dir="rtl"] .hero-lead,
[dir="rtl"] .hero-content,
[dir="rtl"] .mv-header,
[dir="rtl"] .mv-header__main,
[dir="rtl"] .mv-card,
[dir="rtl"] .services-header,
[dir="rtl"] .svc-card__link,
[dir="rtl"] .agile-header,
[dir="rtl"] .hero-panel__link {
  text-align: start;
}

@media (min-width: 1024px) {
  [dir="rtl"] .services-lead,
  [dir="rtl"] .agile-lead {
    justify-self: start;
    text-align: start;
  }
}

[dir="rtl"] .svc-card__arrow svg,
[dir="rtl"] .services-cta__icon {
  transform: scaleX(-1);
}

[dir="rtl"] .svc-card:hover .svc-card__arrow,
[dir="rtl"] .svc-card:focus-within .svc-card__arrow {
  transform: scaleX(-1) translateX(-2px);
}

[dir="rtl"] .services-cta:hover .services-cta__icon {
  transform: scaleX(-1) translateX(-4px);
}

@media (min-width: 1024px) {
  [dir="rtl"] .mv-lead {
 
  }
}



[dir="rtl"] .hero-hud__row-label {
  text-align: start;
}

@media (max-width: 767px) {
  .hero-visual:not(.hero-visual--soc) {
    order: -1;
  }

  .hero-content {
    max-width: none;
  }

  .hero-metrics {
    max-width: none;
  }

  .hero-headline {
    font-size: clamp(1.875rem, 9vw, 2.5rem);
  }

  .hero-visual__hud,
  .hero-hud__bars {
    opacity: 0.92;
  }

  .hero-trust {
    gap: 0.4rem;
  }

  .hero-trust__item {
    font-size: 0.625rem;
  }
}

@media (max-width: 380px) {
  .hero-metrics {
    gap: 0.375rem;
  }

  .hero-metric {
    padding: 0.65rem 0.45rem;
  }

  .hero-metric__label {
    font-size: 0.5rem;
    letter-spacing: 0.06em;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(219, 9, 77, 0.1);
  border: 1px solid rgba(219, 9, 77, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section-eyebrow--center {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-lead {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
}

.section-modern + .section-modern,
.mv-section.section-modern,
.services-section.section-modern {
  border-top: 1px solid var(--border-subtle);
}

.agile-step-number {
  border-radius: 1rem !important;
}

.blog-card a {
  border-radius: var(--radius-2xl) !important;
}

/* ===== Enterprise tone (home & global refinements) ===== */
.section-eyebrow--enterprise {
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-default);
  box-shadow: none;
}

.section-eyebrow--enterprise::before {
  box-shadow: none;
  opacity: 0.85;
}

/* Hero — enterprise */
.hero-section--enterprise {
  --hero-pad-bottom: clamp(2.5rem, 6vh, 4rem);
}

.hero-section--enterprise::after {
  opacity: 0.35;
}

@media (min-width: 1024px) {
  .hero-section--enterprise {
    min-height: auto;
  }

  .page-home-enterprise .hero-section.hero-section--enterprise {
    min-height: 100svh;
    min-height: 100dvh;
  }
}

.hero-section--enterprise .hero-headline {
  font-size: clamp(1.875rem, 4.2vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-section--enterprise .hero-headline__accent {
  color: var(--accent-light);
}

.hero-section--enterprise .hero-headline__suffix {
  color: var(--text-secondary);
  font-weight: 600;
}

.hero-compliance {
  margin-top: 1.5rem;
}

.hero-compliance__label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.hero-compliance__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-compliance__list li {
  padding: 0.4rem 0.85rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-default);
}

.hero-metrics--enterprise {
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--border-default);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-metrics--enterprise .hero-metric__value {
  text-shadow: none;
}

.hero-panel {
  width: 100%;
}

.hero-panel__card {
  height: 100%;
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-default);
  background: var(--gradient-panel);
}

.hero-panel__title {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.hero-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-panel__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.hero-panel__bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero-panel__item-title {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.hero-panel__item-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-panel__cta {
  display: inline-flex;
  margin-top: 1.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-panel__cta:hover {
  color: var(--text-primary);
}

.hero-clients {
  position: relative;
  z-index: 1;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.hero-clients__label {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  text-align: center;
}

.hero-clients__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-clients__logos img {
  max-height: 2rem;
  width: auto;
  max-width: 7rem;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1) brightness(1.15);
  transition: opacity 0.25s ease;
}

.hero-clients__logos li:hover img {
  opacity: 1;
}

.hero-clients__name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* Agile — enterprise header */
.agile-section {
  position: relative;
  padding: clamp(4rem, 10vh, 6.5rem) 0;
  overflow: hidden;
}

.agile-section__container {
  position: relative;
  z-index: 1;
}

.agile-header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: start;
}

@media (min-width: 1024px) {
  .agile-header {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .agile-lead {
    justify-self: end;
    text-align: end;
  }
}

.agile-header__main {
  min-width: 0;
}

.agile-title {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.agile-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.agile-section .agile-step-number {
  width: 3rem !important;
  height: 3rem !important;
  border-radius: 0.75rem !important;
  font-size: 1rem !important;
  background: rgba(219, 9, 77, 0.12) !important;
  color: var(--accent-light) !important;
  border: 1px solid var(--accent-22) !important;
  box-shadow: none !important;
}

.agile-section.section-modern {
  border-top: 1px solid var(--border-subtle);
}

/* Calmer interactions site-wide */
.svc-card:hover,
.svc-card:focus-within {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 32px -24px rgba(0, 0, 0, 0.45);
}

.svc-card__glow {
  display: none;
}

.mv-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  box-shadow: 0 4px 16px rgba(219, 9, 77, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

/* ===== Home page — enterprise (body.page-home-enterprise) ===== */
.page-home-enterprise {
  --ent-max: 72rem;
  --site-container-max: var(--ent-max);
  --site-container-pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --ent-radius: 0.5rem;
  --ent-section-y: clamp(4.5rem, 8vh, 6rem);
}

.page-home-enterprise .site-canvas {
  opacity: 0.2;
  pointer-events: none;
}

.page-home-enterprise .site-canvas__spotlight,
.page-home-enterprise .site-canvas__depth,
.page-home-enterprise .site-canvas__grid,
.page-home-enterprise .site-canvas__grain {
  opacity: 0;
}

/* Section labels — corporate rail (no pill) */
.page-home-enterprise .section-eyebrow--enterprise {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0 0 0 0.75rem;
  margin: 0;
  border: none;
  border-left: 2px solid var(--accent);
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--text-subtle);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home-enterprise .section-eyebrow--enterprise::before {
  display: none;
}

[dir="rtl"] .page-home-enterprise .section-eyebrow--enterprise {
  padding: 0 0.75rem 0 0;
  border-left: none;
  border-right: 2px solid var(--accent);
}

/* Motion — fade only, no vertical shift */
@keyframes entFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Home scroll motion — see home-scroll-motion.css */

.page-home-enterprise:not(.motion-3d) .reveal,
.page-home-enterprise:not(.motion-3d) .hero-reveal {
  transform: none !important;
  animation: entFadeIn 0.75s var(--motion-ease-smooth) forwards !important;
  animation-delay: var(--hero-delay, 0s) !important;
}

@media (prefers-reduced-motion: reduce) {
  .page-home-enterprise .section-reveal,
  .page-home-enterprise:not(.motion-3d) .reveal,
  .page-home-enterprise:not(.motion-3d) .hero-reveal {
    opacity: 1;
    animation: none !important;
    transition: none;
  }
}

.page-home-enterprise .font-display,
.page-home-enterprise .hero-headline,
.page-home-enterprise .section-title,
.page-home-enterprise .mv-title,
.page-home-enterprise .services-title,
.page-services-enterprise .services-title,
.page-home-enterprise .agile-title,
.page-home-enterprise .blog-title,
.page-home-enterprise .enterprise-cta__title {
  font-family: var(--font-sans);
}

.page-home-enterprise .title-accent {
  color: var(--text-secondary);
  font-weight: 700;
}

.page-home-enterprise .mv-title-accent,
.page-home-enterprise .services-title__accent {
  background: none;
  -webkit-text-fill-color: unset;
  color: var(--text-secondary);
}

/* Section rhythm */
.page-home-enterprise .mv-section,
.page-home-enterprise .services-section,
.page-services-enterprise .services-section,
.page-home-enterprise .agile-section,
.page-home-enterprise .blog-section,
.page-home-enterprise .enterprise-cta,
.page-home-enterprise .contact-section {
  padding-block: var(--ent-section-y);
}

.page-home-enterprise .mv-section,
.page-home-enterprise .services-section,
.page-services-enterprise .services-section,
.page-home-enterprise .agile-section,
.page-home-enterprise .blog-section {
  overflow: visible;
}

.page-home-enterprise .mv-title,
.page-home-enterprise .services-title,
.page-services-enterprise .services-title,
.page-home-enterprise .agile-title,
.page-home-enterprise .blog-title {
  font-size: clamp(1.625rem, 2.8vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.page-home-enterprise .mv-lead,
.page-home-enterprise .services-lead,
.page-services-enterprise .services-lead,
.page-home-enterprise .agile-lead,
.page-home-enterprise .blog-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Hero — home (centering + scale in theme-cyber-2026.css) */
.page-home-enterprise .hero-section {
  --hero-header-offset: calc(env(safe-area-inset-top, 0px) + 5.75rem);
  min-height: 100svh;
  min-height: 100dvh;
  overflow-x: clip;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: var(--hero-header-offset) var(--hero-pad-x) clamp(2.5rem, 6vh, 4rem);
  box-sizing: border-box;
}

.page-home-enterprise .hero-section::after {
  left: 0;
  right: 0;
  opacity: 1;
  background: var(--border-subtle);
}

.page-home-enterprise .hero-container {
  flex: 1 1 auto;
  display: grid;
  align-content: center;
  align-items: center;
  padding-block: clamp(1rem, 4vh, 2.5rem);
  gap: clamp(2rem, 5vw, 3.5rem);
}

.page-home-enterprise .hero-headline {
  font-size: clamp(2.375rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.12;
  gap: 0.12em;
  margin-bottom: clamp(1rem, 2.5vh, 1.5rem);
}

.page-home-enterprise .hero-headline__line,
.page-home-enterprise .hero-headline__accent,
.page-home-enterprise .hero-headline__suffix {
  font-weight: 900;
}

.page-home-enterprise .hero-lead {
  font-size: clamp(1.0625rem, 1.85vw, 1.3125rem);
  line-height: 1.7;
  color: var(--text-muted);
}

.page-home-enterprise .hero-actions {
  gap: 0.875rem;
}

.page-home-enterprise .hero-btn {
  min-height: 3.125rem;
  padding-inline: 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.page-home-enterprise .hero-clients__label {
  font-size: 0.75rem;
}

.page-home-enterprise .hero-panel__bullet {
  width: 2px;
  height: 1.25rem;
  margin-top: 0.35rem;
  border-radius: 0;
  background: var(--border-strong);
}

.page-home-enterprise .hero-panel__list {
  gap: 0;
}

.page-home-enterprise .hero-panel__item {
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
}

.page-home-enterprise .hero-panel__item:first-child {
  border-top: none;
  padding-top: 0;
}

.page-home-enterprise .hero-panel__cta {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-strong);
}

.page-home-enterprise .hero-panel__cta:hover {
  text-decoration-color: var(--accent);
}

.page-home-enterprise .hero-clients {
  flex-shrink: 0;
  padding-top: 1.25rem;
}

.page-home-enterprise .hero-clients__logos img {
  max-height: 1.75rem;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.1);
}

.page-home-enterprise .hero-clients__logos li:hover img {
  opacity: 0.75;
}

@media (min-width: 1024px) {
  .page-home-enterprise .hero-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(2.5rem, 4vw, 4rem);
    padding-block: clamp(1.5rem, 5vh, 3rem);
  }
}

.page-home-enterprise .hero-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .page-home-enterprise .hero-aside {
    align-items: center;
  }
}

.page-home-enterprise .hero-headline__accent {
  font-weight: 900;
}

.page-home-enterprise .hero-panel__card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
}

.page-home-enterprise .hero-btn--primary {
  border-radius: 0.5rem;
}

.page-home-enterprise .hero-btn--secondary {
  border-radius: 0.5rem;
}

/* Mission */
.page-home-enterprise .mv-section__ambient {
  display: none;
}

.page-home-enterprise .mv-card--enterprise {
  gap: 0.75rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--ent-radius);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.page-home-enterprise .mv-card--enterprise::before {
  display: none;
}

.page-home-enterprise .mv-card--enterprise::after {
  display: none;
}

.page-home-enterprise .mv-card--enterprise:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--border-strong);
}

.page-home-enterprise .mv-card__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--font-sans);
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
}

.page-home-enterprise .mv-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-sans);
}

.page-home-enterprise .mv-card-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Services — enterprise grid */
.page-home-enterprise .services-section__ambient,
.page-home-enterprise .services-section__grid-bg,
.page-services-enterprise .services-section__ambient,
.page-services-enterprise .services-section__grid-bg {
  display: none;
}

.page-home-enterprise .services-grid--enterprise,
.page-services-enterprise .services-grid--enterprise {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .page-home-enterprise .services-grid--enterprise,
.page-services-enterprise .services-grid--enterprise {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .page-home-enterprise .services-grid--enterprise,
.page-services-enterprise .services-grid--enterprise {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.page-home-enterprise .svc-card--enterprise,
.page-services-enterprise .svc-card--enterprise {
  border-radius: var(--radius-lg);
  background: transparent;
}

.page-home-enterprise .svc-card--enterprise::before,
.page-services-enterprise .svc-card--enterprise::before {
  display: none;
}

.page-home-enterprise .svc-card--enterprise .svc-card__link,
.page-services-enterprise .svc-card--enterprise .svc-card__link {
  padding: 1.25rem 1.35rem;
}

.page-home-enterprise .svc-card--enterprise .svc-card__tag,
.page-services-enterprise .svc-card--enterprise .svc-card__tag {
  max-width: none;
  margin-bottom: 0.75rem;
  border-radius: 0.375rem;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-subtle);
  background: transparent;
  border: none;
  padding: 0;
}

.page-home-enterprise .svc-card--enterprise .svc-card__title,
.page-services-enterprise .svc-card--enterprise .svc-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-home-enterprise .svc-card--enterprise .svc-card__text,
.page-services-enterprise .svc-card--enterprise .svc-card__text {
  font-size: 0.875rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-home-enterprise .svc-card__more,
.page-services-enterprise .svc-card__more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border-strong);
}

.page-home-enterprise .svc-card--enterprise:hover .svc-card__more,
.page-home-enterprise .svc-card--enterprise:focus-within .svc-card__more,
.page-services-enterprise .svc-card--enterprise:hover .svc-card__more,
.page-services-enterprise .svc-card--enterprise:focus-within .svc-card__more {
  color: var(--text-primary);
  text-decoration-color: var(--accent);
}

.page-home-enterprise .services-cta--text {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-strong);
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}

.page-home-enterprise .services-cta--text:hover {
  color: var(--text-primary);
  text-decoration-color: var(--accent);
  transform: none;
}

.theme-cyber.page-home-enterprise .svc-card--enterprise:hover,
.theme-cyber.page-home-enterprise .svc-card--enterprise:focus-within,
.theme-cyber.page-services-enterprise .svc-card--enterprise:hover,
.theme-cyber.page-services-enterprise .svc-card--enterprise:focus-within {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.page-home-enterprise:not(.theme-cyber) .svc-card--enterprise:hover,
.page-home-enterprise:not(.theme-cyber) .svc-card--enterprise:focus-within,
.page-services-enterprise:not(.theme-cyber) .svc-card--enterprise:hover,
.page-services-enterprise:not(.theme-cyber) .svc-card--enterprise:focus-within {
  transform: none;
  border-color: var(--border-strong);
  box-shadow: none;
}

.page-home-enterprise .services-title__accent {
  /* legacy class guard */
}

/* Agile — process list */
.page-home-enterprise .agile-process {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.page-home-enterprise .agile-process__step {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.page-home-enterprise .agile-process__step:last-child {
  border-bottom: none;
}

.page-home-enterprise .agile-process__num {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}

.page-home-enterprise .agile-process__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.page-home-enterprise .agile-process__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Home — clients showcase (below services) */
.home-clients {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.home-clients__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(19, 114, 246, 0.12), transparent 70%);
}

.home-clients__container {
  position: relative;
  z-index: 1;
  width: min(100%, var(--site-container-max, 72rem));
  margin-inline: auto;
  padding-inline: var(--site-container-pad-x, 1.5rem);
}

.home-clients__header {
  max-width: 42rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.home-clients__title {
  margin: 0 0 1rem;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary, #fff);
}

.home-clients__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.home-clients__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .home-clients__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .home-clients__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .home-clients__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.home-clients__card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(5.5rem, 14vw, 7.5rem);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.75rem);
  border-radius: 1rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-clients__item:hover .home-clients__card {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent, #1372f6) 35%, transparent);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.home-clients__card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: inherit;
}

.home-clients__card img {
  max-height: clamp(2.5rem, 6vw, 3.75rem);
  width: auto;
  max-width: min(100%, 10rem);
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(1) brightness(1.15);
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.home-clients__item:hover .home-clients__card img,
.home-clients__card-link:hover img {
  opacity: 1;
  filter: grayscale(0.2) brightness(1.05);
}

.home-clients__footer {
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
  text-align: center;
}

/* Home — testimonials */
.home-testimonials {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
  border-top: 1px solid var(--border-subtle);
}

.home-testimonials__glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(19, 114, 246, 0.1), transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(219, 9, 77, 0.06), transparent 60%);
}

.home-testimonials__container {
  position: relative;
  z-index: 1;
  width: min(100%, var(--site-container-max, 72rem));
  margin-inline: auto;
  padding-inline: var(--site-container-pad-x, 1.5rem);
}

.home-testimonials__header {
  max-width: 42rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.home-testimonials__title {
  margin: 0 0 1rem;
  font-family: var(--font-display, inherit);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary, #fff);
}

.home-testimonials__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-muted);
}

/* Testimonials slider */
.home-testimonials-slider {
  max-width: 52rem;
  margin-inline: auto;
  outline: none;
}

.home-testimonials-slider__viewport {
  overflow: hidden;
  border-radius: var(--cyber-glass-radius, 1rem);
  border: 1px solid var(--cyber-glass-border, rgba(255, 255, 255, 0.1));
  background: var(--cyber-glass-surface, rgba(15, 23, 42, 0.55));
  backdrop-filter: var(--cyber-glass-blur, blur(12px));
  -webkit-backdrop-filter: var(--cyber-glass-blur, blur(12px));
  box-shadow: var(--cyber-glass-shadow, 0 20px 50px rgba(0, 0, 0, 0.25));
}

.home-testimonials-slider__track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  opacity: 0.45;
  transition: opacity 0.45s ease;
}

.home-testimonial-slide--active {
  opacity: 1;
}

.home-testimonial-slide__inner {
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}

.home-testimonial-slide__quote-mark {
  width: 2.5rem;
  margin: 0 auto 1rem;
  color: color-mix(in srgb, var(--accent, #1372f6) 50%, transparent);
}

.home-testimonial-slide__quote-mark svg {
  display: block;
  width: 100%;
  height: auto;
}

.home-testimonial-slide__rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.home-testimonial-slide__star {
  width: 1rem;
  height: 1rem;
  color: color-mix(in srgb, var(--text-muted) 45%, transparent);
}

.home-testimonial-slide__star--on {
  color: #fbbf24;
}

.home-testimonial-slide__content {
  margin: 0 auto 1.5rem;
  max-width: 38rem;
  padding: 0;
  border: none;
}

.home-testimonial-slide__content p {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.75;
  font-weight: 400;
  color: var(--text-secondary, rgba(255, 255, 255, 0.88));
}

.home-testimonial-slide__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.home-testimonial-slide__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--accent, #1372f6) 35%, transparent);
  background: color-mix(in srgb, var(--accent, #1372f6) 10%, transparent);
}

.home-testimonial-slide__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-testimonial-slide__initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-light, #60a5fa);
}

.home-testimonial-slide__name {
  display: block;
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary, #fff);
}

.home-testimonial-slide__role {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.home-testimonial-slide__sep {
  opacity: 0.65;
}

.home-testimonials-slider__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.35rem;
}

.home-testimonials-slider__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-testimonials-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--cyber-glass-border, rgba(255, 255, 255, 0.12));
  background: color-mix(in srgb, var(--primary, #0f172a) 60%, transparent);
  color: var(--text-primary, #fff);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.home-testimonials-slider__arrow:hover:not(:disabled),
.home-testimonials-slider__arrow:focus-visible:not(:disabled) {
  border-color: color-mix(in srgb, var(--accent, #1372f6) 45%, transparent);
  background: color-mix(in srgb, var(--accent, #1372f6) 18%, transparent);
  color: var(--accent-light, #93c5fd);
}

.home-testimonials-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.home-testimonials-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.home-testimonials-slider__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text-muted) 50%, transparent);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.home-testimonials-slider__dot.is-active {
  width: 1.5rem;
  background: var(--accent-light, #60a5fa);
}

.home-testimonials-slider__dot:hover,
.home-testimonials-slider__dot:focus-visible {
  background: color-mix(in srgb, var(--accent, #1372f6) 65%, transparent);
}

.home-testimonials-slider__status {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

[dir="rtl"] .home-testimonials__header {
  text-align: center;
}

[dir="rtl"] .home-testimonial-slide__content p {
  text-align: center;
}

[dir="rtl"] .home-testimonials-slider__arrow svg {
  transform: scaleX(-1);
}

@media (prefers-reduced-motion: reduce) {
  .home-testimonials-slider__track {
    transition: none;
  }

  .home-testimonial-slide {
    transition: none;
  }
}

.home-clients__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.85rem 1.75rem;
}

/* Enterprise CTA */
.enterprise-cta {
  padding: clamp(3.5rem, 8vh, 5rem) 0;
}

.enterprise-cta__inner {
  padding-block: clamp(2rem, 5vw, 2.75rem);
  text-align: start;
  border: 1px solid var(--border-default);
  border-radius: var(--ent-radius, 0.5rem);
  background: rgba(255, 255, 255, 0.02);
}

.page-home-enterprise .enterprise-cta__inner {
  display: grid;
  gap: 1.5rem;
}

.page-home-enterprise .enterprise-cta__copy {
  min-width: 0;
}

.page-home-enterprise .enterprise-cta__title {
  margin-bottom: 0.5rem;
}

.page-home-enterprise .enterprise-cta__lead {
  margin: 0;
}

@media (min-width: 768px) {
  .page-home-enterprise .enterprise-cta__inner {
    grid-template-columns: minmax(0, 1.2fr) auto;
    align-items: center;
    gap: 2.5rem;
  }

  .page-home-enterprise .enterprise-cta__actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }
}

.enterprise-cta__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.enterprise-cta__lead {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.enterprise-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.page-home-enterprise .enterprise-cta__btn {
  border-radius: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
}

/* Blog — enterprise header */
.page-home-enterprise .blog-section {
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.page-home-enterprise .blog-section .section-pattern,
.page-home-enterprise .blog-section > .absolute {
  display: none;
}

.blog-section__container {
  position: relative;
  z-index: 1;
}

.blog-header {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: start;
}

@media (min-width: 1024px) {
  .blog-header {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: end;
  }

  .blog-lead {
    justify-self: end;
    text-align: end;
  }
}

.blog-title {
  margin: 1rem 0 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.blog-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.blog-footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.page-home-enterprise .blog-footer .btn-secondary {
  border-radius: var(--btn-radius);
}

/* Contact — calmer on home */
.page-home-enterprise .contact-bg-gradient,
.page-home-enterprise .contact-bg-pattern,
.page-home-enterprise .contact-form-card-glow {
  display: none;
}

.page-home-enterprise .contact-image-wrap {
  background: var(--border-default);
  box-shadow: none;
  padding: 2px;
}

.page-home-enterprise .contact-image-wrap:hover {
  transform: none;
}

.page-home-enterprise .contact-headline-accent {
  color: var(--accent-light);
}

.page-home-enterprise .btn-primary {
  background: var(--accent);
  background-size: auto;
  box-shadow: none;
  border-radius: var(--btn-radius);
}

.page-home-enterprise .btn-primary:hover {
  background: var(--accent-dark);
  transform: none;
  box-shadow: none;
}

.page-home-enterprise .btn-secondary {
  border-radius: var(--btn-radius);
}

.page-home-enterprise .section-eyebrow::before {
  display: none;
}

/* Blog — document-style cards */
.page-home-enterprise .blog-card a {
  border-radius: var(--ent-radius) !important;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: none;
}

.page-home-enterprise .blog-card a:hover {
  transform: none;
  border-color: var(--border-strong);
  box-shadow: none;
}

.page-home-enterprise .blog-card:hover .blog-card-image {
  background: rgba(255, 255, 255, 0.04);
}

.page-home-enterprise .blog-card-meta {
  color: var(--text-subtle);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.page-home-enterprise .blog-card a:hover .blog-card-title {
  color: var(--text-primary);
}

.page-home-enterprise .blog-card-title {
  font-size: 1.0625rem;
}

.page-home-enterprise .home-clients__cta.btn-secondary {
  border-color: var(--border-strong);
}

.page-home-enterprise .home-clients__cta.btn-secondary:hover {
  border-color: var(--accent);
}

.page-home-enterprise .contact-pill {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.page-home-enterprise .contact-form-card {
  border-radius: var(--ent-radius);
  background: rgba(255, 255, 255, 0.02);
}

.page-home-enterprise .contact-submit {
  border-radius: var(--ent-radius);
  box-shadow: none;
}

.page-home-enterprise .contact-submit:hover {
  transform: none;
  box-shadow: none;
}

@media (max-width: 639px) {
  .page-home-enterprise .hero-proof__metrics {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .page-home-enterprise .hero-proof__metrics > div {
    border-right: none;
    padding-right: 0;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .page-home-enterprise .hero-proof__metrics > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  [dir="rtl"] .blog-lead {
    justify-self: start;
    text-align: start;
  }
}

[dir="rtl"] {
  --font-sans: 'IBM Plex Sans Arabic', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'IBM Plex Sans Arabic', ui-sans-serif, system-ui, sans-serif;
}
