/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --bg: #eaf4ff;
  --bg-soft: #f6fbff;
  --surface: rgba(255, 255, 255, 0.66);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-tint: rgba(223, 238, 255, 0.78);
  --line: rgba(43, 111, 228, 0.15);
  --line-strong: rgba(43, 111, 228, 0.32);
  --text: #0f1f40;
  --muted: #5b7397;
  --primary: #1495ff;
  --primary-2: #2959ea;
  --accent: #47c8ff;
  --shadow: 0 24px 60px rgba(36, 94, 190, 0.12);
  --glow: 0 0 0 1px rgba(107, 196, 255, 0.14), 0 16px 36px rgba(33, 105, 235, 0.10);
  --radius-lg: 24px;
  --max: 1160px;
  --header-h: 64px;
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; scroll-behavior: smooth; }
body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(71, 200, 255, 0.20), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(41, 89, 234, 0.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(20, 149, 255, 0.10), transparent 36%),
    linear-gradient(180deg, #f3f9ff, #e9f3ff),
    var(--bg);
  line-height: 1.65;
}
h1, h2, h3 {
  font-family: "Exo 2", sans-serif;
  line-height: 1.18;
  margin: 0 0 0.7rem;
}
p, ul, ol { margin: 0; color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ─── SCROLL PROGRESS ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
  z-index: 999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ─── BACKGROUND DECORATIONS ──────────────────────────── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(100, 149, 237, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 149, 237, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 82%);
  pointer-events: none;
  z-index: -2;
}
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(80px);
  opacity: 0.45;
}
.bg-orb-1 {
  width: 600px; height: 600px;
  top: -160px; left: -160px;
  background: radial-gradient(circle, rgba(71, 200, 255, 0.28), transparent 70%);
}
.bg-orb-2 {
  width: 500px; height: 500px;
  top: -80px; right: -120px;
  background: radial-gradient(circle, rgba(41, 89, 234, 0.22), transparent 70%);
}

/* ─── LAYOUT ──────────────────────────────────────────── */
.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

/* ─── HEADER ──────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(20px) saturate(1.5);
  background: rgba(242, 249, 255, 0.72);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(240, 248, 255, 0.90);
  box-shadow: 0 2px 20px rgba(30, 90, 200, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 192px; }

nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #4d668e;
}
nav a { position: relative; transition: color 0.2s; }
nav a:hover { color: var(--primary-2); }
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -0.3rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}
nav a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 0.65rem; }

/* ─── HAMBURGER ───────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--primary-2);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.5rem 1rem 1rem;
  background: rgba(241, 249, 255, 0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #2d4a75;
  border-bottom: 1px solid rgba(43,111,228,0.08);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--primary-2); }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 12px;
  padding: 0.68rem 1.1rem;
  border: 1px solid rgba(31, 111, 228, 0.06);
  font-weight: 700;
  font-size: 0.9rem;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 8px 20px rgba(31, 111, 228, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(20, 149, 255, 0.26);
  filter: brightness(1.06);
}
.btn:active { transform: translateY(0); }

.btn-small { padding: 0.46rem 0.82rem; font-size: 0.83rem; border-radius: 10px; }
.btn-lg { padding: 0.82rem 1.5rem; font-size: 0.96rem; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-2);
  border: 1px solid rgba(84, 137, 233, 0.3);
  box-shadow: none;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 20px rgba(41,89,234,0.10);
}

.btn-submit {
  width: 100%;
  padding: 0.88rem;
  font-size: 0.96rem;
  margin-top: 0.3rem;
  border-radius: 14px;
  justify-content: space-between;
}
.btn-icon { font-size: 1.1rem; transition: transform 0.2s; }
.btn-submit:hover .btn-icon { transform: translateX(4px); }

/* ─── GRADIENT TEXT ───────────────────────────────────── */
.gradient-text {
  background: linear-gradient(100deg, var(--primary) 0%, #6b4fff 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero { padding: 5rem 0 3.5rem; }
.hero-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.4fr 0.85fr;
  align-items: center;
}
.hero-left { display: flex; flex-direction: column; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.kicker-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(71,200,255,0.25);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 3px rgba(71,200,255,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(71,200,255,0.10); }
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.lead {
  font-size: 1.05rem;
  max-width: 58ch;
  line-height: 1.7;
}
.hero-cta {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

/* Stats */
.stats {
  list-style: none;
  margin-top: 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.stats li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  background: var(--surface);
  box-shadow: var(--glow);
  transition: transform 0.2s, border-color 0.2s;
}
.stats li:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.stat-icon {
  display: block;
  width: 28px; height: 28px;
  border-radius: 8px;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, rgba(71,200,255,0.2), rgba(41,89,234,0.2));
}
.stats strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}
.stats span { font-size: 0.8rem; }

/* Hero card */
.hero-card {
  background: linear-gradient(145deg, rgba(247,252,255,0.88), rgba(220,234,255,0.78));
  border: 1px solid rgba(96,153,255,0.28);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--glow);
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #071838, #0c2660);
}
.hero-visual img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}
.hero-signal {
  position: absolute;
  right: 1rem; bottom: 1rem;
  max-width: 185px;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(129,204,255,0.22);
  border-radius: 14px;
  background: rgba(4, 17, 42, 0.75);
  backdrop-filter: blur(16px);
}
.hero-signal span,
.hero-signal p { color: rgba(223,241,255,0.82); }
.hero-signal span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-signal strong {
  display: block;
  margin: 0.26rem 0 0.2rem;
  color: #fff;
  font-size: 1.1rem;
}
.hero-signal p { font-size: 0.82rem; }

/* Floating badges */
.hero-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(129,204,255,0.28);
  background: rgba(6,20,50,0.72);
  backdrop-filter: blur(12px);
  color: rgba(220,240,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-badge-1 { top: 0.9rem; left: 0.9rem; }
.hero-badge-2 { top: 0.9rem; right: 0.9rem; }
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease infinite;
}
.badge-dot-green { background: #3fe89a; box-shadow: 0 0 0 3px rgba(63,232,154,0.2); }

.hero-card-body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-card-item { }
.hero-card-label {
  font-family: "Exo 2", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.22rem;
}
.hero-card-item p { font-size: 0.9rem; color: #3d5a80; }
.hero-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(43,111,228,0.18), transparent);
}

/* ─── SECTION SHARED ──────────────────────────────────── */
.section { padding: 4rem 0; }
.section h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-head { margin-bottom: 1.4rem; }
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 0 auto; max-width: 64ch; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3f72c8;
}
.section-kicker::before {
  content: "";
  width: 20px; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
}
.section-head.centered .section-kicker::before { display: none; }
.section-head.centered .section-kicker::after {
  content: "";
  width: 20px; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-2), var(--accent));
}

.section-intro { margin-bottom: 1rem; font-size: 1.02rem; color: #476588; }
.support-copy { margin-top: 0.8rem; font-size: 0.95rem; }
.journey-copy { margin: 0.1rem 0 1rem; font-size: 0.95rem; }

/* section glass bg */
#services .container,
#cases .container,
.contact .container,
#journeys .container,
#advantages .container {
  position: relative;
}
#services .container::before,
#cases .container::before,
.contact .container::before,
#journeys .container::before,
#advantages .container::before {
  content: "";
  position: absolute;
  inset: -20px -20px;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(170deg, rgba(255,255,255,0.42), rgba(220,238,255,0.28));
  border: 1px solid rgba(90,145,237,0.10);
}

/* ─── ABOUT ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.82fr;
  gap: 2rem;
  align-items: start;
}
.about-highlights {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.about-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.highlight-num {
  font-family: "Exo 2", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.highlight-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

/* ─── IMAGE PANEL ─────────────────────────────────────── */
.image-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(82,143,244,0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8,28,70,0.97), rgba(6,20,52,0.97));
  box-shadow: 0 28px 60px rgba(11,40,93,0.18);
  max-width: 440px;
  justify-self: end;
}
.image-panel img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.image-panel-copy {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(124,204,255,0.22);
  border-radius: 14px;
  background: rgba(7,18,43,0.75);
  backdrop-filter: blur(14px);
}
.image-panel-copy strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #f0faff;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
}
.image-panel-copy p { color: rgba(221,239,255,0.82); font-size: 0.86rem; }
.image-panel-dark { margin-top: 0.6rem; }

/* ─── SERVICES CARDS ──────────────────────────────────── */
.cards {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(232,244,255,0.92));
  box-shadow: var(--glow);
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}
.card::after {
  content: "";
  position: absolute;
  bottom: -60px; right: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71,200,255,0.16), transparent 70%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(66,129,236,0.3);
  box-shadow: 0 0 0 1px rgba(107,196,255,0.18), 0 30px 60px rgba(33,105,235,0.18);
}
.card-featured {
  border-color: rgba(66,129,236,0.28);
  background: linear-gradient(155deg, rgba(255,255,255,0.96), rgba(218,237,255,0.95));
  box-shadow: 0 0 0 1px rgba(107,196,255,0.16), 0 20px 50px rgba(33,105,235,0.14);
}
.card-num {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  font-family: "Exo 2", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(41,89,234,0.08);
  line-height: 1;
  user-select: none;
}
.card-badge-featured {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  width: fit-content;
}
.card h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.card-top { margin-bottom: 0.65rem; }
.service-icon {
  position: relative;
  display: inline-flex;
  width: 50px; height: 50px;
  margin-bottom: 1rem;
  border-radius: 15px;
  border: 1px solid rgba(86,144,244,0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(200,225,255,0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}
.service-icon::before, .service-icon::after { content: ""; position: absolute; }
.service-icon-iso::before { inset: 11px; border: 2px solid #2675ea; border-radius: 11px; }
.service-icon-iso::after { left: 17px; right: 17px; bottom: 11px; height: 7px; border-radius: 999px; background: linear-gradient(90deg, var(--accent), var(--primary-2)); }
.service-icon-soc::before { left: 12px; top: 10px; width: 26px; height: 30px; border-radius: 16px 16px 12px 12px; border: 2px solid #2675ea; }
.service-icon-soc::after { left: 20px; top: 21px; width: 10px; height: 14px; border: 2px solid #58cfff; border-top: 0; border-radius: 0 0 8px 8px; }
.service-icon-pci::before { left: 10px; right: 10px; top: 14px; height: 20px; border-radius: 8px; border: 2px solid #2675ea; }
.service-icon-pci::after { left: 15px; right: 15px; bottom: 11px; height: 4px; border-radius: 999px; background: #58cfff; box-shadow: 0 -17px 0 0 rgba(88,207,255,0.9), 17px -17px 0 0 rgba(41,89,234,0.9), -17px -17px 0 0 rgba(41,89,234,0.9); }

.card-subtitle { min-height: 2.8em; color: #3f5e86; font-size: 0.93rem; font-weight: 600; }
.eyebrow { margin-bottom: 0.45rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: #4e79c8; }
.card-points { margin: 0.9rem 0 1.1rem; padding-left: 1.1rem; }
.card-points li { font-size: 0.9rem; color: #3f5a80; }
.card-points li + li { margin-top: 0.35rem; }
.card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.68rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(84,137,233,0.24);
  background: linear-gradient(135deg, rgba(230,244,255,0.98), rgba(205,225,255,0.96));
  color: #1e4a8c;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(41,89,234,0.36);
  box-shadow: 0 10px 22px rgba(63,119,211,0.14);
}

/* ─── ADVANTAGES ──────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.split article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  background: linear-gradient(170deg, rgba(255,255,255,0.86), rgba(228,242,255,0.90));
  box-shadow: var(--glow);
}
.split h3 { font-size: 1.22rem; }
.checklist { padding-left: 0; list-style: none; margin-top: 0.9rem; }
.checklist li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.94rem;
  color: #3a5880;
}
.checklist li + li { margin-top: 0.55rem; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.88rem;
}

/* ─── JOURNEY ─────────────────────────────────────────── */
.journey-shell { display: grid; gap: 2.2rem; }
.journey-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 1.8rem;
  align-items: center;
}
.journey-intro { max-width: 600px; }
.journey-panel { max-width: 420px; justify-self: end; }
.journey-content { display: grid; gap: 1.4rem; }

.journey-block {
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid rgba(83,142,238,0.14);
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(255,255,255,0.84), rgba(230,243,255,0.86));
  box-shadow: 0 14px 34px rgba(35,91,182,0.07);
}
.journey-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}
.journey-block-header h3 { margin: 0; font-size: 1.18rem; }
.journey-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.journey-tag-iso  { background: rgba(20,149,255,0.12); color: #0d6dbb; border: 1px solid rgba(20,149,255,0.2); }
.journey-tag-soc  { background: rgba(41,89,234,0.10); color: #1a3b9e; border: 1px solid rgba(41,89,234,0.2); }
.journey-tag-pci  { background: rgba(71,200,255,0.12); color: #0a6d8c; border: 1px solid rgba(71,200,255,0.22); }

/* Vertical timeline */
.timeline-v {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.8rem;
}
.timeline-v li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(255,255,255,0.96), rgba(218,236,255,0.90));
  box-shadow: var(--glow);
  transition: transform 0.2s, border-color 0.2s;
}
.timeline-v li:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--primary-2));
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: "Exo 2", sans-serif;
}
.step-text { font-size: 0.84rem; color: #2c4a72; font-weight: 600; line-height: 1.4; }

/* ─── CLIENTS ─────────────────────────────────────────── */
.section-fade {
  background: linear-gradient(to bottom, transparent, rgba(219,235,255,0.5), transparent);
}
.client-marquee {
  display: flex;
  gap: 1rem;
  overflow: hidden;
  padding: 0.6rem 0;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}
.client-track {
  display: flex;
  gap: 1rem;
  min-width: max-content;
  animation: marquee 26s linear infinite;
}
.client-marquee:hover .client-track { animation-play-state: paused; }
.client-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 178px;
  min-height: 104px;
  padding: 0.9rem 1rem 0.8rem;
  border: 1px solid rgba(76,134,235,0.18);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(218,234,255,0.92));
  box-shadow: var(--glow);
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: default;
}
.client-logo:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(107,196,255,0.2), 0 22px 38px rgba(33,105,235,0.16); }
.client-logo img { width: 100%; height: 44px; object-fit: contain; }
.client-logo span { display: block; margin-top: 0.65rem; color: #1a3e72; font-family: "Exo 2", sans-serif; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.02em; text-align: center; }
.client-logo.is-fallback img { display: none; }
.client-logo.is-fallback::after { content: attr(data-name); color: #1a3e72; font-family: "Exo 2", sans-serif; font-size: 0.94rem; font-weight: 700; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 1rem)); }
}

/* ─── CONTACT ─────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 0; }
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.contact-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(75,135,236,0.22);
  background: rgba(255,255,255,0.78);
  color: #2d5b9a;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-channels { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.65rem; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-channel:hover { border-color: var(--line-strong); transform: translateX(3px); }
.channel-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(71,200,255,0.18), rgba(41,89,234,0.18));
  position: relative;
}
.channel-icon::before, .channel-icon::after { content: ""; position: absolute; }
/* Email icon */
.channel-icon-email::before { inset: 9px 7px; border: 1.5px solid #2675ea; border-radius: 4px; }
.channel-icon-email::after { top: 12px; left: 10px; right: 10px; height: 8px; border-left: 1.5px solid #2675ea; border-right: 1.5px solid #2675ea; clip-path: polygon(0 0,50% 55%,100% 0); background: #2675ea; }
/* Telegram icon */
.channel-icon-tg::before { left: 10px; top: 9px; border: 1.5px solid #2675ea; border-radius: 50%; width: 20px; height: 20px; }
.channel-icon-tg::after { left: 13px; top: 16px; width: 12px; height: 2px; background: #58cfff; border-radius: 1px; transform: rotate(-30deg); }
.channel-label { display: block; font-size: 0.74rem; font-weight: 700; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.channel-value { display: block; font-size: 0.92rem; font-weight: 600; color: var(--text); }

.contact-form {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  background: linear-gradient(170deg, rgba(255,255,255,0.90), rgba(228,242,255,0.92));
  display: grid;
  gap: 0.8rem;
  box-shadow: var(--glow);
}
.form-group { display: grid; gap: 0.35rem; }
.contact-form label, .form-group label { color: #2e4e78; font-size: 0.88rem; font-weight: 700; }
input, textarea, select {
  width: 100%;
  border-radius: 11px;
  border: 1.5px solid rgba(114,167,255,0.3);
  background: rgba(255,255,255,0.95);
  color: var(--text);
  padding: 0.7rem 0.8rem;
  font: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232959ea' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(71,200,255,0.18);
}

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(244,250,255,0.88);
  padding: 2rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-logo { width: 148px; }
.footer-tagline { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.footer-nav { display: flex; justify-content: center; gap: 1.6rem; font-size: 0.88rem; font-weight: 600; color: #4d668e; }
.footer-nav a:hover { color: var(--primary-2); }
.footer-bottom { display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem; font-size: 0.84rem; color: var(--muted); }
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.2s;
}
.back-top:hover { transform: translateY(-2px); }

/* ─── SCROLL REVEAL ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE 1000px ───────────────────────────────── */
@media (max-width: 1000px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .brand img { width: 166px; }

  .hero-grid,
  .about-grid,
  .split,
  .contact-wrap { grid-template-columns: 1fr; }

  .hero-card { max-width: 500px; }

  .image-panel { max-width: 100%; justify-self: stretch; }
  .journey-hero { grid-template-columns: 1fr; gap: 1.2rem; }
  .journey-panel { max-width: 100%; justify-self: stretch; }

  .cards { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-nav { justify-content: flex-start; }
  .footer-bottom { align-items: flex-start; }
}

/* ─── RESPONSIVE 680px ────────────────────────────────── */
@media (max-width: 680px) {
  .hero { padding-top: 3rem; }
  .hero-signal { position: static; margin: 0.9rem; max-width: none; }
  .hero-badge { display: none; }
  .brand img { width: 148px; }

  .about-highlights { gap: 1.4rem; }

  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }

  .timeline-v {
    grid-template-columns: 1fr 1fr;
  }

  .client-logo { width: 148px; min-height: 94px; }
  .client-logo img { height: 38px; }
  .client-logo span { font-size: 0.82rem; }

  .journey-block { padding: 1.1rem; }
  .journey-block-header { flex-wrap: wrap; }

  .footer-inner { grid-template-columns: 1fr; gap: 1rem; }
  .footer-bottom { align-items: flex-start; }

  #services .container::before,
  #cases .container::before,
  .contact .container::before,
  #journeys .container::before,
  #advantages .container::before { inset: -10px; }
}

@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .timeline-v { grid-template-columns: 1fr; }
  .about-highlights { flex-direction: column; gap: 1rem; }
}

/* ─── STANDARDS LOGO BAR ──────────────────────────────── */
.std-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin: 0 0 2.2rem;
  padding: 1.4rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(170deg, rgba(255,255,255,0.80), rgba(225,240,255,0.82));
  box-shadow: var(--glow);
}
.std-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  transition: transform 0.2s;
}
.std-logo-item:hover { transform: translateY(-3px); }
.std-logo-badge {
  width: 52px; height: 52px;
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18), 0 1px 0 rgba(255,255,255,0.4) inset;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.std-logo-badge svg { width: 52px; height: 52px; }
.std-iso { width: 58px; height: 58px; border-radius: 14px; }
.std-iso svg { width: 54px; height: 54px; }
.std-logo-item span {
  font-family: "Exo 2", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #2d4a78;
  text-align: center;
}

/* ─── SERVICES 5-CARD LAYOUT ──────────────────────────── */
.cards-top {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.6rem;
}
.cards-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin: 0 auto;
}

/* New service icons */
.service-icon-gdpr {
  background: linear-gradient(145deg, rgba(230,236,255,0.90), rgba(180,200,255,0.85));
}
.service-icon-gdpr::before {
  /* EU circle of stars — simplified shield shape */
  left: 11px; top: 10px;
  width: 28px; height: 32px;
  border-radius: 14px 14px 50% 50%;
  border: 2px solid #2255cc;
}
.service-icon-gdpr::after {
  left: 19px; top: 17px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #4070e8, transparent 70%);
  box-shadow: 0 -8px 0 1.5px #f5c800, 5.6px -5.6px 0 1.5px #f5c800, 8px 0 0 1.5px #f5c800, 5.6px 5.6px 0 1.5px #f5c800, 0 8px 0 1.5px #f5c800, -5.6px 5.6px 0 1.5px #f5c800, -8px 0 0 1.5px #f5c800, -5.6px -5.6px 0 1.5px #f5c800;
}

.service-icon-ccss {
  background: linear-gradient(145deg, rgba(220,250,235,0.88), rgba(160,230,200,0.80));
}
.service-icon-ccss::before {
  left: 12px; top: 10px;
  width: 26px; height: 28px;
  border-radius: 13px 13px 8px 8px;
  border: 2px solid #0a7a50;
}
.service-icon-ccss::after {
  left: 20px; top: 20px;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid #14c87a;
  box-shadow: 0 0 0 3px rgba(20,200,122,0.18);
}

/* Journey tags for new standards */
.journey-tag-gdpr    { background: rgba(0,51,153,0.10);  color: #002288; border: 1px solid rgba(0,51,153,0.2); }
.journey-tag-ccss    { background: rgba(13,94,63,0.10);  color: #0a5c3a; border: 1px solid rgba(13,94,63,0.2); }
.journey-tag-license { background: rgba(120,60,200,0.10); color: #5a1fa0; border: 1px solid rgba(120,60,200,0.22); }

/* ─── LICENSING CARD (full-width Card 06) ────────────── */
.cards-single {
  grid-template-columns: 1fr;
  margin-top: 1.6rem;
}
.card-licensing {
  background: linear-gradient(145deg, rgba(245,240,255,0.96), rgba(225,215,255,0.90));
  border-color: rgba(130,80,220,0.22);
}
.card-licensing:hover {
  border-color: rgba(130,80,220,0.38);
  box-shadow: 0 0 0 1px rgba(150,100,255,0.16), 0 30px 60px rgba(100,50,200,0.14);
}
.card-licensing .card-num { color: rgba(120,60,200,0.08); }
.card-licensing .eyebrow  { color: #7b3fcf; }

/* Service icon — licensing */
.service-icon-license {
  background: linear-gradient(145deg, rgba(240,230,255,0.92), rgba(210,190,255,0.85));
  border-color: rgba(130,80,220,0.22);
}
.service-icon-license::before {
  left: 13px; top: 9px;
  width: 24px; height: 28px;
  border-radius: 12px 12px 6px 6px;
  border: 2px solid #7b3fcf;
}
.service-icon-license::after {
  left: 19px; top: 20px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid #a566ff;
  box-shadow: 0 0 0 3px rgba(165,102,255,0.18);
}

/* Jurisdiction blocks inside Card 06 */
.licensing-jurisdictions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin: 1rem 0 0.6rem;
}
.jurisdiction-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(130,80,220,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
}
.jurisdiction-flag {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Exo 2", sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: white;
}
.flag-eu  { background: linear-gradient(135deg, #003399, #0055cc); }
.flag-uae { background: linear-gradient(135deg, #006633, #009944); }
.flag-hk  { background: linear-gradient(135deg, #b22222, #dc3535); }

.jurisdiction-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: #2a1a50;
  margin-bottom: 0.2rem;
}
.jurisdiction-item p {
  font-size: 0.8rem;
  color: #5a4a78;
  line-height: 1.45;
}

/* Card 06 bullet points in 2-col row */
.card-points-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1.5rem;
}

/* Card 06 full-width CTA */
.card-cta-wide {
  margin-top: 1.2rem;
  justify-content: center;
  background: linear-gradient(135deg, rgba(235,225,255,0.98), rgba(215,200,255,0.96));
  border-color: rgba(130,80,220,0.28);
  color: #5a1fa0;
}
.card-cta-wide:hover {
  border-color: rgba(130,80,220,0.48);
  box-shadow: 0 10px 22px rgba(100,50,200,0.16);
}

@media (max-width: 1000px) {
  .cards-top  { grid-template-columns: 1fr 1fr; }
  .cards-bottom { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .std-logos { gap: 1rem; padding: 1.1rem; }
  .licensing-jurisdictions { grid-template-columns: 1fr 1fr; }
  .card-points-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .cards-top, .cards-bottom { grid-template-columns: 1fr; }
  .std-logos { gap: 0.9rem; }
  .std-logo-badge, .std-logo-badge svg { width: 44px; height: 44px; }
  .licensing-jurisdictions { grid-template-columns: 1fr; }
}
