/* ============================================
   Comply.global — Main Stylesheet
   ============================================ */

:root {
  --navy:       #0f1f3d;
  --navy-mid:   #1a3260;
  --blue:       #2563eb;
  --blue-light: #3b82f6;
  --teal:       #0d9488;
  --teal-light: #14b8a6;
  --emerald:    #059669;
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-400:  #94a3b8;
  --slate-600:  #475569;
  --slate-700:  #334155;
  --slate-800:  #1e293b;
  --slate-900:  #0f172a;
  --white:      #ffffff;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12);
  --radius:     10px;
  --radius-lg:  16px;
  --transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.25; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--slate-600); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}

/* ── Layout helpers ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }
.text-muted  { color: var(--slate-400); }

.bg-light   { background: var(--slate-50); }
.bg-navy    { background: var(--navy); color: var(--white); }
.bg-navy h1,.bg-navy h2,.bg-navy h3 { color: var(--white); }
.bg-navy p  { color: rgba(255,255,255,.72); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,99,235,.35); }

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,.35); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .45rem .85rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: var(--slate-100); color: var(--navy); }

.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: '▾'; margin-left: .25rem; font-size: .75rem; }
.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease .25s, transform .18s ease .25s, visibility 0s linear .43s;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: .5rem;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 100;
}
/* Invisible bridge covering the gap between the link and the menu,
   so hover isn't lost while the cursor crosses it */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -.65rem;
  left: 0;
  right: 0;
  height: .65rem;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s, 0s, 0s;
}
.dropdown-menu a { display: block; padding: .6rem 1rem; border-radius: 6px; font-size: .875rem; color: var(--slate-700); }
.dropdown-menu a:hover { background: var(--slate-50); color: var(--blue); }

.nav-cta { margin-left: .5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: .85rem 0; border-bottom: 1px solid var(--slate-100); font-size: 1rem; color: var(--slate-800); font-weight: 500; }
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ── */
.hero {
  padding: 9rem 0 7rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1e3a6e 100%);
  position: relative;
  overflow: hidden;
}

/* animated mesh orbs */
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.22) 0%, transparent 65%);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -8%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(13,148,136,.18) 0%, transparent 65%);
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite alternate-reverse;
}

/* subtle grid pattern overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--teal-light); }
.hero p { color: rgba(255,255,255,.78); font-size: 1.2rem; margin-bottom: 2rem; max-width: 640px; }

/* Highlighted phrase inside the hero subtitle */
.hero-highlight {
  color: var(--white);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(20,184,166,.28), rgba(37,99,235,.28));
  border-bottom: 2px solid var(--teal-light);
  padding: .1em .3em;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* hero entrance animations */
.hero-eyebrow { animation: slideDown .6s ease both; }
.hero-heading  { animation: slideUp .7s .1s ease both; }
.hero-sub      { animation: slideUp .7s .2s ease both; }
.hero-cta      { animation: slideUp .7s .3s ease both; }
.hero-badges   {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2.5rem;
  animation: fadeIn .8s .45s ease both;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85);
  padding: .4rem .9rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 500;
  transition: background .25s, border-color .25s;
}
.hero-badge:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }
.hero-badge svg { width: 14px; height: 14px; color: var(--teal-light); }

/* page-hero (inner pages) */
.page-hero {
  padding: 0 0 5rem;           /* top padding handled by pt-hero so no conflict */
  padding-top: calc(72px + 5rem);   /* nav height + breathing room */
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.15) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(13,148,136,.12) 0%, transparent 70%);
  animation: orbFloat 9s ease-in-out infinite alternate-reverse;
}

/* grid overlay for page heroes */
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; max-width: 760px; animation: slideUp .7s .05s ease both; }
.page-hero .eyebrow { animation: slideDown .5s ease both; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 640px; animation: slideUp .7s .15s ease both; }
.page-hero .btn-group { animation: slideUp .7s .25s ease both; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.icon-blue   { background: #eff6ff; color: var(--blue); }
.icon-teal   { background: #f0fdfa; color: var(--teal); }
.icon-emerald{ background: #ecfdf5; color: var(--emerald); }
.icon-purple { background: #f5f3ff; color: #7c3aed; }
.icon-orange { background: #fff7ed; color: #ea580c; }
.icon-pink   { background: #fdf2f8; color: #db2777; }

.card h3 { margin-bottom: .6rem; }
.card p   { font-size: .9rem; }

/* ── Feature list ── */
.feature-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .75rem; }
.feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-700);
}
.feature-item::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: .95rem; flex-shrink: 0; }

/* bg-light context */
.bg-light .feature-item { background: var(--white); }

/* ── Problem list ── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--slate-200);
}
.problem-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.problem-item h4 { margin-bottom: .3rem; }
.problem-item p  { font-size: .875rem; margin: 0; }

/* ── Steps / process ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
.step {
  padding: 2rem;
  position: relative;
  text-align: center;
}
.step-number {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h4 { margin-bottom: .5rem; }
.step p  { font-size: .875rem; }

/* ── Comparison table ── */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.compare-table th, .compare-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
}
.compare-table th {
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--slate-50);
  color: var(--slate-700);
}
.compare-table th:nth-child(2) { color: var(--slate-400); }
.compare-table th:nth-child(3) { color: var(--teal); }
.compare-table td:nth-child(3) { font-weight: 600; color: var(--teal); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .yes  { color: var(--emerald); font-weight: 700; }
.compare-table .no   { color: var(--slate-400); }
.compare-table .part { color: #d97706; }

/* ── Stat band ── */
.stat-band { padding: 4rem 0; background: var(--navy); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
.stat-value { font-size: 2.5rem; font-weight: 800; color: var(--teal-light); margin-bottom: .25rem; }
.stat-label { font-size: .875rem; color: rgba(255,255,255,.65); }

/* ── Testimonial ── */
.testimonial {
  padding: 2.5rem;
  background: var(--white);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.testimonial p { font-size: 1.05rem; color: var(--slate-700); font-style: italic; margin-bottom: 1rem; }
.testimonial-author { font-weight: 600; font-size: .875rem; color: var(--slate-800); }
.testimonial-role   { font-size: .8rem; color: var(--slate-400); }

/* ── CTA section ── */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* ── Audience pills ── */
.audience-grid { display: flex; flex-wrap: wrap; gap: 1rem; }
.audience-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 40px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: all var(--transition);
}
.audience-pill:hover { border-color: var(--teal); color: var(--teal); background: #f0fdfa; }
.audience-pill span { font-size: 1.1rem; }

/* ── Blog cards ── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
  margin-bottom: .6rem;
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-card h3 { font-size: 1rem; margin-bottom: .5rem; line-height: 1.4; }
.blog-card p  { font-size: .85rem; }
.blog-card-meta { font-size: .78rem; color: var(--slate-400); margin-top: 1rem; }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: .75rem;
}
.read-more:hover { gap: .5rem; }

/* ── Industry cards ── */
.industry-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.industry-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue); transform: translateY(-2px); }
.industry-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.industry-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.industry-card p  { font-size: .85rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: start; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.pricing-card {
  background: var(--white);
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition);
}
.pricing-card.featured {
  border-color: var(--blue);
  position: relative;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .9rem;
  border-radius: 20px;
}

.pricing-card h3  { margin-bottom: .35rem; }
.pricing-tag      { font-size: .8rem; color: var(--slate-400); margin-bottom: 1.5rem; }
.pricing-price    { font-size: 2.75rem; font-weight: 800; color: var(--navy); margin-bottom: .25rem; }
.pricing-price sup{ font-size: 1.25rem; vertical-align: top; margin-top: .6rem; font-weight: 600; }
.pricing-price sub{ font-size: .9rem; font-weight: 400; color: var(--slate-400); }
.pricing-divider  { border: none; border-top: 1px solid var(--slate-200); margin: 1.5rem 0; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--slate-700);
  margin-bottom: .65rem;
}
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { width: 100%; text-align: center; justify-content: center; margin-top: 1.5rem; }

/* ── Contact / form ── */
.form-group { margin-bottom: 1.25rem; }
label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .45rem; color: var(--slate-700); }
input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--slate-200);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--slate-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--slate-200);
  padding: 1.25rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--slate-800);
  gap: 1rem;
}
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--slate-400); flex-shrink: 0; }
.faq-item.open .faq-question::after { content: '−'; color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-top: .75rem; font-size: .9rem; }

/* ── Footer ── */
footer {
  background: var(--slate-900);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .nav-logo { font-size: 1.4rem; color: var(--white); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 1rem; font-weight: 600; }
.footer-col a  { display: block; font-size: .875rem; color: rgba(255,255,255,.6); margin-bottom: .6rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-links a:hover { color: var(--white); }

/* ── Badges / trust ── */
.trust-bar { padding: 2rem 0; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
.trust-items { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: center; }
.trust-item { font-size: .8rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: .06em; }

/* ── Intake channels ── */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}
.channel-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.channel-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.channel-icon { font-size: 2rem; margin-bottom: .75rem; }
.channel-card h4 { font-size: .95rem; margin-bottom: .4rem; color: var(--navy); }
.channel-card p { font-size: .8rem; color: var(--slate-600); margin: 0; }

/* ── Platform module cards ── */
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.module-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.module-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #f0fdfa, #eff6ff);
  border: 1px solid var(--slate-200);
  margin-bottom: 1.1rem;
}
.module-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: .6rem; }
.module-card > p { font-size: .875rem; color: var(--slate-600); margin-bottom: 1rem; }
.module-points { display: flex; flex-direction: column; gap: .45rem; }
.module-points li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .82rem; color: var(--slate-700); line-height: 1.5;
}
.module-points li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── Persona / stakeholder cards ── */
.persona-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.persona-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.persona-card .persona-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: .25rem .7rem; border-radius: 20px;
  margin-bottom: .9rem;
}
.persona-card h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--navy); }
.persona-card p { font-size: .84rem; color: var(--slate-600); margin: 0; }

/* ── Rotating strikethrough word ── */
.strike-rotate {
  position: relative;
  display: inline-block;
  color: #dc2626;
  transition: opacity .3s ease, transform .3s ease;
}
.strike-rotate.swapping {
  opacity: 0;
  transform: translateY(8px);
}
.strike-rotate::after {
  content: '';
  position: absolute;
  left: -2%;
  top: 54%;
  height: 3px;
  width: 0;
  background: #dc2626;
  border-radius: 2px;
  transform: rotate(-2deg);
  transition: width .45s cubic-bezier(.22,.61,.36,1);
}
.strike-rotate.struck::after { width: 104%; }

/* Blinking caret while the word is typing */
.strike-rotate.typing {
  border-right: 3px solid #dc2626;
  padding-right: 3px;
  animation: caretBlink .7s step-end infinite;
}
@keyframes caretBlink {
  0%, 100% { border-color: #dc2626; }
  50%      { border-color: transparent; }
}

/* Hero rotating word — permanent blinking caret, height locked so the line never collapses */
.type-rotate {
  display: inline-block;
  min-height: 1.25em;
  border-right: 3px solid var(--teal-light);
  padding-right: 4px;
  animation: caretBlinkTeal .7s step-end infinite;
}
@keyframes caretBlinkTeal {
  0%, 100% { border-color: var(--teal-light); }
  50%      { border-color: transparent; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.9); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -40px) scale(1.08); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(13,148,136,.4); }
  70%  { box-shadow: 0 0 0 14px rgba(13,148,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,148,136,0); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes borderSlide {
  from { width: 0; }
  to   { width: 100%; }
}

/* Scroll-reveal base */
.animate { opacity: 0; }
.animate.visible { animation: fadeUp .65s cubic-bezier(.22,.61,.36,1) forwards; }

/* Stagger delay helpers (applied via data-delay in JS) */
.animate[data-delay="0"]   { animation-delay:   0ms; }
.animate[data-delay="60"]  { animation-delay:  60ms; }
.animate[data-delay="80"]  { animation-delay:  80ms; }
.animate[data-delay="100"] { animation-delay: 100ms; }
.animate[data-delay="120"] { animation-delay: 120ms; }
.animate[data-delay="160"] { animation-delay: 160ms; }
.animate[data-delay="180"] { animation-delay: 180ms; }
.animate[data-delay="200"] { animation-delay: 200ms; }
.animate[data-delay="240"] { animation-delay: 240ms; }
.animate[data-delay="300"] { animation-delay: 300ms; }
.animate[data-delay="320"] { animation-delay: 320ms; }
.animate[data-delay="400"] { animation-delay: 400ms; }

/* Directional variants */
.animate-left.visible  { animation-name: slideRight; }
.animate-right.visible { animation-name: slideLeft; }
.animate-scale.visible { animation-name: scaleIn; }
.animate-fade.visible  { animation-name: fadeIn; }

/* Card lift on hover — more pronounced */
.card {
  transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.13);
}

/* Feature item slide-in underline */
.feature-item {
  transition: background .2s, border-color .2s, transform .2s, color .2s;
}
.feature-item:hover {
  border-color: var(--teal);
  background: #f0fdfa;
  color: var(--teal);
  transform: translateX(4px);
}

/* Audience pill pop */
.audience-pill { transition: all .2s cubic-bezier(.22,.61,.36,1); }
.audience-pill:hover { transform: translateY(-2px) scale(1.04); }

/* Nav link animated underline */
.nav-links a {
  position: relative;
  overflow: hidden;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: left .25s ease, right .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 10%; right: 10%; }

/* Step number pulse on hover */
.step:hover .step-number { animation: pulse-ring 1s ease; }

/* Shimmer on btn-primary */
.btn-primary {
  background: linear-gradient(90deg, var(--blue) 0%, #1d4ed8 40%, var(--blue-light) 60%, var(--blue) 100%);
  background-size: 200% auto;
  transition: background-position .5s ease, transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
}

/* Blog card image zoom */
.blog-card-img { transition: transform .4s ease; overflow: hidden; }
.blog-card:hover .blog-card-img { transform: scale(1.03); }

/* Industry card icon bounce */
.industry-card { transition: all .25s cubic-bezier(.22,.61,.36,1); }
.industry-card:hover .industry-icon {
  display: inline-block;
  animation: bounceIcon .4s ease;
}
@keyframes bounceIcon {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25) rotate(-8deg); }
  70%  { transform: scale(.95) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Pricing card shine sweep */
.pricing-card { overflow: hidden; position: relative; }
.pricing-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  transition: left .5s ease;
  pointer-events: none;
}
.pricing-card:hover::after { left: 150%; }

/* Outcome item lift */
.outcome-item {
  transition: transform .25s ease, box-shadow .25s ease;
}
.outcome-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(5,150,105,.15); }

/* Stat value counter animation trigger class */
.stat-value.counted { animation: countUp .6s ease both; }

/* Highlight box pop */
.highlight-box {
  transition: transform .2s ease, box-shadow .2s ease;
}
.highlight-box:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.1); }

/* Table row hover */
.compare-table tbody tr {
  transition: background .18s ease;
}
.compare-table tbody tr:hover { background: var(--slate-50); }

/* Testimonial quote mark */
.testimonial { position: relative; }
.testimonial::before {
  content: '"';
  position: absolute;
  top: -.5rem; left: 1.5rem;
  font-size: 5rem;
  color: var(--teal);
  opacity: .15;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* ══════════════════════════════════════
   Phase Scroll Section (POSH page)
   ══════════════════════════════════════ */

.phase-scroll-section {
  background: var(--slate-50);
  position: relative;
}

/* Tall track provides the scroll distance; the layout pins inside it */
.phase-scroll-track {
  position: relative;
  min-height: 280vh;
}

/* Phase pills / tab bar */
.phase-pills {
  display: flex;
  gap: .5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.phase-pill {
  padding: .55rem 1.25rem;
  border-radius: 30px;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-600);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s ease;
  letter-spacing: .01em;
}
.phase-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.phase-pill.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* Two-column layout — pins to the viewport while the track scrolls */
.phase-layout {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

/* LEFT — text column, constrained to the pinned layout height */
.phase-sticky {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 3.5rem 1.25rem 0;
  gap: 0;
}

.phase-header {
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.phase-header .phase-pills { margin-top: 1rem; justify-content: flex-start; }

.phase-content {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.phase-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.phase-info.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.phase-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: .8rem;
  width: fit-content;
}

.phase-info h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.phase-info > p {
  font-size: .92rem;
  color: var(--slate-600);
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 400px;
}

.phase-steps {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.phase-steps li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-700);
}
.ps-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(13,148,136,.2);
}

/* progress bar */
.phase-progress {
  height: 4px;
  background: var(--slate-200);
  border-radius: 4px;
  margin-top: 1.25rem;
  flex-shrink: 0;
  overflow: hidden;
}
.phase-progress-bar {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  border-radius: 4px;
  transition: width .5s cubic-bezier(.22,.61,.36,1);
}

/* RIGHT — mockup column, only the active panel visible */
.phase-panels {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.phase-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0 1rem 3rem;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
.phase-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* Mockup window */
.mockup-window {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(15,31,61,.16), 0 4px 16px rgba(15,31,61,.08);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  transform: perspective(800px) rotateY(-4deg) rotateX(2deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.mockup-window:hover {
  transform: perspective(800px) rotateY(0deg) rotateX(0deg);
  box-shadow: 0 32px 100px rgba(15,31,61,.2);
}

.mockup-bar {
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.mockup-dots { display: flex; gap: 5px; }
.mockup-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }
.mockup-title { font-size: .78rem; font-weight: 600; color: var(--slate-500); }

.mockup-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Mockup internal elements */
.mock-form-group { display: flex; flex-direction: column; gap: .4rem; }
.mock-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.mock-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--slate-400); }
.mock-input {
  background: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: 7px;
  padding: .55rem .75rem;
  font-size: .83rem;
  color: var(--slate-700);
  font-weight: 500;
  height: 36px;
  display: flex;
  align-items: center;
}

.mock-members { display: flex; align-items: center; gap: .5rem; margin-top: .25rem; }
.mock-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700;
}

.mock-status-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .25rem; }
.mock-badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .75rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
}
.mock-badge.green  { background: #ecfdf5; color: #059669; border: 1px solid #bbf7d0; }
.mock-badge.blue   { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.mock-badge.orange { background: #fff7ed; color: #d97706; border: 1px solid #fed7aa; }

/* Timeline */
.mock-timeline { display: flex; flex-direction: column; gap: 0; }
.mock-tl-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding-bottom: .85rem;
  position: relative;
}
.mock-tl-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 8px; top: 18px;
  width: 2px; bottom: 0;
  background: var(--slate-200);
}
.mock-tl-item.done::before { background: var(--teal); }
.mock-tl-dot {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--slate-200);
  background: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
  transition: all .3s ease;
}
.mock-tl-dot.done   { background: var(--teal); border-color: var(--teal); }
.mock-tl-dot.active {
  background: var(--white);
  border-color: var(--blue);
  border-width: 3px;
  box-shadow: 0 0 0 4px rgba(37,99,235,.15);
  animation: pulse-ring 1.5s ease infinite;
}
.mock-tl-title { font-size: .83rem; font-weight: 600; color: var(--slate-700); }
.mock-tl-meta  { font-size: .72rem; color: var(--slate-400); margin-top: .15rem; }

.mock-evidence-row { margin-top: .25rem; }
.mock-files { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .4rem; }
.mock-file {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: .3rem .65rem;
  font-size: .72rem;
  color: var(--slate-600);
  font-weight: 500;
}

.mock-report-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  padding: 1rem;
  background: var(--slate-50);
  border-radius: 10px;
  border: 1px solid var(--slate-200);
}

.mock-actions { display: flex; flex-direction: column; gap: .5rem; }
.mock-action-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--slate-600);
  padding: .5rem .75rem;
  background: var(--slate-50);
  border-radius: 7px;
}
.mock-action-item.done::before { content: '✓'; color: var(--emerald); font-weight: 700; }

.mock-report-footer {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}

/* Responsive */
@media (max-width: 900px) {
  .phase-scroll-track { min-height: 0; }
  .phase-layout {
    position: relative;
    top: 0;
    height: auto;
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }
  .phase-sticky { padding: 0; height: auto; }
  .phase-content { min-height: 420px; }
  .phase-panels { min-height: 0; }
  .phase-panel {
    position: relative;
    inset: auto;
    transform: none;
    display: none;
    padding: 2rem 0 0;
  }
  .phase-panel.active {
    display: flex;
    opacity: 1;
  }
  .mockup-window { transform: none !important; }
}

/* ── Spacing utils ── */
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.gap-section { margin-bottom: 4rem; }

/* ── Highlight box ── */
.highlight-box {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdfa 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.highlight-box h3 { color: var(--navy); }

/* ── Section header ── */
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { max-width: 580px; }
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ── Responsive nav padding ──
   Only used on non-hero pages for plain section starts */
.page-top-plain { padding-top: 72px; }

/* ── Risk items ── */
.risk-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.risk-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1.25rem;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: var(--radius);
  font-size: .875rem;
  color: var(--slate-700);
}
.risk-icon { color: #e11d48; font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }

/* ── Outcome items ── */
.outcome-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.outcome-item {
  padding: 1.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  text-align: center;
}
.outcome-icon { font-size: 1.75rem; margin-bottom: .5rem; }
.outcome-item h4 { font-size: .9rem; color: var(--emerald); margin-bottom: .25rem; }
.outcome-item p  { font-size: .8rem; margin: 0; }
