/* Queuro — shared site styles */

:root {
  --navy: #1b2a4a;
  --navy-dark: #101a30;
  --teal: #0e7c7b;
  --teal-light: #14a3a1;
  --light: #eaf3f2;
  --bg: #f7f9fa;
  --ink: #16202f;
  --ink-soft: #4b5768;
  --grey: #6b7280;
  --border: #e2e8ec;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(16, 26, 48, 0.08);
  --shadow-sm: 0 2px 10px rgba(16, 26, 48, 0.06);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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;
}

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.15; margin: 0 0 0.5em; color: var(--navy); }
p { margin: 0 0 1em; color: var(--ink-soft); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  box-shadow: 0 6px 20px rgba(14, 124, 123, 0.32);
}
.btn-primary:hover { box-shadow: 0 10px 26px rgba(14, 124, 123, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-on-dark {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-on-dark:hover { background: rgba(255,255,255,0.18); }
.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: 100;
  background: rgba(247, 249, 250, 0.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--navy);
}
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); border-color: var(--teal); }
.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-actions .btn-ghost { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1100px 500px at 15% -10%, #17324f 0%, var(--navy) 45%, var(--navy-dark) 100%);
  color: #fff;
  padding: 84px 0 96px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(20,163,161,0.35), transparent 65%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #bfe3e2;
  background: rgba(20, 163, 161, 0.16);
  border: 1px solid rgba(20, 163, 161, 0.4);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  color: #fff;
  font-size: 46px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero h1 .accent { color: #5fd2cf; }
.hero p.lead {
  color: #c7d2e2;
  font-size: 17.5px;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-note { font-size: 13.5px; color: #93a3bd; }
.hero-visual {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.hero-visual img { border-radius: 12px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
}
.hero-stat strong { display: block; font-size: 20px; color: #fff; }
.hero-stat span { font-size: 12px; color: #a9b6cc; }

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

/* ---------- Sections ---------- */
section { padding: 76px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }
.kicker {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-head h2 { font-size: 32px; letter-spacing: -0.01em; }
.section-head p { font-size: 16px; }
.alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- 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: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  margin-bottom: 16px;
}
.icon-badge svg { width: 22px; height: 22px; }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14.5px; margin-bottom: 0; }

/* ---------- Feature rows (Features page) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-top: 1px solid var(--border);
}
.feature-row:first-of-type { border-top: none; }
.feature-row h3 { font-size: 20px; 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: 14px; }
.feature-item { display: flex; gap: 12px; }
.feature-item .dot {
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%;
  background: var(--light);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.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: 20px;
  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;
}
.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: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.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: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.plan.featured {
  border-color: var(--teal);
  box-shadow: 0 14px 34px rgba(14,124,123,0.18);
  transform: translateY(-6px);
}
.plan .badge {
  position: absolute;
  top: -13px; left: 24px;
  background: var(--teal);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 999px;
}
.plan h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--teal); margin-bottom: 6px; }
.plan .price { font-size: 34px; font-weight: 800; color: var(--navy); margin-bottom: 2px; }
.plan .price span { font-size: 14px; font-weight: 600; color: var(--grey); }
.plan .seats { font-size: 13px; color: var(--grey); margin-bottom: 18px; }
.plan ul { display: grid; gap: 10px; margin-bottom: 24px; flex: 1; }
.plan li { display: flex; gap: 8px; 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;
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  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); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.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 {
  background: var(--navy);
  color: #fff;
  padding: 46px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-grid .item { display: flex; gap: 14px; }
.trust-grid .item svg { width: 26px; height: 26px; min-width: 26px; color: #5fd2cf; 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 {
  background: linear-gradient(120deg, var(--navy), #1f3a63);
  color: #fff;
  border-radius: 22px;
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.cta-band p { color: #c7d2e2; margin: 0; }
.cta-band .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- 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: var(--teal);
  border: 3px solid var(--light);
}
.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: 30px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 18px; margin-bottom: 10px; }
.contact-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--border); }
.contact-row:first-of-type { border-top: none; }
.contact-row .icon-badge { margin: 0; width: 38px; height: 38px; border-radius: 10px; }
.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: 54px 0 26px; 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; }
.footer-col a:hover { color: #fff; }
.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 {
  background: linear-gradient(180deg, var(--navy) 0%, #223a5e 100%);
  color: #fff;
  padding: 64px 0 60px;
  text-align: center;
}
.page-hero .kicker { color: #7fd6d4; }
.page-hero h1 { color: #fff; font-size: 38px; margin-bottom: 12px; }
.page-hero p { color: #c7d2e2; max-width: 560px; margin: 0 auto; font-size: 16px; }

/* ---------- 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;
}
