/* Queuro — shared site styles */

:root {
  --navy: #0f1d3a;
  --navy-dark: #070d1e;
  --navy-soft: #1b2e54;
  --teal: #0e7c7b;
  --teal-light: #17b8ae;
  --teal-glow: #5fe6dc;
  --violet: #7c6cf0;
  --pink: #ec6fb0;
  --amber: #f5a623;
  --light: #eaf6f5;
  --bg: #f6f8fb;
  --ink: #101828;
  --ink-soft: #4b5768;
  --grey: #6b7280;
  --border: #e5e9f0;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(15, 29, 58, 0.10);
  --shadow-lg: 0 24px 70px rgba(15, 29, 58, 0.16);
  --shadow-sm: 0 2px 12px rgba(15, 29, 58, 0.06);
  --max: 1160px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 0.5em; color: var(--navy); letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Scroll-reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
  font-size: 15px;
  padding: 13px 25px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 55%, #22cabf 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(14, 124, 123, 0.34), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(14, 124, 123, 0.42), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--navy);
  border-color: var(--border);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); background: #fff; }
.btn-on-dark {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.btn-on-dark:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(246, 248, 251, 0.72);
  backdrop-filter: saturate(200%) blur(14px);
  -webkit-backdrop-filter: saturate(200%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(15,29,58,0.06);
  background: rgba(246, 248, 251, 0.92);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18.5px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--teal-glow));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
  transition: 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.18s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { width: 100%; padding: 10px 0; }
  .nav-links a::after { display: none; }
  .nav-actions .btn-ghost { display: none; }
}

/* ---------- Mesh background (hero + page-hero) ---------- */
.mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.mesh span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite alternate;
}
.mesh span:nth-child(1) { width: 480px; height: 480px; top: -160px; left: -80px; background: radial-gradient(circle, var(--teal-glow), transparent 70%); animation-duration: 26s; }
.mesh span:nth-child(2) { width: 420px; height: 420px; top: 40px; right: -120px; background: radial-gradient(circle, var(--violet), transparent 70%); animation-duration: 30s; animation-delay: -6s; }
.mesh span:nth-child(3) { width: 360px; height: 360px; bottom: -180px; left: 30%; background: radial-gradient(circle, var(--pink), transparent 70%); animation-duration: 24s; animation-delay: -12s; }
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.12); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 560px at 12% -12%, #1a3a63 0%, var(--navy) 42%, var(--navy-dark) 100%);
  color: #fff;
  padding: 96px 0 104px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bdf2ee;
  background: rgba(20, 163, 161, 0.16);
  border: 1px solid rgba(20, 163, 161, 0.4);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow .dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-glow);
  box-shadow: 0 0 0 0 rgba(95,230,220,0.7);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(95,230,220,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(95,230,220,0); }
  100% { box-shadow: 0 0 0 0 rgba(95,230,220,0); }
}
.hero h1 {
  color: #fff;
  font-size: 52px;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--teal-glow), #8fe0ff 60%, #b9a6ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  color: #c7d2e2;
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-note { font-size: 13.5px; color: #93a3bd; display: flex; align-items: center; gap: 8px; }
.hero-visual {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  animation: float-y 6s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-visual img { border-radius: 14px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.hero-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 15px 12px;
  text-align: center;
  transition: transform 0.2s var(--ease), background 0.2s ease;
}
.hero-stat:hover { transform: translateY(-3px); background: rgba(255,255,255,0.11); }
.hero-stat strong { display: block; font-size: 21px; color: #fff; background: linear-gradient(120deg,#fff,var(--teal-glow)); -webkit-background-clip: text; background-clip: text; }
.hero-stat span { font-size: 12px; color: #a9b6cc; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
}

/* ---------- Sections ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }
.kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  position: relative;
  padding-left: 18px;
}
.kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 12px; height: 2px;
  background: var(--teal);
  transform: translateY(-50%);
}
.section-head .kicker { padding-left: 0; }
.section-head .kicker::before { display: none; }
.section-head h2 { font-size: 34px; letter-spacing: -0.02em; }
.section-head p { font-size: 16.5px; }
.alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #cdeae7; }
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(14,124,123,0.28);
}
.icon-badge svg { width: 22px; height: 22px; }
.card h3 { font-size: 17.5px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Glass variant ---------- */
.glass {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---------- Logo / trust marquee ---------- */
.marquee-band { background: var(--white); border-bottom: 1px solid var(--border); padding: 26px 0; overflow: hidden; }
.marquee-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }
.marquee-track { display: flex; width: max-content; gap: 56px; animation: marquee 26s linear infinite; }
.marquee-track span {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  opacity: 0.55;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Feature rows (Features page) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 38px 0;
  border-top: 1px solid var(--border);
}
.feature-row:first-of-type { border-top: none; }
.feature-row h3 { font-size: 21px; margin-bottom: 4px; }
.feature-row .tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--light);
  padding: 5px 10px;
  border-radius: 999px;
}
.feature-list { display: grid; gap: 16px; }
.feature-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, transform 0.2s ease;
}
.feature-item:hover { background: var(--light); transform: translateX(4px); }
.feature-item .dot {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  box-shadow: 0 4px 10px rgba(14,124,123,0.3);
}
.feature-item .dot svg { width: 12px; height: 12px; }
.feature-item h4 { font-size: 15.5px; margin: 0 0 4px; color: var(--navy); }
.feature-item p { font-size: 14px; margin: 0; }
@media (max-width: 760px) {
  .feature-row { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .pricing-grid-3 { grid-template-columns: 1fr; } }

.region-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 32px;
}
.region-toggle button {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: 0.2s ease;
}
.region-toggle button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.soon-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #B8860B;
  background: #FFF6E5;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

.founder-banner {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  color: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}
.founder-banner h4 { font-size: 16px; margin-bottom: 4px; }
.founder-banner p { font-size: 13.5px; color: #cfe0df; margin: 0; }

.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.featured {
  border-color: var(--teal);
  box-shadow: 0 18px 46px rgba(14,124,123,0.22);
  transform: translateY(-8px);
  background: linear-gradient(180deg, #fff 0%, #f3fbfa 100%);
}
.plan.featured:hover { transform: translateY(-12px); }
.plan .badge {
  position: absolute;
  top: -13px; left: 26px;
  background: linear-gradient(120deg, var(--teal), var(--teal-light));
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 13px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(14,124,123,0.35);
}
.plan h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal); margin-bottom: 6px; }
.plan .price { font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 2px; letter-spacing: -0.02em; }
.plan .price span { font-size: 14px; font-weight: 600; color: var(--grey); }
.plan .seats { font-size: 13px; color: var(--grey); margin-bottom: 20px; }
.plan ul { display: grid; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan li { display: flex; gap: 9px; font-size: 13.8px; color: var(--ink-soft); }
.plan li svg { width: 15px; height: 15px; min-width: 15px; color: var(--teal); margin-top: 3px; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
  box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 15px 17px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th { background: var(--navy); color: #fff; font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--light); }
.compare-table tr:hover td { background: #e2f4f2; }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 19px 22px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: #cdeae7; box-shadow: var(--shadow-sm); }
.faq-item h4 { font-size: 15.5px; margin-bottom: 6px; color: var(--navy); }
.faq-item p { font-size: 14px; margin: 0; }

/* ---------- Trust / stats strip ---------- */
.trust-strip {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.trust-grid .item { display: flex; gap: 14px; }
.trust-grid .item svg { width: 26px; height: 26px; min-width: 26px; color: var(--teal-glow); margin-top: 2px; }
.trust-grid h4 { color: #fff; font-size: 15.5px; margin-bottom: 4px; }
.trust-grid p { color: #b9c4d8; font-size: 13.8px; margin: 0; }
@media (max-width: 760px) { .trust-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 60%, #24406e 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60%; right: -10%;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(95,230,220,0.35), transparent 70%);
  filter: blur(10px);
}
.cta-band h2 { color: #fff; font-size: 28px; margin-bottom: 8px; position: relative; }
.cta-band p { color: #c7d2e2; margin: 0; position: relative; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

/* ---------- Timeline (About) ---------- */
.timeline { border-left: 2px solid var(--border); padding-left: 26px; display: grid; gap: 30px; }
.timeline .step { position: relative; }
.timeline .step::before {
  content: "";
  position: absolute;
  left: -33px; top: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border: 3px solid var(--light);
  box-shadow: 0 0 0 3px rgba(14,124,123,0.12);
}
.timeline h4 { font-size: 15.5px; margin-bottom: 4px; color: var(--navy); }
.timeline p { font-size: 14.3px; margin: 0; }

/* ---------- Values grid ---------- */
.value { padding: 4px 0; }
.value h4 { font-size: 16px; margin-bottom: 6px; }
.value p { font-size: 14px; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 19px; margin-bottom: 10px; }
.contact-row { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--border); }
.contact-row:first-of-type { border-top: none; }
.contact-row .icon-badge { margin: 0; width: 40px; height: 40px; border-radius: 11px; }
.contact-row .icon-badge svg { width: 18px; height: 18px; }
.contact-row strong { display: block; font-size: 14px; color: var(--navy); }
.contact-row span { font-size: 13.5px; color: var(--grey); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #b9c4d8; padding: 58px 0 28px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: #fff; font-size: 16px; margin-bottom: 12px; }
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer-col h5 { color: #fff; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 13.8px; color: #b9c4d8; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--teal-glow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.8px;
  color: #7f8cab;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy) 0%, #1a3159 100%);
  color: #fff;
  padding: 72px 0 68px;
  text-align: center;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .kicker { color: #7fd6d4; }
.page-hero .kicker::before { background: #7fd6d4; }
.page-hero h1 { color: #fff; font-size: 42px; margin-bottom: 14px; letter-spacing: -0.02em; }
.page-hero p { color: #c7d2e2; max-width: 560px; margin: 0 auto; font-size: 16.5px; }

/* ---------- Badge pill list (used on Home differentiators) ---------- */
.pill-list { display: flex; gap: 10px; flex-wrap: wrap; }
.pill {
  font-size: 12.8px;
  font-weight: 600;
  color: var(--navy);
  background: var(--light);
  border: 1px solid #cfe6e4;
  padding: 7px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.pill:hover { background: #d8f0ee; transform: translateY(-1px); }

/* =====================================================================
   Chat widget — injected into every page by site.js
   ===================================================================== */
#qw-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  box-shadow: 0 10px 30px rgba(14,124,123,0.4), 0 0 0 0 rgba(124,108,240,0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s var(--ease);
  animation: qw-launcher-pulse 2.6s ease-in-out infinite;
}
#qw-launcher:hover { transform: scale(1.07); }
#qw-launcher svg { width: 26px; height: 26px; }
#qw-launcher .qw-close-icon { display: none; }
#qw-launcher.qw-open .qw-chat-icon { display: none; }
#qw-launcher.qw-open .qw-close-icon { display: block; }
@keyframes qw-launcher-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(14,124,123,0.4), 0 0 0 0 rgba(124,108,240,0.35); }
  50% { box-shadow: 0 10px 30px rgba(14,124,123,0.4), 0 0 0 10px rgba(124,108,240,0); }
}
#qw-badge {
  position: absolute;
  top: -3px; right: -3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--pink);
  border: 2px solid var(--bg);
}

#qw-panel {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 999;
  width: 370px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 140px);
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
#qw-panel.qw-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

#qw-header {
  background: linear-gradient(120deg, var(--navy), var(--navy-soft));
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
#qw-header .qw-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px;
}
#qw-header strong { display: block; font-size: 14.5px; }
#qw-header span { display: block; font-size: 12px; color: #b9c4d8; }
#qw-header .qw-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #5fe6a0; display: inline-block; margin-right: 5px; }

#qw-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f9fbfc;
}
.qw-msg { display: flex; }
.qw-msg-visitor { justify-content: flex-end; }
.qw-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13.8px;
  line-height: 1.5;
}
.qw-msg-visitor .qw-bubble { background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: #fff; border-bottom-right-radius: 4px; }
.qw-msg-assistant .qw-bubble { background: #fff; color: var(--ink); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.qw-typing { display: flex; gap: 4px; padding: 12px 14px; }
.qw-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--grey); opacity: 0.5; animation: qw-typing 1.2s infinite; }
.qw-typing span:nth-child(2) { animation-delay: 0.15s; }
.qw-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes qw-typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-4px); opacity: 1; } }

#qw-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--border);
  flex: none;
  background: #fff;
}
#qw-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 13.8px;
  outline: none;
  transition: border-color 0.15s ease;
}
#qw-input:focus { border-color: var(--teal); }
#qw-send {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex: none;
  transition: transform 0.15s ease;
}
#qw-send:hover { transform: scale(1.06); }
#qw-send:disabled { opacity: 0.5; cursor: default; transform: none; }
#qw-send svg { width: 16px; height: 16px; }

#qw-gate {
  padding: 16px;
  border-top: 1px solid var(--border);
  background: #fff;
  flex: none;
}
#qw-gate p { font-size: 12.5px; margin: 0 0 10px; color: var(--grey); }
#qw-gate input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13.5px;
  margin-bottom: 8px;
  outline: none;
}
#qw-gate input:focus { border-color: var(--teal); }
#qw-gate button {
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-family: inherit;
  font-weight: 650;
  font-size: 13.8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  cursor: pointer;
}

@media (max-width: 480px) {
  #qw-panel { right: 12px; bottom: 84px; width: calc(100vw - 24px); }
  #qw-launcher { right: 14px; bottom: 14px; }
}
