/* ═══════════════════════════════════════════════════════
   UXFirst — Aurora Theme
   ═══════════════════════════════════════════════════════ */

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

:root {
  --cyan:        #009BC8;
  --cyan-light:  #00C8FF;
  --purple:      #7B2FBE;
  --purple-light:#A855F7;
  --bg:          #06020F;
  --bg2:         rgba(255,255,255,0.015);
  --card:        rgba(255,255,255,0.03);
  --card-hover:  rgba(255,255,255,0.06);
  --text:        #F0EEFF;
  --muted:       rgba(240,238,255,0.5);
  --border:      rgba(255,255,255,0.07);
  --border-cyan: rgba(0,155,200,0.25);
  --nav-h:       72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--purple-light), var(--cyan)); border-radius: 2px; }

/* ── Aurora background ── */
.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora-bg::before {
  content: '';
  position: absolute;
  width: 900px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(123,47,190,0.5) 0%, transparent 65%);
  top: -200px; left: -200px;
  filter: blur(60px);
  animation: aurora-1 14s ease-in-out infinite alternate;
}

.aurora-bg::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,155,200,0.42) 0%, transparent 65%);
  bottom: -200px; right: -100px;
  filter: blur(60px);
  animation: aurora-2 18s ease-in-out infinite alternate;
}

.aurora-mid {
  position: fixed;
  width: 500px; height: 350px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.22) 0%, transparent 65%);
  top: 40%; left: 35%;
  filter: blur(50px);
  animation: aurora-3 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes aurora-1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(200px,150px) scale(1.25); }
}
@keyframes aurora-2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-130px,-100px) scale(1.3); }
}
@keyframes aurora-3 {
  0%   { transform: translate(0,0); opacity: 0.6; }
  100% { transform: translate(-80px,60px); opacity: 1; }
}

/* ── Scroll-parallax colour shapes (injected by footer.ejs JS) ── */
.color-blob {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity, box-shadow;
  mix-blend-mode: screen;
}

/* ── Simple chat mockup (industry pages) ── */
.chat-header {
  background: rgba(0,155,200,0.08);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
}
.chat-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 75%;
  padding: 11px 15px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}
.chat-msg.user {
  background: rgba(123,47,190,0.15);
  border: 1px solid rgba(123,47,190,0.2);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
  color: rgba(240,238,255,0.85);
}
.chat-msg.bot {
  background: rgba(0,155,200,0.1);
  border: 1px solid rgba(0,155,200,0.15);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

/* ── Section glow dividers ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,155,200,0.4) 20%,
    rgba(168,85,247,0.5) 50%,
    rgba(0,155,200,0.4) 80%,
    transparent 100%
  );
  position: relative;
  z-index: 1;
  box-shadow: 0 0 16px rgba(0,155,200,0.2);
}

/* ── Coloured section accent (left edge stripe) ── */
.section-accent-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan) 0%, var(--purple-light) 100%);
  border-radius: 0 2px 2px 0;
}

/* ── Coloured number badge (for numbered cards/steps) ── */
.color-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--cyan), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Card top-border colour variants ── */
.card-accent-cyan::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  border-radius: 20px 20px 0 0;
}
.card-accent-purple::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-light), transparent);
  border-radius: 20px 20px 0 0;
}
.card-accent-green::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #25D366, transparent);
  border-radius: 20px 20px 0 0;
}

/* ── Page wrapper ── */
.page { position: relative; z-index: 1; overflow: hidden; }

/* ── Navigation ── */
.uxf-nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 80px);
  max-width: 1260px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: rgba(6,2,15,0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: background 0.3s, opacity 0.4s, transform 0.4s;
}
.uxf-nav.nav-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-20px);
  pointer-events: none;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  white-space: nowrap;
}
.nav-logo span { color: var(--cyan); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(240,238,255,0.5);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }

.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.5;
}

.nav-dropdown {
  display: block;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,5,20,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  list-style: none;
  /* Hidden by default; visibility delay gives time to move mouse down */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0s linear 0.45s;
}
/* Dropdown show/hide is JS-controlled via .nav-dropdown-open class */
.nav-links .has-dropdown .nav-dropdown.nav-dropdown-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.15s ease, visibility 0s linear 0s;
}
.nav-dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--muted);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-dropdown li a:hover { background: var(--card-hover); color: #fff; }

.nav-cta {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: inherit;
}
.nav-cta:hover {
  opacity: 0.85;
  box-shadow: 0 8px 32px rgba(123,47,190,0.4);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: calc(16px + var(--nav-h) + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1260px;
  background: rgba(6,2,15,0.95);
  backdrop-filter: blur(28px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-mobile-menu a:hover { color: #fff; background: var(--card-hover); }
.nav-mobile-menu .mobile-cta {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-top: 8px;
  padding: 14px 16px;
}

/* ── Footer ── */
.uxf-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 60px 80px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {}
.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--cyan); }
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: rgba(240,238,255,0.25);
}

/* ── Typography utilities ── */
.label-pill {
  display: inline-block;
  background: rgba(0,155,200,0.08);
  border: 1px solid rgba(0,155,200,0.2);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--cyan-light) 65%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  font-family: inherit;
  text-decoration: none;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.btn-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gradient:hover::after { opacity: 1; }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(123,47,190,0.35); }
.btn-gradient span { position: relative; z-index: 1; }
.btn-gradient i { position: relative; z-index: 1; }

.btn-glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(240,238,255,0.85);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--border-cyan);
  color: #fff;
}

.btn-cyan {
  background: var(--cyan);
  color: #fff;
}
.btn-cyan:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,155,200,0.35);
}

/* ── Cards ── */
.glass-card {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(123,47,190,0.06), rgba(0,155,200,0.06));
  opacity: 0;
  transition: opacity 0.35s;
}

.glass-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.glass-card:hover::before { opacity: 1; }

.icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-cyan { background: rgba(0,155,200,0.12); color: var(--cyan); }
.icon-green { background: rgba(37,211,102,0.12); color: #25D366; }
.icon-purple { background: rgba(168,85,247,0.12); color: var(--purple-light); }
.icon-orange { background: rgba(249,115,22,0.12); color: #F97316; }
.icon-blue { background: rgba(59,130,246,0.12); color: #3B82F6; }

/* ── Feature list ── */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.feat-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.feat-item:hover {
  border-color: var(--border-cyan);
  background: rgba(0,155,200,0.04);
}

.feat-item-icon {
  color: var(--cyan);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.feat-item-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.feat-item-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Sections ── */
.section {
  padding: 120px 80px;
  position: relative;
  z-index: 1;
}

.section-sm { padding: 80px; }

.section-dark {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

.section-header { max-width: 680px; margin-bottom: 64px; }
.section-header-center { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.section-header-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-2-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* ── Hero ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-section.center {
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(240,238,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.live-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: live-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

/* ── Mini cards / pills ── */
.mini-cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 52px;
}

.mini-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}
.mini-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-3px);
}
.mini-card-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.mini-card-label { font-size: 11px; color: var(--muted); margin-bottom: 2px; }
.mini-card-value { font-size: 14px; font-weight: 700; color: #fff; }

/* ── Chat mockup ── */
.chat-mockup {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.chat-header-bar {
  background: rgba(0,155,200,0.06);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-dots { display: flex; gap: 7px; }
.chat-dot { width: 10px; height: 10px; border-radius: 50%; }
.chat-dot-r { background: #FF5F57; }
.chat-dot-y { background: #FFBD2E; }
.chat-dot-g { background: #28CA41; }
.chat-bar-title { font-size: 13px; color: var(--muted); font-weight: 500; }
.chat-live { font-size: 11px; color: #25D366; display: flex; align-items: center; gap: 6px; }
.chat-live::before { content:''; width:6px;height:6px;background:#25D366;border-radius:50%;animation:live-pulse 1.5s infinite; }

.chat-body { padding: 20px; }
.chat-msg { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-end; }
.chat-msg.right { flex-direction: row-reverse; }
.chat-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.chat-bubble {
  max-width: 72%;
  padding: 11px 15px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
}
.chat-bubble-ai {
  background: rgba(0,155,200,0.1);
  border: 1px solid rgba(0,155,200,0.15);
  border-bottom-left-radius: 4px;
}
.chat-bubble-user {
  background: rgba(123,47,190,0.15);
  border: 1px solid rgba(123,47,190,0.2);
  border-bottom-right-radius: 4px;
  color: rgba(240,238,255,0.85);
}
.chat-bubble-success {
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.18);
  color: #25D366;
}
.chat-time { font-size: 10px; color: rgba(240,238,255,0.25); margin-top: 4px; }

/* ── CTA section ── */
.cta-band {
  text-align: center;
  padding: 140px 80px;
  position: relative;
  z-index: 1;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(123,47,190,0.1) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

/* ── Customer logos ── */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.logo-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  min-width: 120px;
}
.logo-item:hover { border-color: var(--border-cyan); }
.logo-item img { max-height: 36px; width: auto; filter: brightness(0) invert(0.6); transition: filter 0.3s; }
.logo-item:hover img { filter: brightness(0) invert(1); }

/* ── Testimonial ── */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-stars { color: #FBBF24; font-size: 18px; margin-bottom: 24px; letter-spacing: 4px; }
.testimonial-quote {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(240,238,255,0.85);
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-cyan);
}
.testimonial-name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.testimonial-role { font-size: 13px; color: var(--muted); }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 80px 80px;
  position: relative;
  z-index: 1;
}

.page-hero-inner {
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb-sep { font-size: 10px; opacity: 0.4; }

/* ── Integration grid ── */
.integration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.int-tag {
  background: rgba(0,155,200,0.07);
  border: 1px solid rgba(0,155,200,0.15);
  color: var(--cyan);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Stat block ── */
.stat-row { display: flex; gap: 48px; flex-wrap: wrap; }
.stat-block { display: flex; flex-direction: column; gap: 4px; }
.stat-number { font-size: 40px; font-weight: 800; color: var(--cyan); letter-spacing: -2px; line-height: 1; }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 400; }

/* ── Process steps ── */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }

.step-num {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,155,200,0.08);
  border: 1px solid rgba(0,155,200,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
}

.step-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* ── Scroll reveal JS helper ── */
.reveal-init { opacity: 0; transform: translateY(24px); }

/* ── Book meeting page ── */
.calendly-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  min-height: 700px;
}

/* ── Privacy policy ── */
.prose {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.prose h2 { font-size: 24px; font-weight: 700; margin: 40px 0 16px; color: #fff; }
.prose h3 { font-size: 18px; font-weight: 600; margin: 28px 0 12px; color: rgba(240,238,255,0.85); }
.prose p { margin-bottom: 16px; color: var(--muted); font-size: 15px; }
.prose ul { padding-left: 24px; margin-bottom: 16px; color: var(--muted); font-size: 15px; }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--cyan); }
.prose a:hover { text-decoration: underline; }

/* ═══════════════════
   RESPONSIVE
   ═══════════════════ */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  .uxf-footer { padding: 60px 40px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-section { padding-left: 40px; padding-right: 40px; }
  .page-hero { padding-left: 40px; padding-right: 40px; }
  .cta-band { padding: 100px 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .uxf-nav {
    width: calc(100% - 32px);
    padding: 0 18px;
    top: 10px;
  }

  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; align-items: center; gap: 6px; }

  .nav-mobile-menu {
    width: calc(100% - 32px);
    top: calc(10px + var(--nav-h) + 8px);
  }

  .section { padding: 64px 24px; }
  .section-sm { padding: 48px 24px; }
  .hero-section { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 60px; }
  .cta-band { padding: 80px 24px; }
  .uxf-footer { padding: 60px 24px 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .grid-2-split { grid-template-columns: 1fr; gap: 48px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  .page-title { letter-spacing: -1px; }
  .section-title { letter-spacing: -0.8px; }

  .cta-row { flex-direction: column; align-items: center; }
  .stat-row { gap: 28px; }

  .mini-cards { flex-direction: column; }
  .mini-card { width: 100%; }

  .testimonial-card { padding: 32px 24px; }

  .hero-section.center { padding-top: calc(var(--nav-h) + 60px); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}
