/* ── Reset & variables ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:        #a259e6;
  --purple-dark:   #8040c2;
  --purple-light:  rgba(162,89,230,0.12);
  --purple-mid:    rgba(162,89,230,0.22);
  --purple-glow:   rgba(162,89,230,0.45);
  --teal:          #1dc8eb;
  --teal-light:    rgba(29,200,235,0.1);
  --teal-glow:     rgba(29,200,235,0.4);
  --bg:            #1e2033;
  --bg-alt:        #272b44;
  --surface:       rgba(255,255,255,0.09);
  --surface-hover: rgba(255,255,255,0.14);
  --text:          #eef0ff;
  --muted:         rgba(200,210,255,0.65);
  --border:        rgba(255,255,255,0.12);
  --border-hover:  rgba(255,255,255,0.22);
  --white:         #ffffff;
  --light:         rgba(255,255,255,0.03);
  --radius:        0.75rem;
  --radius-lg:     1.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────────── */
h1 { font-size: clamp(2.6rem, 6vw, 4.25rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.06; }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.75rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }
p  { color: var(--muted); line-height: 1.8; }

.gradient-text {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ──────────────────────────────────────────────────── */
.container   { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.section     { padding: 7rem 2.5rem; }
.section-alt { padding: 7rem 2.5rem; background: var(--bg-alt); }

/* ── Labels ──────────────────────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 0.625rem;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary { background: var(--purple); color: white; box-shadow: 0 0 28px var(--purple-glow); }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 0 50px var(--purple-glow), 0 12px 30px rgba(0,0,0,0.4); }

.btn-teal { background: var(--teal); color: #07080f; box-shadow: 0 0 28px var(--teal-glow); }
.btn-teal:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 0 50px var(--teal-glow); }

.btn-outline { border: 1.5px solid var(--border-hover); color: var(--text); background: var(--surface); }
.btn-outline:hover { border-color: var(--purple); color: var(--purple); background: var(--purple-light); }

.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.2); color: white; background: rgba(255,255,255,0.06); }
.btn-outline-white:hover { background: rgba(255,255,255,0.14); }

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Navigation ──────────────────────────────────────────────── */
.nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border-hover);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 132px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--purple) !important;
  color: white !important;
  padding: 0.7rem 1.6rem;
  border-radius: 0.5rem;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  box-shadow: 0 4px 18px var(--purple-glow);
  transition: all 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--purple-dark) !important; color: white !important; transform: translateY(-1px); box-shadow: 0 6px 24px var(--purple-glow) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #333; border-radius: 2px; }

/* ── Nav dropdowns ───────────────────────────────────────────── */
.nav-item {
  position: relative;
}

.nav-link-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
  user-select: none;
}

.nav-link-toggle::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-item:hover .nav-link-toggle { color: var(--purple); }
.nav-item:hover .nav-link-toggle::after { width: 100%; }

.nav-arrow {
  transition: transform 0.22s ease;
  flex-shrink: 0;
  color: currentColor;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 0.875rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.13), 0 4px 16px rgba(0,0,0,0.06);
  min-width: 250px;
  /* top padding bridges the visual gap without breaking hover */
  padding: 1rem 0.5rem 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}

.dropdown-sm { min-width: 200px; }

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Arrow pointer on dropdown */
.dropdown::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: white;
  border-left: 1px solid rgba(0,0,0,0.07);
  border-top: 1px solid rgba(0,0,0,0.07);
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  border-radius: 0.625rem;
  transition: background 0.15s;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.dropdown-item::after { display: none !important; }
.dropdown-item:hover { background: var(--purple-light); }

.dropdown-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.01em;
}

.dropdown-desc {
  font-size: 0.75rem;
  color: #888;
  font-weight: 500;
}

.dropdown-item:hover .dropdown-label { color: var(--purple); }

/* Divider inside dropdown */
.dropdown-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 0.4rem 0.5rem;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: 8rem 2.5rem 7rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* Animated gradient orbs */
.orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.orb-1 {
  width: 700px; height: 700px;
  background: var(--purple-glow);
  top: -250px; right: -150px;
  animation: orb1 14s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: var(--teal-glow);
  bottom: -200px; left: -100px;
  animation: orb2 18s ease-in-out infinite;
}
.orb-3 {
  width: 350px; height: 350px;
  background: rgba(162,89,230,0.2);
  top: 50%; left: 35%;
  animation: orb3 22s ease-in-out infinite;
}

@keyframes orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-80px,100px) scale(1.1); }
  66%      { transform: translate(60px,-60px) scale(0.9); }
}
@keyframes orb2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(100px,-80px) scale(1.15); }
}
@keyframes orb3 {
  0%,100% { transform: translate(0,0) scale(1); opacity: 0.5; }
  50%      { transform: translate(-60px,60px) scale(1.25); opacity: 0.8; }
}

/* Subtle grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.hero-content h1 { color: var(--text); margin-bottom: 1.75rem; }
.hero-content h1 em { font-style: normal; }
.hero-content p { font-size: 1.15rem; max-width: 480px; margin-bottom: 2.75rem; }

/* Glass hero card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.08s ease-out;
  will-change: transform;
}

.hero-card-title {
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.hero-stat-row { display: flex; flex-direction: column; gap: 1.1rem; }

.hero-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-stat-label { font-size: 0.88rem; color: var(--muted); font-weight: 500; }

.hero-stat-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  background: var(--purple);
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  white-space: nowrap;
  box-shadow: 0 0 14px var(--purple-glow);
}

.hero-stat-value.teal {
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--teal);
  box-shadow: 0 0 14px var(--teal-glow);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.hero-badge::before { content: '✓'; color: var(--teal); font-weight: 900; }

/* ── Client strip ────────────────────────────────────────────── */
.clients-strip {
  background: rgba(162,89,230,0.07);
  border-top: 1px solid var(--purple-mid);
  border-bottom: 1px solid var(--purple-mid);
  padding: 1.25rem 2.5rem;
}

.clients-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.clients-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  white-space: nowrap;
}

.clients-list { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.clients-list span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.3rem 1rem;
  border: 1px solid var(--border-hover);
  border-radius: 2rem;
  background: var(--surface);
}

/* ── Service cards ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
  color: var(--text);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--teal));
  transform: scaleY(0);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: bottom;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -10%, var(--purple-light), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px var(--purple-glow);
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover::after  { opacity: 1; }

.service-num {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--purple);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.service-card h3 { margin-bottom: 0.6rem; color: var(--text); position: relative; z-index: 1; }
.service-card p  { font-size: 0.9rem; line-height: 1.7; position: relative; z-index: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}

/* ── Split section ───────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Feature box ─────────────────────────────────────────────── */
.feature-box {
  background: linear-gradient(145deg, rgba(128,64,194,0.6) 0%, rgba(10,6,20,0.9) 100%);
  border: 1px solid var(--purple-mid);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(162,89,230,0.2);
  backdrop-filter: blur(20px);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--teal-glow), transparent 70%);
  pointer-events: none;
}

.feature-box h2 { color: white; margin-bottom: 1rem; position: relative; z-index: 1; }
.feature-box p  { color: rgba(255,255,255,0.6); margin-bottom: 1.75rem; position: relative; z-index: 1; }

.feature-list { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.5;
}
.feature-list li::before { content: '→'; color: var(--teal); font-weight: 900; flex-shrink: 0; margin-top: 0.1rem; }

/* ── Stat cards ──────────────────────────────────────────────── */
.stat-stack { display: flex; flex-direction: column; gap: 1.25rem; }

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform: translateX(6px);
}

.stat-card-num {
  font-size: 2.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  min-width: 5rem;
}

.stat-card-text strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.stat-card-text span   { font-size: 0.85rem; color: var(--muted); }

/* ── Trust grid ──────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.trust-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}

.trust-item:hover {
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.trust-item:hover::before { opacity: 1; }

.trust-item h3 { margin-bottom: 0.75rem; color: var(--text); }
.trust-item p  { font-size: 0.88rem; }

/* ── Coverage pills ──────────────────────────────────────────── */
.coverage-pills { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2rem; }
.coverage-pills span {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--surface);
  transition: all 0.2s;
}
.coverage-pills span:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 7rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, var(--purple-glow), transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}

.cta-band h2 { color: var(--text); margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-band p  { color: var(--muted); margin-bottom: 2.75rem; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-band .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  padding: 5rem 2.5rem 4.5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -4rem; top: -4rem;
  width: 28rem; height: 28rem;
  border-radius: 50%;
  background: var(--purple-glow);
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}

.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--teal); }
.page-hero h1 { color: var(--text); max-width: 700px; margin-bottom: 1.25rem; }
.page-hero > .page-hero-inner > p { color: var(--muted); font-size: 1.1rem; max-width: 560px; }

/* ── Detail list ─────────────────────────────────────────────── */
.detail-list { display: flex; flex-direction: column; gap: 0.85rem; }
.detail-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--muted);
}
.detail-list li::before { content: '→'; color: var(--purple); font-weight: 900; flex-shrink: 0; margin-top: 0.1rem; }

/* ── Info card ───────────────────────────────────────────────── */
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.info-card h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--purple);
  margin-bottom: 1.5rem;
}

.check-list { display: flex; flex-direction: column; gap: 0.85rem; }
.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.check-list li::before { content: '✓'; color: var(--teal); font-weight: 900; }

/* ── Step cards ──────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: 1.5rem; }

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.3s;
}

.step-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.step-card-num {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.step-card h3 { margin-bottom: 0.5rem; color: var(--text); }
.step-card p  { font-size: 0.88rem; }

/* ── Work tags ───────────────────────────────────────────────── */
.work-tag {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: all 0.25s;
}

.work-tag:hover {
  background: var(--surface-hover);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.work-tag strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--text); }
.work-tag p { font-size: 0.85rem; margin: 0; }

/* ── Contact ─────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }

.contact-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.contact-item:last-of-type { border-bottom: none; }
.contact-item .label { margin-bottom: 0.4rem; }
.contact-item a, .contact-item p { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.contact-item a:hover { color: var(--purple); }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-light);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--bg-alt); color: var(--text); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: #1a1d30;
  padding: 5rem 2.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-company-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 0.35rem;
}

.footer-company-reg {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 270px;
  margin-bottom: 1.75rem;
}

.footer-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
}

.footer-trust-item::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--purple-light);
  border: 1px solid var(--purple-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%23a259e6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.7rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

.footer-contact-item {
  margin-bottom: 1rem;
}
.footer-contact-item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.25rem;
}
.footer-contact-item a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.15s;
  margin-bottom: 0;
}
.footer-contact-item a:hover { color: var(--teal); }
.footer-contact-item p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
}

.footer-bottom {
  max-width: 1100px;
  margin: 2.25rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Legal pages */
.legal-body {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
}
.legal-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 2.5rem 0 0.75rem;
}
.legal-body p { margin-bottom: 1rem; }
.legal-body ul {
  margin: 0 0 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-body a { color: var(--purple); text-decoration: underline; }
.legal-body a:hover { color: var(--teal); }
.legal-updated {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Card icons ──────────────────────────────────────────────── */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  background: var(--purple-light);
  color: var(--purple);
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon.teal { background: var(--teal-light); color: var(--teal); }
.service-card:hover .card-icon,
.trust-item:hover .card-icon { transform: scale(1.12) rotate(-4deg); }

/* ── News cards ──────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 16px 50px rgba(0,0,0,0.4), 0 0 30px var(--purple-glow);
  transform: translateY(-4px);
}

.news-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.news-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.news-card-date { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-bottom: 0.6rem; }
.news-card-body h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.75rem; line-height: 1.4; }
.news-card-body p  { font-size: 0.88rem; line-height: 1.7; flex: 1; }
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--purple);
  margin-top: 1.25rem;
}
.news-card-link:hover { color: var(--teal); }

.news-empty {
  text-align: center;
  padding: 5rem 2rem;
  border: 1px dashed var(--border-hover);
  border-radius: var(--radius-lg);
  color: var(--muted);
}
.news-empty h3 { color: var(--text); margin-bottom: 0.5rem; }

/* ── Scroll reveal (IntersectionObserver) ────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(40px);
}
.reveal.hidden.from-left  { transform: translateX(-50px); }
.reveal.hidden.from-right { transform: translateX(50px); }
.reveal.hidden.scale-up   { transform: scale(0.85); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner   { grid-template-columns: 1fr; }
  .hero-card    { display: none; }
  .split        { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 148px;
    left: 0; right: 0;
    background: rgba(7,8,15,0.97);
    backdrop-filter: blur(24px);
    padding: 1.5rem 2.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  }
  .form-row { grid-template-columns: 1fr; }
  .hero, .section, .section-alt, .cta-band { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
