/* ============================================================
   MAIN.CSS — Here in Oman | Enterprise Software Solutions
   Palette: Vibrant Pastels — Violet · Coral · Teal · Amber
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');

/* ---- TOKENS ---- */
:root {
  /* Base */
  --bg:          #FAFAFA;
  --surface:     #FFFFFF;
  --surface-alt: #F5F2FF;
  --surface-dark:#18064A;
  --border:      #E5E7EB;
  --text:        #1E1B4B;
  --body:        #374151;
  --muted:       #6B7280;

  /* Primary — Vivid Violet */
  --violet:      #7C3AED;
  --violet-d:    #5B21B6;
  --violet-l:    #EDE9FE;
  --violet-m:    #C4B5FD;

  /* Accent — Vivid Coral/Rose */
  --coral:       #F43F5E;
  --coral-d:     #BE123C;
  --coral-l:     #FFF0F2;
  --coral-m:     #FDA4AF;

  /* Accent — Vivid Teal */
  --teal:        #0D9488;
  --teal-d:      #0F766E;
  --teal-l:      #F0FDFA;
  --teal-m:      #5EEAD4;

  /* Accent — Vivid Amber */
  --amber:       #F59E0B;
  --amber-d:     #D97706;
  --amber-l:     #FFFBEB;
  --amber-m:     #FCD34D;

  /* Accent — Sky Blue */
  --sky:         #0EA5E9;
  --sky-d:       #0284C7;
  --sky-l:       #F0F9FF;
  --sky-m:       #7DD3FC;

  /* Accent — Emerald */
  --emerald:     #10B981;
  --emerald-l:   #ECFDF5;
  --emerald-m:   #6EE7B7;

  /* Accent — Pink */
  --pink:        #EC4899;
  --pink-l:      #FDF2F8;
  --pink-m:      #F9A8D4;

  /* Utility */
  --max-w:       1200px;
  --r:           10px;
  --r-lg:        20px;
  --r-xl:        28px;
  --shadow:      0 4px 20px rgba(124,58,237,0.08);
  --shadow-md:   0 8px 32px rgba(124,58,237,0.12);
  --shadow-lg:   0 20px 60px rgba(124,58,237,0.16);
  --t:           0.22s ease;
  --font-en:     'Inter', system-ui, sans-serif;
  --font-ar:     'Noto Sans Arabic', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-en);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.lang-ar { font-family: var(--font-ar); direction: rtl; text-align: right; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- LANGUAGE ---- */
.t-ar { display: none; }
.lang-ar .t-en { display: none; }
.lang-ar .t-ar { display: revert; }

/* ---- CONTAINER ---- */
.wrap { width: min(calc(100% - 40px), var(--max-w)); margin-inline: auto; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--violet-d);
  color: rgba(255,255,255,0.75);
  font-size: 0.81rem;
  font-weight: 400;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  gap: 12px;
  flex-wrap: wrap;
  padding-block: 4px;
}
.topbar a {
  color: var(--violet-m);
  transition: color var(--t);
  font-weight: 500;
}
.topbar a:hover { color: #fff; }

.lang-toggle { display: flex; gap: 2px; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--t);
  font-family: inherit;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--violet);
  border-color: var(--violet);
  color: #fff;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(124,58,237,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 12px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo-icon-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.logo-tag {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.2px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--r);
  transition: all var(--t);
}
.nav-link:hover, .nav-link.active {
  color: var(--violet);
  background: var(--violet-l);
}

/* Header CTA */
.btn-nav {
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 100%);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: var(--r);
  font-size: 0.85rem;
  font-weight: 700;
  transition: opacity var(--t), transform var(--t);
  white-space: nowrap;
}
.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }

/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.ham span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--r-lg);
  transition: all var(--t);
  cursor: pointer;
  border: none;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none !important;
}
.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, #9B5DE5 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,0.45); }

.btn-coral {
  background: linear-gradient(135deg, var(--coral) 0%, #FB7185 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(244,63,94,0.35);
}
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(244,63,94,0.45); }

.btn-outline {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet);
}
.btn-outline:hover {
  background: var(--violet-l);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn-ghost-dark {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.2); }

.btn-sm { font-size: 0.83rem; padding: 9px 18px; border-radius: var(--r); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #2D0A7A 0%, #4F1EA3 35%, #7C3AED 65%, #9B5DE5 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,63,94,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero copy */
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.kicker-dot {
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-copy h1 .highlight {
  background: linear-gradient(90deg, var(--amber-m) 0%, var(--coral-m) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

/* Hero badges */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* Hero card (right side) */
.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(12px);
}
.hero-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero-items { display: flex; flex-direction: column; gap: 14px; }
.hero-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.hero-item-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-item-icon svg { width: 18px; height: 18px; }
.hi-violet { background: rgba(167,139,250,0.25); color: var(--violet-m); }
.hi-coral   { background: rgba(251,113,133,0.25); color: var(--coral-m); }
.hi-teal    { background: rgba(94,234,212,0.25);  color: var(--teal-m); }
.hi-amber   { background: rgba(252,211,77,0.25);  color: var(--amber-m); }
.hi-sky     { background: rgba(125,211,252,0.25); color: var(--sky-m); }
.hi-pink    { background: rgba(249,168,212,0.25); color: var(--pink-m); }

.hero-item-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.hero-item-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
  margin-top: 1px;
}
.hero-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.hero-card-footer a {
  color: var(--violet-m);
  font-weight: 600;
  transition: color var(--t);
}
.hero-card-footer a:hover { color: #fff; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-block: 0;
}
.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}
.sn-violet { color: var(--violet); }
.sn-coral  { color: var(--coral); }
.sn-teal   { color: var(--teal); }
.sn-amber  { color: var(--amber); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 88px 0; }
.section-alt { background: var(--surface-alt); }
.section-dark {
  background: var(--surface-dark);
  color: #fff;
}

.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--violet);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-head.centered .eyebrow { justify-content: center; }
.section-dark .eyebrow { color: var(--violet-m); }
.section-dark .eyebrow::before { background: var(--violet-m); }

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-dark .section-title { color: #fff; }

.section-sub {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
}
.section-head.centered .section-sub { margin-inline: auto; }
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ============================================================
   CARDS GRID
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--violet-m);
}
.card-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.ci-violet  { background: var(--violet-l); color: var(--violet); }
.ci-coral   { background: var(--coral-l);  color: var(--coral); }
.ci-teal    { background: var(--teal-l);   color: var(--teal); }
.ci-amber   { background: var(--amber-l);  color: var(--amber); }
.ci-sky     { background: var(--sky-l);    color: var(--sky); }
.ci-emerald { background: var(--emerald-l);color: var(--emerald); }
.ci-pink    { background: var(--pink-l);   color: var(--pink); }

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}
.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--violet);
  margin-top: 14px;
  transition: gap var(--t);
}
.card-link:hover { gap: 8px; }

/* Dark card */
.card-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.card-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(167,139,250,0.4);
  box-shadow: 0 8px 32px rgba(124,58,237,0.25);
}
.card-dark h3 { color: #fff; }
.card-dark p { color: rgba(255,255,255,0.6); }

/* Accent top border */
.card-accent-violet { border-top: 3px solid var(--violet); }
.card-accent-coral  { border-top: 3px solid var(--coral); }
.card-accent-teal   { border-top: 3px solid var(--teal); }
.card-accent-amber  { border-top: 3px solid var(--amber); }
.card-accent-sky    { border-top: 3px solid var(--sky); }
.card-accent-pink   { border-top: 3px solid var(--pink); }

/* ============================================================
   FEATURES / WHY SECTION
   ============================================================ */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.features-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all var(--t);
}
.feature-item:hover {
  border-color: var(--violet-m);
  background: var(--violet-l);
  transform: translateX(4px);
}
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-body h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-body p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Visual panel (right side of features) */
.visual-panel {
  background: linear-gradient(145deg, var(--violet-l) 0%, #fff 100%);
  border: 1px solid var(--violet-m);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
}
.visual-panel-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.visual-rows { display: flex; flex-direction: column; gap: 12px; }
.visual-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--surface);
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.visual-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vd-violet { background: var(--violet); }
.vd-coral  { background: var(--coral); }
.vd-teal   { background: var(--teal); }
.vd-amber  { background: var(--amber); }
.vd-sky    { background: var(--sky); }
.vd-pink   { background: var(--pink); }
.visual-row-label { font-size: 0.88rem; font-weight: 600; color: var(--text); flex: 1; }
.visual-row-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
}
.vt-violet { background: var(--violet-l); color: var(--violet); }
.vt-coral  { background: var(--coral-l);  color: var(--coral); }
.vt-teal   { background: var(--teal-l);   color: var(--teal); }
.vt-amber  { background: var(--amber-l);  color: var(--amber); }
.vt-sky    { background: var(--sky-l);    color: var(--sky); }
.vt-pink   { background: var(--pink-l);   color: var(--pink); }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--t);
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--violet-m);
}
.industry-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.industry-icon svg { width: 26px; height: 26px; }
.industry-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

/* ============================================================
   HOW IT WORKS STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(33.33% + 16px);
  right: calc(33.33% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--violet) 0%, var(--coral) 100%);
  opacity: 0.3;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  position: relative;
  transition: all var(--t);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 20px;
}
.sn1 { background: linear-gradient(135deg, var(--violet), var(--sky)); }
.sn2 { background: linear-gradient(135deg, var(--coral), var(--amber)); }
.sn3 { background: linear-gradient(135deg, var(--teal), var(--emerald)); }
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 100%);
  border-radius: var(--r-xl);
  padding: 60px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .eyebrow { color: rgba(255,255,255,0.75); }
.cta-banner .eyebrow::before { background: rgba(255,255,255,0.5); }
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.6; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0F0529;
  color: rgba(255,255,255,0.65);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.footer-logo-tag { font-size: 0.68rem; font-weight: 500; color: rgba(255,255,255,0.4); }

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 9px; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact-row svg { flex-shrink: 0; margin-top: 1px; color: var(--violet-m); }
.footer-contact-row a { color: var(--violet-m); transition: color var(--t); }
.footer-contact-row a:hover { color: #fff; }

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
  display: inline-block;
}
.footer-links a:hover { color: var(--violet-m); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 22px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--violet-m); }
.footer-sep { color: rgba(255,255,255,0.15); }

/* ============================================================
   MOBILE NAV (full panel)
   ============================================================ */
.mobile-nav {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,5,41,0.6);
  opacity: 0;
  transition: opacity var(--t);
  backdrop-filter: blur(2px);
}
.mobile-panel {
  position: absolute;
  top: 0; right: 0;
  width: 300px;
  height: 100%;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.mobile-nav.open { pointer-events: auto; }
.mobile-nav.open .mobile-overlay { opacity: 1; }
.mobile-nav.open .mobile-panel { transform: translateX(0); }

.mobile-close {
  align-self: flex-end;
  background: var(--violet-l);
  border: none;
  color: var(--violet);
  font-size: 1rem;
  width: 36px; height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-family: inherit;
}
.mobile-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  padding: 11px 14px;
  border-radius: var(--r);
  transition: all var(--t);
  display: block;
}
.mobile-link:hover, .mobile-link.active {
  color: var(--violet);
  background: var(--violet-l);
}
.mobile-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 100%);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: var(--r-lg);
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  transition: opacity var(--t);
}
.mobile-cta:hover { opacity: 0.88; }
.mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.mobile-lang .lang-btn {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 9px;
  color: var(--muted);
  font-weight: 600;
  background: var(--surface);
  font-size: 0.85rem;
}
.mobile-lang .lang-btn.active {
  background: var(--violet-l);
  border-color: var(--violet-m);
  color: var(--violet);
}

/* ============================================================
   PRODUCT BADGE
   ============================================================ */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.pb-enterprise { background: var(--violet-l); color: var(--violet); }
.pb-retail     { background: var(--teal-l);   color: var(--teal); }
.pb-portal     { background: var(--amber-l);  color: var(--amber); }
.pb-saas       { background: var(--sky-l);    color: var(--sky); }

/* ============================================================
   INNER PAGE HERO (solutions, about, etc.)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #2D0A7A 0%, #7C3AED 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(244,63,94,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--violet-m);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-40  { margin-top: 40px; }
.mt-48  { margin-top: 48px; }
.gap-14 { gap: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .features-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .ham { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 60px; }
  .hero-copy h1 { font-size: 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .cta-banner { flex-direction: column; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { font-size: 0.88rem; padding: 12px 22px; }
}
