/* ============================================
   Remark — Warm cream editorial design
   ============================================ */

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

:root {
  --bg-cream: #f7f5f1;
  --bg-white: #fffdf9;
  --text-primary: #0a1628;
  --text-body: #3a4252;
  --text-muted: #6b7a90;
  --border: rgba(10,22,40,0.09);
  --navy: #0a1628;
  --recording-red: #dc2626;
  --max-width: 1120px;
  --section-pad: 112px;
  --h-pad: 24px;
  --nav-height: 64px;
  --radius: 14px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-cream);
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-primary);
  line-height: 1.15;
}

h1 {
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 52px);
  letter-spacing: -0.01em;
}

h2 {
  font-weight: 300;
  font-size: 38px;
  margin-bottom: 48px;
}

h3 {
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 12px;
}

p {
  max-width: 640px;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--h-pad);
  padding-right: var(--h-pad);
}

.section {
  padding: var(--section-pad) 0;
}

.section-cream { background: var(--bg-cream); }
.section-white { background: var(--bg-white); }

.pre-title {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn:hover { opacity: 0.85; }

.btn-primary {
  background: var(--navy);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--navy);
  opacity: 1;
}

.btn-inverted {
  background: #fff;
  color: var(--navy);
}

.download-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.download-card,
.install-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.download-card h3,
.install-card h3 {
  margin-bottom: 14px;
}

.download-card p,
.install-card p {
  max-width: none;
}

.download-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.download-meta {
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--bg-cream);
  border: 1px solid var(--border);
}

.download-meta strong {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.download-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.install-steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.install-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.install-step-number {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.install-step p {
  color: var(--text-body);
}

/* --- Nav --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav-scrolled {
  background: rgba(247, 245, 241, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--h-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.nav-logo-icon {
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 20px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.85; }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.2s;
}

/* --- Hero --- */
.hero {
  padding-top: calc(var(--nav-height) + var(--section-pad));
  padding-bottom: var(--section-pad);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-meta {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Product Mockup --- */
.mockup-window {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  overflow: hidden;
}

.mockup-titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-cream);
}

.mockup-traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-light {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.tl-close { background: #ff5f57; border-color: #e0443e; }
.tl-minimize { background: #febc2e; border-color: #d4a528; }
.tl-maximize { background: #28c840; border-color: #1aab29; }

.mockup-title {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.mockup-body {
  display: flex;
  min-height: 280px;
}

.mockup-sidebar {
  width: 140px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 12px 0;
  background: var(--bg-cream);
}

.mockup-sidebar-item {
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  cursor: default;
}

.mockup-sidebar-item.active {
  color: var(--text-primary);
  background: var(--bg-white);
  border-right: 2px solid var(--text-primary);
}

.mockup-content {
  flex: 1;
  padding: 16px 20px;
}

.mockup-meeting-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.mockup-meeting-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mockup-meeting-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mockup-recording-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--recording-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.recording-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--recording-red);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.mockup-transcript {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-line {
  display: flex;
  gap: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.mockup-speaker {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 12px;
  min-width: 48px;
  padding-top: 1px;
}

.speaker-1 { color: var(--text-primary); }
.speaker-2 { color: var(--text-muted); }
.speaker-3 { color: #5a6577; }

.mockup-text {
  color: var(--text-body);
}

/* --- Trust Strip --- */
.trust-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 0;
}

.trust-item {
  flex: 1;
  text-align: center;
  font-size: 15px;
  color: var(--text-body);
  padding: 0 32px;
  border-right: 1px solid var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- Cards --- */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--bg-white);
}

.card-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 28px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1;
}

.card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

/* --- Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 48px;
  color: rgba(10, 22, 40, 0.08);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.step p {
  font-size: 15px;
  line-height: 1.65;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--bg-white);
}

.feature-card .card-number {
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 100%;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  background: var(--bg-white);
  display: flex;
  flex-direction: column;
}

.pricing-card-pro {
  border-color: var(--navy);
  border-width: 2px;
  position: relative;
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 48px;
  background: var(--navy);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 4px;
}

.pricing-tier {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 48px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-unit {
  font-size: 20px;
  color: var(--text-muted);
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-features {
  flex: 1;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: none;
}

.pricing-sub-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  max-width: none;
  line-height: 1.5;
}

/* --- Professionals Callout --- */
.professionals-callout {
  border-top: 1px solid var(--border);
}

.professionals-inner {
  text-align: center;
}

.professionals-inner h2 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.shield-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  position: relative;
}

.shield-icon::before {
  content: '';
  display: block;
  width: 32px;
  height: 38px;
  margin: 0 auto;
  border: 2px solid var(--text-muted);
  border-radius: 2px 2px 16px 16px;
  clip-path: polygon(50% 0%, 100% 12%, 100% 60%, 50% 100%, 0% 60%, 0% 12%);
}

.shield-icon::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 14px;
  border-bottom: 2px solid var(--text-muted);
  border-right: 2px solid var(--text-muted);
}

.professionals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
}

.professional-item {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-cream);
}

.professional-item h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.professional-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 64px;
  line-height: 0.5;
  color: rgba(10, 22, 40, 0.1);
  margin-bottom: 16px;
}

.testimonial blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-primary);
  margin-bottom: 20px;
  max-width: none;
}

.testimonial cite {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  text-align: left;
}

.faq-question:hover {
  color: var(--text-body);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--text-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  padding-bottom: 20px;
  max-width: none;
}

.faq-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-open .faq-answer {
  max-height: 500px;
}

/* --- Dark CTA --- */
.cta-dark {
  background: var(--navy);
  padding: var(--section-pad) 0;
}

.cta-dark-inner {
  text-align: center;
}

.cta-dark h2 {
  color: #fff;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-meta {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 24px;
}

.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-availability {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  max-width: none;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  max-width: none;
}

/* ============================================
   Responsive
   ============================================ */

/* Tablet */
@media (max-width: 960px) {
  :root {
    --section-pad: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .download-grid,
  .download-meta-grid {
    grid-template-columns: 1fr;
  }

  .hero-mockup {
    order: -1;
  }

  .problem-grid,
  .features-grid,
  .testimonials-grid,
  .professionals-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-pad: 64px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  /* Mobile menu open */
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-cream);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 101;
  }

  body.nav-open .nav-cta {
    display: block;
    position: fixed;
    top: calc(var(--nav-height) + 140px);
    left: 24px;
    right: 24px;
    text-align: center;
    z-index: 101;
  }

  body.nav-open .nav {
    background: var(--bg-cream);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .problem-grid,
  .steps-grid,
  .features-grid,
  .testimonials-grid,
  .professionals-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-card-pro {
    transform: none;
  }

  .pricing-badge {
    left: 24px;
  }

  .trust-grid {
    flex-direction: column;
    gap: 16px;
  }

  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }

  .trust-item:last-child {
    border-bottom: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .mockup-sidebar {
    width: 100px;
  }

  .mockup-sidebar-item {
    font-size: 11px;
    padding: 6px 10px;
  }

  .mockup-line {
    flex-direction: column;
    gap: 2px;
  }

  .mockup-speaker {
    min-width: auto;
  }
}

/* --- Privacy page --- */
.privacy-content {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: var(--section-pad);
}

.privacy-content h1 {
  margin-bottom: 16px;
}

.privacy-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 64px;
  max-width: 640px;
}

.privacy-section {
  margin-bottom: 56px;
}

.privacy-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.privacy-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 24px;
}

.privacy-section p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 720px;
}

.privacy-section ul {
  margin-bottom: 16px;
  padding-left: 20px;
}

.privacy-section li {
  list-style: disc;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 6px;
}

.privacy-table {
  width: 100%;
  max-width: 720px;
  border-collapse: collapse;
  margin: 20px 0 24px;
}

.privacy-table th,
.privacy-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.privacy-table th {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.privacy-table td {
  color: var(--text-body);
}

.privacy-commitment {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--bg-white);
  max-width: 720px;
  margin-top: 32px;
}

.privacy-commitment p {
  margin-bottom: 0;
}

/* --- Industry Landing Pages --- */
.industry-hero {
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.industry-hero h1 {
  margin-bottom: 20px;
}

.industry-hero .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.industry-hero .hero-meta {
  margin-left: auto;
  margin-right: auto;
}

/* Compliance checklist */
.compliance-list {
  max-width: 640px;
}

.compliance-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
}

.compliance-item:last-child {
  border-bottom: none;
}

.compliance-check {
  flex-shrink: 0;
  color: var(--text-primary);
  margin-top: 2px;
}

/* Active nav link */
.nav-link-active {
  color: var(--text-primary) !important;
  font-weight: 600 !important;
}
