/* Advance Services - Main Stylesheet */

:root {
  --navy: #0a1628;
  --blue: #1a3a6b;
  --electric: #0d6efd;
  --teal: #00c9a7;
  --teal-light: #e0faf5;
  --white: #ffffff;
  --gray-light: #f4f7fb;
  --gray-mid: #8898aa;
  --text: #1a2340;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a3a6b 60%, #0d3b6b 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Assistant', sans-serif;
  color: var(--text);
  background: var(--white);
  direction: rtl;
  overflow-x: hidden;
}

/* ── TOP CONTACT BAR ── */
.top-bar {
  background: linear-gradient(90deg, #0d2d1f 0%, #0a3d2b 50%, #0d2d1f 100%);
  border-bottom: 1px solid rgba(0,201,167,0.25);
  padding: 0 5%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 101;
  box-shadow: 0 2px 12px rgba(0,201,167,0.08);
  justify-content: flex-end;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: color .2s, transform .2s;
}
.top-bar-item:hover { color: var(--teal); transform: translateY(-1px); }
.top-bar-item .tb-icon { font-size: 1.05rem; }
.top-bar-sep { width: 1px; height: 18px; background: rgba(0,201,167,0.3); }

/* ── NAV ── */
nav {
  position: fixed;
  top: 44px; right: 0; left: 0;
  z-index: 100;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  transition: background .3s;
}

.nav-logo {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal);
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,201,167,0.4);
  color: var(--navy) !important;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: white; border-radius: 2px; transition: .3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 144px 5% 80px;
}

/* animated wave grid */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,201,167,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13,110,253,0.15) 0%, transparent 40%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(0,201,167,0.15);
  border: 1px solid rgba(0,201,167,0.3);
  border-radius: 50px;
  padding: .35rem 1rem;
  margin-bottom: 1.5rem;
  animation: fadeDown .7s ease both;
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-badge span { color: var(--teal); font-size: .85rem; font-weight: 600; }

.hero-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeDown .8s .1s ease both;
}
.hero-title em { color: var(--teal); font-style: normal; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeDown .8s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeDown .8s .3s ease both;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,201,167,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  padding: .9rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--teal); background: rgba(0,201,167,0.08); }

/* hero visual */
.hero-visual {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  max-width: 500px;
  z-index: 2;
  animation: floatUp 3s ease-in-out infinite alternate;
}
@keyframes floatUp { 0%{transform:translateY(-50%) translateY(0)} 100%{transform:translateY(-50%) translateY(-16px)} }

.dashboard-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.2rem;
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  margin-bottom: .5rem;
  overflow: hidden;
}
.dash-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--electric));
  animation: barGrow 2s ease-in-out infinite alternate;
}
@keyframes barGrow { 0%{width:40%} 100%{width:95%} }
.dash-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; }
.dash-label { color: rgba(255,255,255,0.55); font-size: .8rem; }
.dash-val { color: var(--teal); font-weight: 700; font-size: .9rem; }

.wave-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 50px;
  margin-top: 1rem;
}
.wave-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--teal), rgba(0,201,167,0.2));
  border-radius: 3px 3px 0 0;
  animation: waveDance 1.4s ease-in-out infinite alternate;
}
.wave-bar:nth-child(1){height:30%;animation-delay:0s}
.wave-bar:nth-child(2){height:70%;animation-delay:.1s}
.wave-bar:nth-child(3){height:50%;animation-delay:.2s}
.wave-bar:nth-child(4){height:90%;animation-delay:.3s}
.wave-bar:nth-child(5){height:60%;animation-delay:.4s}
.wave-bar:nth-child(6){height:40%;animation-delay:.5s}
.wave-bar:nth-child(7){height:80%;animation-delay:.6s}
.wave-bar:nth-child(8){height:55%;animation-delay:.7s}
.wave-bar:nth-child(9){height:75%;animation-delay:.8s}
.wave-bar:nth-child(10){height:35%;animation-delay:.9s}
.wave-bar:nth-child(11){height:65%;animation-delay:1s}
.wave-bar:nth-child(12){height:85%;animation-delay:1.1s}
@keyframes waveDance {
  0%{transform:scaleY(1)} 100%{transform:scaleY(1.5)}
}

.mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1rem;
}
.mini-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: .9rem;
}
.mini-card-num { color: var(--teal); font-weight: 800; font-size: 1.4rem; font-family:'Heebo',sans-serif; }
.mini-card-label { color: rgba(255,255,255,0.5); font-size: .75rem; }

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

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 2.5rem 5%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Heebo', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
}
.stat-label { color: rgba(255,255,255,0.55); font-size: .9rem; margin-top: .2rem; }

/* ── SECTIONS common ── */
section { padding: 90px 5%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--teal);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--teal);
  display: block;
}

.section-title {
  font-family: 'Heebo', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { color: var(--electric); font-style: normal; }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-mid);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── SHIFT SECTION ── */
#shift { background: var(--gray-light); }
.shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.shift-quote {
  border-right: 4px solid var(--teal);
  padding-right: 1.5rem;
  margin-bottom: 2rem;
}
.shift-quote p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
  font-family: 'Heebo', sans-serif;
}
.shift-body { color: var(--gray-mid); line-height: 1.9; }

.shift-visual {
  position: relative;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ba-card {
  border-radius: 16px;
  padding: 1.5rem;
}
.ba-card.before {
  background: #fff3f3;
  border: 1px solid #ffd5d5;
}
.ba-card.after {
  background: #e0faf5;
  border: 1px solid #a0e8d8;
}
.ba-icon { font-size: 1.8rem; margin-bottom: .8rem; }
.ba-title { font-weight: 800; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .5rem; }
.ba-card.before .ba-title { color: #c0392b; }
.ba-card.after .ba-title { color: #00a88a; }
.ba-list { list-style: none; }
.ba-list li { font-size: .85rem; color: var(--gray-mid); padding: .25rem 0; }
.ba-list li::before { content: '• '; }

/* ── SOLUTIONS ── */
#solutions { background: var(--white); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sol-card {
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e8edf5;
  background: var(--white);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.sol-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--electric));
  opacity: 0;
  transition: opacity .3s;
}
.sol-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: transparent; }
.sol-card:hover::before { opacity: 1; }

.sol-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.sol-card:nth-child(1) .sol-icon { background: rgba(0,201,167,0.12); }
.sol-card:nth-child(2) .sol-icon { background: rgba(13,110,253,0.1); }
.sol-card:nth-child(3) .sol-icon { background: rgba(156,39,176,0.1); }
.sol-card:nth-child(4) .sol-icon { background: rgba(255,152,0,0.1); }
.sol-card:nth-child(5) .sol-icon { background: rgba(233,30,99,0.1); }
.sol-card:nth-child(6) .sol-icon { background: rgba(0,188,212,0.1); }

.sol-title { font-weight: 800; font-size: 1.05rem; color: var(--text); margin-bottom: .5rem; }
.sol-desc { font-size: .9rem; color: var(--gray-mid); line-height: 1.7; }

/* ── COMPLIANCE ── */
#compliance {
  background: var(--gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
}
#compliance::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(0,201,167,0.12), transparent 50%);
}
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
#compliance .section-title { color: white; }
#compliance .section-sub { color: rgba(255,255,255,0.65); }

.compliance-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.comp-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.4rem;
  text-align: center;
  transition: background .3s;
}
.comp-badge:hover { background: rgba(0,201,167,0.12); }
.comp-badge-name { font-weight: 800; font-size: 1.3rem; color: var(--teal); font-family: 'Heebo', sans-serif; }
.comp-badge-desc { color: rgba(255,255,255,0.55); font-size: .8rem; margin-top: .3rem; }

/* ── AI ── */
#ai { background: var(--gray-light); }
.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ai-features { display: flex; flex-direction: column; gap: 1.2rem; }
.ai-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  border: 1px solid #e8edf5;
  transition: box-shadow .2s;
}
.ai-feature:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.ai-feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, var(--teal), var(--electric));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.ai-feature-title { font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.ai-feature-desc { font-size: .88rem; color: var(--gray-mid); }

.ai-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.ai-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,201,167,0.15), transparent);
}
.chat-bubble {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.chat-avatar {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--electric));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
}
.chat-text {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: .7rem 1rem;
  color: rgba(255,255,255,0.8);
  font-size: .85rem;
  line-height: 1.5;
}
.chat-tag {
  display: inline-block;
  padding: .15rem .5rem;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 700;
  margin: .2rem .15rem;
}
.tag-pos { background: rgba(0,201,167,0.2); color: var(--teal); }
.tag-neg { background: rgba(231,76,60,0.2); color: #e74c3c; }
.tag-key { background: rgba(13,110,253,0.2); color: #5b9cf6; }
.sentiment-bar { margin-top: 1rem; }
.sent-label { color: rgba(255,255,255,.5); font-size: .75rem; margin-bottom: .4rem; }
.sent-track { height: 8px; background: rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; margin-bottom: .4rem; }
.sent-fill { height: 100%; border-radius: 4px; }

/* ── INTEGRATIONS ── */
#integrations { background: white; }
.integrations-wrapper { text-align: center; }
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-top: .75rem;
}
.int-category .integrations-grid {
  justify-content: flex-start;
  margin-top: .75rem;
}
.int-badge {
  background: var(--gray-light);
  border: 1px solid #e8edf5;
  border-radius: 50px;
  padding: .7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  transition: box-shadow .2s, border-color .2s;
}
.int-badge:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.1); border-color: var(--teal); }
.int-icon { font-size: 1.3rem; }

.int-category {
  margin-bottom: 2rem;
}
.int-category-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gray-light);
}
.int-cat-icon { font-size: 1.1rem; }

.int-badge--highlight {
  border-color: rgba(0,201,167,0.35);
  background: var(--teal-light);
  color: #006b57;
}
.int-badge--highlight:hover { border-color: var(--teal); box-shadow: 0 6px 18px rgba(0,201,167,0.2); }

/* ── QM ── */
#qm { background: var(--gray-light); }
.qm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.scorecard {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.scorecard-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.scorecard-title { font-weight: 800; color: var(--text); }
.score-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: conic-gradient(var(--teal) 0% 92%, #e8edf5 92% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--navy);
  font-size: 1.1rem;
  font-family: 'Heebo', sans-serif;
}
.sc-row { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; }
.sc-label { font-size: .85rem; color: var(--gray-mid); width: 120px; min-width: 120px; }
.sc-track { flex: 1; height: 6px; background: #e8edf5; border-radius: 3px; overflow: hidden; }
.sc-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--teal), var(--electric)); }
.sc-val { font-size: .85rem; font-weight: 700; color: var(--text); width: 36px; }

/* ── ABOUT ── */
#about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-body { font-size: 1rem; color: var(--gray-mid); line-height: 1.9; }
.about-body p { margin-bottom: 1.2rem; }
.about-highlight { color: var(--navy); font-weight: 700; }

.values-list { display: flex; flex-direction: column; gap: .8rem; margin-top: 1.5rem; }
.value-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-size: .95rem;
  color: var(--text);
}
.value-check {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .9rem;
}

.about-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.num-card {
  background: var(--gray-light);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform .2s;
}
.num-card:hover { transform: translateY(-4px); }
.num-card-num {
  font-family: 'Heebo', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--electric);
}
.num-card-label { font-size: .85rem; color: var(--gray-mid); margin-top: .3rem; }

/* ── KNOWLEDGE CENTER ── */
#knowledge { background: var(--gray-light); }
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.kb-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8edf5;
  transition: transform .3s, box-shadow .3s;
}
.kb-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
.kb-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.kb-card:nth-child(1) .kb-thumb { background: linear-gradient(135deg, #e0faf5, #b2eee6); }
.kb-card:nth-child(2) .kb-thumb { background: linear-gradient(135deg, #e8f0fe, #c2d4fc); }
.kb-card:nth-child(3) .kb-thumb { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.kb-body { padding: 1.4rem; }
.kb-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .6rem;
}
.kb-title { font-weight: 700; color: var(--text); margin-bottom: .5rem; line-height: 1.4; }
.kb-desc { font-size: .85rem; color: var(--gray-mid); line-height: 1.6; }
.kb-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: var(--electric);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: .8rem;
}

/* ── SOLUTION TABS ── */
.sol-tabs {
  display: flex;
  gap: .75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.sol-tab {
  padding: .65rem 1.6rem;
  border-radius: 50px;
  border: 2px solid #e8edf5;
  background: white;
  font-family: 'Assistant', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-mid);
  cursor: pointer;
  transition: all .25s;
}
.sol-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.sol-tab:hover:not(.active) { border-color: var(--teal); color: var(--teal); }

.onprem-card .sol-icon { background: rgba(26,58,107,0.1) !important; }
.onprem-card::before { background: linear-gradient(90deg, var(--blue), var(--navy)) !important; }
.onprem-card:hover { border-color: transparent; }

/* ── CTA SECTION ── */
#cta {
  background: var(--gradient-hero);
  text-align: center;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(0,201,167,0.12), transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(13,110,253,0.12), transparent 50%);
}
.cta-content { position: relative; z-index: 2; }
#cta .section-title { color: white; max-width: 600px; margin: 0 auto 1rem; }
#cta .section-sub { color: rgba(255,255,255,.65); margin: 0 auto 2.5rem; }

.contact-form {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-field input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: .85rem 1.1rem;
  color: white;
  font-size: .95rem;
  font-family: 'Assistant', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.form-field input::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus { border-color: var(--teal); }
.form-submit {
  width: 100%;
  background: var(--teal);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: 'Assistant', sans-serif;
  transition: transform .2s, box-shadow .2s;
  margin-top: .5rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,201,167,0.35); }

.contact-info-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  padding: .6rem 1.3rem;
  border-radius: 50px;
  transition: background .2s, border-color .2s;
}
.contact-info-item:hover { background: rgba(0,201,167,0.15); border-color: var(--teal); color: var(--teal); }
.contact-info-icon { font-size: 1.1rem; }
.contact-info-divider { width: 1px; height: 30px; background: rgba(255,255,255,0.15); }

/* ── FOOTER ── */
footer {
  background: #06101e;
  color: rgba(255,255,255,0.5);
  padding: 3rem 5%;
  text-align: center;
}
.footer-logo {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: white;
  margin-bottom: .5rem;
}
.footer-logo span { color: var(--teal); }
.footer-contact {
  margin: .8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: .95rem; transition: color .2s; }
.footer-contact a:hover { color: var(--teal); }
.footer-sep { color: rgba(255,255,255,0.2); }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.2rem 0;
}
.footer-links a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--teal); }
.footer-copy { font-size: .8rem; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .top-bar { display: none; }
  nav { top: 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }

  .shift-grid,
  .compliance-grid,
  .ai-grid,
  .qm-grid,
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }

  .solutions-grid { grid-template-columns: 1fr 1fr; }
  .knowledge-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr 1fr; }
  .stats-bar { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .integrations-grid { gap: .6rem; }
  .compliance-badges { grid-template-columns: 1fr 1fr; }
  .about-numbers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .solutions-grid { grid-template-columns: 1fr; }
  section { padding: 60px 5%; }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}