/* ============================================
   SINERGIO SYSTEMS — SHARED STYLES
   Used across index, receptionist, media pages
============================================ */

:root {
  --bg: #1e2330;
  --bg-up: #252b3a;
  --bg-surface: #1a1f2c;
  --text-h: #e4e7ed;
  --text-body: #a8afc0;
  --text-muted: #6d7590;
  --border: rgba(255,255,255,0.07);
  --border-hi: rgba(255,255,255,0.13);
  --border-hover: rgba(39,118,209,0.3);
  --accent: #2776d1;
  --accent-dim: #1f65b5;
  --accent-bright: #3a8be0;
  --accent-glow: rgba(39,118,209,0.12);
  --accent-bg: rgba(39,118,209,0.08);
  --coral: #ff7b6b;
  --violet: #9b7dff;
  --amber: #ffc145;
  --teal: #2dd4bf;
  --mint: #4ade80;
  --glass-bg: rgba(38,46,62,0.55);
  --glass-border: rgba(255,255,255,0.09);
  --glass-shine: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 40%, transparent 60%);
  --glass-shadow:
    0 8px 32px rgba(0,0,0,0.25),
    0 2px 8px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.06);
  --glass-shadow-up:
    0 24px 64px rgba(0,0,0,0.35),
    0 8px 20px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Outfit', sans-serif;
  --font-s: 'Source Serif 4', Georgia, serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; overflow-x:hidden; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ===== AMBIENT BACKGROUND GRADIENT — static ===== */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(39,118,209,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(155,125,255,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 80%, rgba(45,212,191,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(255,193,69,0.04) 0%, transparent 45%);
}
@keyframes ambientDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(20px, -25px) scale(0.97); }
}

/* ===== SCROLL REVEALS ===== */
.rv { opacity:0; transform:translateY(50px); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rv.v { opacity:1; transform:translateY(0); }
.rl { opacity:0; transform:translateX(-70px); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rl.v { opacity:1; transform:translateX(0); }
.rr { opacity:0; transform:translateX(70px); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rr.v { opacity:1; transform:translateX(0); }
.rs { opacity:0; transform:scale(.92); transition:opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.rs.v { opacity:1; transform:scale(1); }
.d1 { transition-delay:.08s; } .d2 { transition-delay:.16s; } .d3 { transition-delay:.24s; }
.d4 { transition-delay:.32s; } .d5 { transition-delay:.4s; } .d6 { transition-delay:.48s; }
.d7 { transition-delay:.56s; } .d8 { transition-delay:.64s; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--violet), var(--teal));
  z-index: 1100;
  width: 0%;
  transition: width .15s linear;
  box-shadow: 0 0 8px rgba(39,118,209,0.6);
}

/* ===== GLASS CARD MIXIN ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.glass::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.glass:hover {
  box-shadow: var(--glass-shadow-up);
  border-color: var(--border-hi);
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(30,35,48,0.75);
  border-bottom: 1px solid var(--border);
  transition: all .4s;
  min-height: 70px;
}
nav.scrolled {
  padding: .8rem 3rem;
  background: rgba(30,35,48,0.92);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  min-height: 60px;
}
.n-logo {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
}
.n-logo img { height: 52px; width: auto; display: block; transition: all .4s; }
nav.scrolled .n-logo img { height: 44px; }
.n-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  position: absolute;
  right: 3rem;
}
.n-links .mobile-only { display: none; }
.n-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: color .3s;
  position: relative;
}
.n-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .35s cubic-bezier(.22,1,.36,1);
}
.n-links a:hover { color: var(--text-h); }
.n-links a:hover::after { width: 100%; }
.n-links a.active { color: var(--text-h); }
.n-links a.active::after { width: 100%; }
.n-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: .5rem 1.3rem;
  border-radius: 8px;
  font-weight: 700;
  transition: all .3s !important;
}
.n-cta::after { display: none !important; }
.n-cta:hover { background: var(--accent-dim) !important; transform: translateY(-1px); }

/* ===== SHARED STRUCTURE ===== */
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 3rem; }
section { padding: 4rem 0; }

.eyebrow {
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: .8rem;
}

.heading {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-h);
  letter-spacing: -.8px;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

.heading em,
h1 em,
h2 em,
h3 em {
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #7fa8d6;
  animation: none;
  padding: 0;
}
@keyframes shimmer {
  0% { background-position: 100% 50%; }
  50% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

/* ===== HERO ===== */
.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 7rem 3rem 5rem;
  position: relative;
  overflow: visible;
}

.hero-glow {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 750px;
  height: 750px;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(39,118,209,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 35%, rgba(155,125,255,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 75%, rgba(255,193,69,0.04) 0%, transparent 50%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
@keyframes glowDrift {
  0%, 100% { transform: translate(0,0) rotate(0deg); }
  33% { transform: translate(-25px, 18px) rotate(2deg); }
  66% { transform: translate(18px, -12px) rotate(-1deg); }
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fu .7s .2s forwards;
}
.hero-tag .pip {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(1.95rem, 3.6vw, 2.95rem);
  font-weight: 800;
  color: var(--text-h);
  line-height: 1.13;
  letter-spacing: -1px;
  margin-bottom: 1.1rem;
  max-width: 620px;
  opacity: 0;
  animation: fu .7s .35s forwards;
  text-shadow: 0 3px 10px rgba(0,0,0,0.55);
}

.hero-p {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 1.7rem;
  opacity: 0;
  animation: fu .7s .5s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu .7s .65s forwards;
}
@media (max-width: 500px) {
  .hero-btns { gap: .6rem; flex-wrap: nowrap; }
  .hero-btns .btn-a, .hero-btns .btn-b {
    padding: .75rem 1rem;
    font-size: .82rem;
    white-space: nowrap;
  }
}

.btn-a {
  background: var(--accent);
  color: var(--bg);
  padding: .9rem 2rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-h);
  transition: all .3s;
  box-shadow: 0 3px 8px rgba(39,118,209,0.45);
  position: relative;
  overflow: hidden;
}
.btn-a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-a:hover { background: var(--accent-dim); transform: translateY(-2px); box-shadow: 0 5px 14px rgba(39,118,209,0.55); }
.btn-a:hover::after { left: 130%; }

.btn-b {
  color: var(--text-h);
  padding: .9rem 1.6rem;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  font-family: var(--font-h);
  transition: all .3s;
  background: transparent;
  cursor: pointer;
}
.btn-b:hover { border-color: var(--accent); color: var(--accent); }

@keyframes fu {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== HERO FLOATING CARDS ===== */
.hero-vis {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 480px;
  z-index: 1;
  opacity: 0;
  animation: fu .9s .8s forwards;
}
.fl-card {
  position: absolute;
  padding: 1.2rem 1.5rem;
  background: rgba(38,46,62,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.3),
    0 2px 8px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  animation: bob 6s ease-in-out infinite;
  overflow: hidden;
  min-width: 240px;
}
.fl-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 30%, transparent 60%);
  pointer-events: none;
}
.fl-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}
.fc1 { top: 8%; left: 0; animation-delay: 0s; z-index: 3; }
.fc2 { top: 40%; right: 0; animation-delay: -2s; z-index: 2; }
.fc3 { bottom: 5%; left: 15%; animation-delay: -4s; z-index: 1; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fc-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.fc-t {
  font-weight: 700;
  font-size: .82rem;
  color: var(--text-h);
  margin-bottom: .2rem;
  position: relative;
  z-index: 2;
}
.fc-s { font-size: .75rem; color: var(--text-muted); position: relative; z-index: 2; }

/* ===== PROBLEM CARDS ===== */
.prob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.p-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.p-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.p-card:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hover); }
.p-bar { width: 40px; height: 4px; border-radius: 2px; margin-bottom: 1.2rem; position: relative; z-index: 2; }
.p-bar.b1 { background: var(--accent); }
.p-bar.b2 { background: var(--coral); }
.p-bar.b3 { background: var(--violet); }
.p-bar.b4 { background: var(--amber); }
.p-bar.b5 { background: var(--teal); }
.p-bar.b6 { background: var(--mint); }
.p-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .55rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.p-card p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 5px rgba(0,0,0,0.45);
}

/* ===== FEATURE CARDS (used on receptionist + media pages) ===== */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 2rem 1.7rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.feat-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.feat-card:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hover); }
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(39,118,209,0.2);
}
.feat-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .6rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.feat-card p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

/* ===== PROCESS TRACK ===== */
.proc-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.proc-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 7%;
  width: 86%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--violet));
  opacity: .15;
  border-radius: 1px;
}
.stp { text-align: center; padding: 0 2rem; position: relative; }
.stp-dot {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 1.2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--accent);
  position: relative;
  z-index: 2;
  transition: all .6s cubic-bezier(.22,1,.36,1);
}
.stp-dot::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.stp.lit .stp-dot {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(39,118,209,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.stp:hover .stp-dot {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(39,118,209,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}
.stp h3 {
  font-family: var(--font-h);
  font-size: .98rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .4rem;
}
.stp p { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* ===== STATS ===== */
.stat-bar {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  padding: 3.5rem 3rem;
  margin: 0 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.stat-bar::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 24px;
  background: var(--glass-shine);
  pointer-events: none;
}
.stat-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--violet), var(--coral), var(--amber));
  border-radius: 24px 24px 0 0;
}
.st { text-align: center; position: relative; z-index: 2; }
.st-n {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-h);
  line-height: 1.1;
  margin-bottom: .3rem;
  letter-spacing: -1px;
  text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}
.st-l { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* ===== PRICING ===== */
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.price-row.four-col { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }

.pc {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 1.8rem 1.5rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}
.pc .pc-btn { margin-top: auto; }
.pc::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 22px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.pc:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hi); }
.pc.pop {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(39,118,209,0.08) 0%, var(--glass-bg) 40%);
  box-shadow: var(--glass-shadow), 0 0 30px rgba(39,118,209,0.06);
}
/* Subtle diagonal shimmer — top-left to bottom-right, ~10s cycle */
.pc.pop::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 60%;
  height: 200%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.04) 45%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.04) 55%, transparent 100%);
  transform: translateX(-100%) rotate(0deg);
  animation: popShimmer 10s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes popShimmer {
  0%, 80% { transform: translate(-100%, -25%); opacity: 0; }
  85% { opacity: 1; }
  95% { opacity: 1; }
  100% { transform: translate(300%, -25%); opacity: 0; }
}
.pop-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .3rem .85rem;
  border-radius: 6px;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(39,118,209,0.35);
}
/* Give all cards in a row equal top space so 'Most Popular' fits without clipping content */
.price-row .pc { padding-top: 3.2rem; }
.pc-tier {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: .6rem;
  position: relative;
  z-index: 2;
}
.price-row.four-col .pc-tier { text-align: center; }
.pc-price {
  font-family: var(--font-h);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-h);
  margin-bottom: 0;
  letter-spacing: -.5px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.pc-price span {
  display: inline;
  margin-left: .4rem;
  font-size: .45em;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}
.pc-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 1.2rem 0;
  position: relative;
  z-index: 2;
}
.pc-desc {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}
.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .87rem;
  color: var(--text-body);
}
.pc-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.pc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: .8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .3s;
  font-family: var(--font-h);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.pc-ongoing {
  font-size: .8rem;
  color: var(--accent);
  margin-top: .8rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-weight: 500;
}
.pc.pop .pc-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  box-shadow: 0 4px 14px rgba(39,118,209,0.2);
}
.pc.pop .pc-btn:hover { background: var(--accent-dim); transform: translateY(-1px); }
.pc:not(.pop) .pc-btn {
  background: transparent;
  color: var(--text-h);
  border: 1.5px solid var(--border);
}
.pc:not(.pop) .pc-btn:hover { border-color: var(--accent); color: var(--accent); }
.pc-add-on {
  margin-top: 1rem;
  padding: .7rem .9rem;
  background: rgba(39,118,209,0.05);
  border: 1px dashed rgba(39,118,209,0.25);
  border-radius: 10px;
  font-size: .8rem;
  color: var(--text-body);
  position: relative;
  z-index: 2;
}
.pc-add-on strong { color: var(--accent); font-weight: 600; }

/* ===== VERTICALS / CHIPS ===== */
.v-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3rem; }
.v-chip {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.3rem 1rem;
  text-align: center;
  box-shadow: var(--glass-shadow);
  transition: all .45s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.v-chip::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: var(--glass-shine);
  pointer-events: none;
}
.v-chip:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hover); }
.v-em { font-size: 1.6rem; margin-bottom: .4rem; display: block; position: relative; z-index: 2; }
.v-nm { font-size: .88rem; font-weight: 600; color: var(--text-h); position: relative; z-index: 2; }

/* ===== CTA BOX ===== */
.cta-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 4rem 3rem;
  text-align: center;
  margin: 0 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 28px;
  background: var(--glass-shine);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 160%;
  height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(39,118,209,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box .heading { max-width: 600px; margin: 0 auto .8rem; position: relative; z-index: 2; }
.cta-box .sub { margin: 0 auto 2.5rem; text-align: center; position: relative; z-index: 2; }
.cta-box .eyebrow { position: relative; z-index: 2; }

.btn-glow {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-h);
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(39,118,209,0.3);
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.btn-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-glow:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(39,118,209,0.4);
}
.btn-glow:hover::after { left: 130%; }

.cta-email {
  margin-top: 1.2rem;
  font-size: .85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
}
.cta-email a { color: var(--accent); text-decoration: none; }

/* ===== FOOTER ===== */
footer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 3rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1.5rem;
}
.f-logo img { height: 36px; width: auto; display: block; }
.f-links { display: flex; gap: 1.5rem; list-style: none; }
.f-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
}
.f-links a:hover { color: var(--text-h); }
.f-copy { font-size: .8rem; color: var(--text-muted); }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-h);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity .3s ease;
}
.menu-overlay.active { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-content { max-width: 100%; }
}
@media (max-width: 900px) {
  nav { padding: .9rem 1.5rem; }
  nav.scrolled { padding: .7rem 1.5rem; }
  .n-logo { position: static; transform: none; }
  .n-logo img { height: 42px; }
  nav.scrolled .n-logo img { height: 38px; }
  .hamburger { display: block; margin-left: auto; }
  .n-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: rgba(20,24,34,0.98);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    gap: 0;
    transition: right .4s cubic-bezier(.22,1,.36,1);
    align-items: flex-start;
    border-left: 1px solid var(--border);
  }
  .n-links.open { right: 0; }
  .n-links li { width: 100%; }
  .n-links .mobile-only { display: block; }
  .n-links a {
    display: block;
    padding: 1rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }
  .n-links a::after { display: none; }
  .n-cta {
    margin-top: 1rem;
    text-align: center;
    border-bottom: none !important;
  }
  .wrap { padding: 0 1.5rem; }
  section { padding: 3.5rem 0; }
  .hero { padding: 6rem 1.5rem 4rem; min-height: 80vh; }
  .prob-grid, .feat-grid, .heads-row, .price-row, .price-row.four-col { grid-template-columns: 1fr; }
  .proc-track { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .proc-track::before { display: none; }
  .v-grid { grid-template-columns: 1fr 1fr; }
  .stat-bar { grid-template-columns: 1fr 1fr; padding: 2.5rem 2rem; margin: 0 1.5rem; gap: 2rem 1rem; }
  .cta-box { padding: 3rem 1.5rem; margin: 0 1.5rem; }
  footer { padding: 2.5rem 1.5rem; flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .proc-track, .v-grid, .stat-bar { grid-template-columns: 1fr; }
}

/* ===== RECEPTIONIST PAGE — LANGUAGE MARQUEE ===== */
.lang-showcase {
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.lang-headline {
  text-align: center;
  margin-bottom: 3rem;
}
.lang-stat {
  display: inline-flex;
  align-items: baseline;
  gap: .8rem;
  margin-bottom: 1rem;
}
.lang-stat-num {
  font-family: var(--font-h);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #7fa8d6;
  letter-spacing: -2px;
  line-height: 1;
}
.lang-stat-lbl {
  font-size: 1.05rem;
  color: var(--text-h);
  font-weight: 500;
}
.lang-substat {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
}
.lang-substat span {
  font-size: .85rem;
  color: var(--text-muted);
  padding: .35rem .9rem;
  background: var(--accent-bg);
  border: 1px solid rgba(39,118,209,0.2);
  border-radius: 20px;
}

.marquee-wrapper {
  position: relative;
  margin: 2rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee {
  display: flex;
  width: max-content;
  gap: .9rem;
  animation: marqueeScroll 50s linear infinite;
}
.marquee-2 {
  animation: marqueeScroll 60s linear infinite reverse;
  animation-delay: -2s;
  margin-top: .9rem;
}
.lang-pill {
  flex-shrink: 0;
  padding: .85rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  min-width: 130px;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.lang-pill::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  background: var(--glass-shine);
  pointer-events: none;
}
.lang-native {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-h);
  white-space: nowrap;
}
.lang-en {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== VOICE FEATURE GRID ===== */
.voice-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.vf-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: all .5s cubic-bezier(.22,1,.36,1);
}
.vf-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  background: var(--glass-shine);
  pointer-events: none;
}
.vf-card:hover { box-shadow: var(--glass-shadow-up); border-color: var(--border-hover); }
.vf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  border: 1px solid rgba(39,118,209,0.2);
  position: relative;
  z-index: 2;
}
.vf-content { position: relative; z-index: 2; }
.vf-card h3 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .4rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.vf-card p {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== MEDIA PAGE — SERVICE TILES ===== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.svc-tile {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem 1.7rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: all .55s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
}
.svc-tile::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.svc-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 20px 20px;
  opacity: .8;
}
.svc-tile.t1::after { background: linear-gradient(90deg, var(--accent), var(--violet)); }
.svc-tile.t2::after { background: linear-gradient(90deg, var(--violet), var(--coral)); }
.svc-tile.t3::after { background: linear-gradient(90deg, var(--coral), var(--amber)); }
.svc-tile.t4::after { background: linear-gradient(90deg, var(--amber), var(--mint)); }
.svc-tile.t5::after { background: linear-gradient(90deg, var(--mint), var(--teal)); }
.svc-tile.t6::after { background: linear-gradient(90deg, var(--teal), var(--accent)); }
.svc-tile:hover {
  box-shadow: var(--glass-shadow-up);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.svc-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(39,118,209,0.2);
}
.svc-tile h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .55rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.svc-tile p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

/* ===== INQUIRE BOX (custom-quote prompt on Media page) ===== */
.inquire-box {
  margin-top: 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px dashed rgba(39,118,209,0.4);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.inquire-box::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 20px;
  background: var(--glass-shine);
  pointer-events: none;
}
.inquire-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid rgba(39,118,209,0.2);
  padding: .35rem .9rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.inquire-box h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .6rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.inquire-box p {
  font-size: .95rem;
  color: var(--text-body);
  max-width: 540px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* ===== APPROACH GRID (used on main page) ===== */
.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}
.approach-txt p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.approach-txt strong { color: var(--text-h); font-weight: 600; }
.a-diagram { display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.a-box {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: .9rem 1.6rem;
  box-shadow: var(--glass-shadow);
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-h);
  text-align: center;
  min-width: 155px;
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.a-box::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  background: var(--glass-shine);
  pointer-events: none;
}
.a-box:hover { transform: translateY(-4px); box-shadow: var(--glass-shadow-up); }
.a-box.core {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(39,118,209,0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}
.a-line {
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, var(--accent), rgba(39,118,209,0.15));
  border-radius: 1px;
}
.a-row { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }

/* ===== TWO-HEADS / SPLIT (used on main page) ===== */
.heads-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.h-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
}
.h-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%);
  border-radius: 22px 22px 0 0;
  pointer-events: none;
  z-index: 1;
}
.h-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hover);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}
.h-num {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(39,118,209,0.18);
  position: absolute;
  top: .8rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 2px 10px rgba(39,118,209,0.15);
}
.h-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-bg);
  padding: .3rem .8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(39,118,209,0.2);
}
.h-card h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .8rem;
  letter-spacing: -.3px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.h-card > p {
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}
.h-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  position: relative;
  z-index: 2;
}
.h-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-body);
}
.h-list li .ck {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  color: var(--accent);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .voice-feat-grid, .svc-grid { grid-template-columns: 1fr; }
  .heads-row { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================
   ADDITIONS — circuit BG, bigger tagline,
   section hub, mobile floating cards
============================================ */

/* ===== CIRCUIT BOARD BACKGROUND (subtle, behind everything) ===== */
.circuit-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.10;
  background-image: url("circuit-bg.png");
  background-repeat: repeat;
  background-size: 1408px 768px;
}

/* Make sure ambient sits above circuit but below content */
.ambient-bg {
  z-index: -1;
}

/* ===== BIGGER, MORE PROMINENT TAGLINE ===== */
.hero-tagline {
  font-family: var(--font-h);
  font-size: clamp(.95rem, 1.8vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.2px;
  color: var(--text-h);
  margin-bottom: 1.4rem;
  max-width: none;
  white-space: nowrap;
  opacity: 0;
  animation: fu .7s .25s forwards;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-tagline em,
.hero-tagline b {
  font-family: var(--font-h);
  font-style: normal;
  font-weight: 700;
  color: var(--text-h);
  -webkit-text-fill-color: var(--text-h);
  background: none;
  animation: none;
}
.hero-tagline-pip {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: .8rem;
  vertical-align: middle;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}
@media (max-width: 700px) {
  .hero-tagline {
    white-space: normal;
    font-size: 1rem;
  }
}

/* ===== SECTION HUB CARDS (homepage only — below hero) ===== */
.hub-section {
  padding: 4rem 0 5rem;
  position: relative;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.5rem;
}
.hub-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 2.2rem 1.9rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: all .55s cubic-bezier(.22,1,.36,1);
  transform-style: preserve-3d;
  cursor: pointer;
}
.hub-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 22px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
.hub-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  opacity: .9;
  transition: height .35s ease;
}
.hub-card.h1::after { background: linear-gradient(90deg, var(--accent), var(--violet)); }
.hub-card.h2::after { background: linear-gradient(90deg, var(--teal), var(--accent), var(--violet)); }
.hub-card.h3::after { background: linear-gradient(90deg, var(--coral), var(--amber), var(--violet)); }
.hub-card:hover {
  box-shadow: var(--glass-shadow-up);
  border-color: var(--border-hover);
  transform: translateY(-6px);
}
.hub-card:hover::after { height: 6px; }
.hub-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(39,118,209,0.2);
}
.hub-card h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: .55rem;
  position: relative;
  z-index: 2;
  letter-spacing: -.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hub-card p {
  font-size: .92rem;
  color: var(--text-body);
  line-height: 1.65;
  position: relative;
  z-index: 2;
  margin-bottom: 1.4rem;
}
.hub-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  position: relative;
  z-index: 2;
  margin-top: auto;
  transition: gap .3s ease;
}
.hub-cta::after {
  content: '→';
  transition: transform .3s ease;
}
.hub-card:hover .hub-cta { gap: .8rem; }
.hub-card:hover .hub-cta::after { transform: translateX(4px); }

/* ===== MOBILE FIXES — keep floating cards visible ===== */
@media (max-width: 1200px) {
  /* Stack hero content + visuals vertically instead of hiding */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
    margin-bottom: 3rem;
  }
  .hero-vis {
    display: block !important;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 460px;
    height: 380px;
    margin: 1rem auto 2rem;
    align-self: center;
  }
}
@media (max-width: 900px) {
  .hub-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .hub-card { min-height: auto; padding: 1.8rem 1.5rem; }

  .hero { padding: 6rem 1.5rem 2rem; }
  .hero-vis {
    height: 360px;
    max-width: 100%;
    margin: 0.5rem 0 1rem;
  }
  /* Reposition the floating cards so they fit a phone screen */
  .fc1 { top: 0; left: 0; right: auto; }
  .fc2 { top: 130px; right: 0; left: auto; }
  .fc3 { top: 250px; left: 8%; right: auto; bottom: auto; }
  .fl-card { min-width: 220px; padding: 1rem 1.2rem; }
}
@media (max-width: 500px) {
  .hero-vis { height: 340px; }
  .fl-card { min-width: 200px; padding: .9rem 1.1rem; }
  .fc1 { left: 0; }
  .fc2 { right: 0; left: auto; }
  .fc3 { left: 5%; }
  .hero-tagline { font-size: 1rem; }
}

/* ===== SECTION STRIP — 3 main page links, prominently below header ===== */
.section-strip {
  padding: 6rem 0 3rem;
  position: relative;
  z-index: 5;
}
.strip-grid {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
}
.strip-link {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 1rem 1rem;
  min-height: 88px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  box-shadow: var(--glass-shadow);
  text-align: center;
  border-bottom: 2px solid transparent;
}
.strip-link::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 14px;
  background: var(--glass-shine);
  pointer-events: none;
  z-index: 1;
}
/* Soft accent glow that appears on hover */
.strip-link::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 65%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity .5s ease;
  filter: blur(8px);
}
.strip-link.s2::after { background: radial-gradient(ellipse at center, var(--teal) 0%, transparent 65%); }
.strip-link.s3::after { background: radial-gradient(ellipse at center, var(--coral) 0%, transparent 65%); }

.strip-link:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glass-shadow-up);
  transform: translateY(-3px);
}
.strip-link:hover::after { opacity: 0.18; }
.strip-link.s1:hover { border-bottom-color: var(--accent); }
.strip-link.s2:hover { border-bottom-color: var(--teal); }
.strip-link.s3:hover { border-bottom-color: var(--coral); }

.strip-link.active {
  border-color: var(--accent);
  background: rgba(39,118,209,0.10);
}
.strip-link.active::after { opacity: 0.15; }
.strip-link.s1.active { border-bottom-color: var(--accent); }
.strip-link.s2.active { border-bottom-color: var(--teal); }
.strip-link.s3.active { border-bottom-color: var(--coral); }

.strip-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(39,118,209,0.22);
  color: var(--accent-bright);
  position: relative;
  z-index: 3;
  transition: all .35s cubic-bezier(.22,1,.36,1);
}
.strip-svg { color: var(--accent-bright); }
.strip-link:hover .strip-icon { transform: scale(1.06); }
.strip-icon.phone-green {
  filter: hue-rotate(105deg) saturate(1.4);
}
.strip-content {
  position: relative;
  z-index: 3;
  text-align: center;
}
.strip-name {
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-h);
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
  display: block;
  letter-spacing: -.1px;
}

@media (max-width: 900px) {
  .section-strip { padding: 5.5rem 0 2rem; }
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 1rem;
    gap: .5rem;
    max-width: none;
  }
  .strip-link {
    padding: .7rem .5rem;
    min-height: 78px;
    gap: .35rem;
  }
  .strip-icon { width: 32px; height: 32px; border-radius: 8px; font-size: 1rem; }
  .strip-name { font-size: .72rem; line-height: 1.2; }
}
@media (max-width: 500px) {
  .strip-grid { gap: .4rem; padding: 0 .8rem; }
  .strip-link {
    padding: .65rem .4rem;
    min-height: 72px;
    border-radius: 12px;
  }
  .strip-icon { width: 28px; height: 28px; border-radius: 7px; font-size: .9rem; }
  .strip-name { font-size: .68rem; }
}

/* When section-strip is present, hero compresses + adds bottom room for floating cards */
.section-strip + .hero {
  padding-top: 4.5rem;
  padding-bottom: 7rem;
  min-height: auto;
}
@media (max-width: 1200px) {
  .section-strip + .hero { padding-top: 3rem; padding-bottom: 2rem; }
}

/* ===== TAGLINE-ACCENT — softly luminous emphasis (no underline, no gradient) ===== */
.tagline-accent {
  font-weight: 700;
  color: var(--text-h);
  text-shadow:
    0 0 8px rgba(58, 139, 224, 0.55),
    0 0 18px rgba(39, 118, 209, 0.35),
    0 2px 8px rgba(0, 0, 0, 0.5);
  padding: 0 2px;
}

/* ===== COMING SOON BADGE on pricing cards ===== */
.pc-coming-soon {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  font-family: var(--font-h);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: .3rem .85rem;
  border-radius: 6px;
  z-index: 3;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}
.pc-btn-disabled {
  display: block;
  width: 100%;
  text-align: center;
  padding: .8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  font-family: var(--font-h);
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
}

/* ===== BACK TO TOP LINK ===== */
.back-to-top-wrap {
  text-align: center;
  padding: 2.5rem 1.5rem 1.5rem;
}
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-h);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: .65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .3s ease;
  cursor: pointer;
}
.back-to-top:hover {
  color: var(--text-h);
  border-color: var(--accent);
  background: rgba(39,118,209,0.10);
  transform: translateY(-2px);
}
.back-to-top-arrow {
  display: inline-block;
  font-size: .9rem;
  transition: transform .3s ease;
}
.back-to-top:hover .back-to-top-arrow {
  transform: translateY(-2px);
}

/* ===== INTRO TAGLINE (above section strip) ===== */
.intro-tagline {
  position: relative;
  z-index: 6;
  text-align: center;
  padding: 6rem 2rem 1.6rem;
  font-family: var(--font-h);
  font-size: clamp(.95rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: var(--text-h);
  letter-spacing: -.1px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fu .7s .15s forwards;
}
.intro-tagline b {
  font-weight: 700;
  color: var(--text-h);
}
.intro-tagline-pip {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: .7rem;
  vertical-align: middle;
  animation: pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 12px var(--accent);
}
/* When intro-tagline is present, strip needs less top padding */
.intro-tagline + .section-strip {
  padding-top: 0;
}
/* And the hero needs to come up tighter */
.intro-tagline + .section-strip + .hero {
  padding-top: 4rem;
}
@media (max-width: 900px) {
  .intro-tagline { padding: 5rem 1.5rem 1.2rem; font-size: .95rem; }
}

/* ===== INLINE DEMO FORM (slides open from button) ===== */
.demo-form-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .55s cubic-bezier(.22,1,.36,1), opacity .35s ease, margin-top .55s cubic-bezier(.22,1,.36,1);
  margin-top: 0;
  width: 100%;
  max-width: 480px;
}
.demo-form-wrap.open {
  max-height: 720px;
  opacity: 1;
  margin-top: 1.5rem;
}
.demo-form {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.demo-form::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 18px;
  background: var(--glass-shine);
  pointer-events: none;
}
.demo-form-title {
  font-family: var(--font-h);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-h);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.demo-form-row {
  position: relative;
  z-index: 2;
  margin-bottom: .9rem;
}
.demo-form-row label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: .7rem .9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-h);
  font-family: var(--font-h);
  font-size: .95rem;
  transition: all .25s ease;
  outline: none;
}
.demo-form textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}
.demo-form input:focus,
.demo-form textarea:focus {
  border-color: var(--accent);
  background: rgba(39,118,209,0.05);
  box-shadow: 0 0 0 3px rgba(39,118,209,0.12);
}
.demo-form input::placeholder,
.demo-form textarea::placeholder { color: var(--text-muted); }
.demo-form-actions {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-top: 1.2rem;
  position: relative;
  z-index: 2;
}
.demo-form-send {
  background: var(--accent);
  color: var(--bg);
  border: none;
  padding: .7rem 1.4rem;
  border-radius: 10px;
  font-family: var(--font-h);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 3px 10px rgba(39,118,209,0.3);
}
.demo-form-send:hover {
  background: var(--accent-dim);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(39,118,209,0.45);
}
.demo-form-cancel {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: .7rem 1rem;
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: color .25s ease;
}
.demo-form-cancel:hover { color: var(--text-h); }
.demo-form-success {
  display: none;
  padding: 1rem;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 10px;
  color: var(--mint);
  font-size: .9rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.demo-form-wrap.sent .demo-form-row,
.demo-form-wrap.sent .demo-form-title,
.demo-form-wrap.sent .demo-form-actions { display: none; }
.demo-form-wrap.sent .demo-form-success { display: block; }

/* Centered demo form (used in pricing sections) */
.demo-form-wrap.demo-form-wrap-centered {
  margin-left: auto;
  margin-right: auto;
}
.demo-form-wrap.demo-form-wrap-centered.open {
  margin-top: 2rem;
}

/* ===== NAV LINK VISIBILITY (desktop vs mobile) ===== */
.nav-mobile-link {
  display: none;
}
@media (max-width: 900px) {
  .nav-mobile-link { display: block; }
  .nav-desktop-cta { display: none; }
}
