/* EnlaceDocsMX — styles.css */
/* Brand: Navy #1a2744 | Gold #c9a84c | Green #006847 */

:root {
  --navy:   #1a2744;
  --navy-dark: #111c33;
  --gold:   #c9a84c;
  --gold-light: #e0bb6a;
  --green:  #006847;
  --white:  #ffffff;
  --off-white: #f7f6f2;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 8px 40px rgba(26,39,68,0.18);
  --font-body: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  margin: 0;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-body);
  color: var(--navy);
  line-height: 1.2;
  margin-top: 0;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

p { margin: 0 0 1rem; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Disclaimer Bar ── */
.disclaimer-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.45rem 1rem;
  line-height: 1.4;
}
.disclaimer-bar p { margin: 0; }
.disclaimer-bar a { color: var(--gold); }

/* ── Header / Nav ── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26,39,68,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo { height: 38px; width: auto; }
.logo-link { display: flex; align-items: center; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  display: block;
  font-family: var(--font-sans);
}
.main-nav a:hover { color: var(--gold); background: var(--gray-100); }
.main-nav a.active { color: var(--gold); font-weight: 700; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 99;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { padding: 0.9rem 1rem; border-bottom: 1px solid var(--gray-200); }
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.btn-outline-sm {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--gray-200);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.btn-outline-sm:hover { background: var(--gray-100); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── Hero ── */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  mix-blend-mode: overlay;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 40%, rgba(26,39,68,0.5));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 700px;
}
.hero-eyebrow {
  display: block;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); }
.hero h1 span { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.82); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Section utilities ── */
.section { padding: 5rem 0; }
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}
.section-title { margin-bottom: 0.5rem; }
.section-subtitle { color: var(--gray-600); font-size: 1.05rem; max-width: 600px; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Cards ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(26,39,68,0.06);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.card h3 { font-size: 1.15rem; }
.card p { color: var(--gray-600); font-size: 0.93rem; margin: 0; }

/* ── Feature card with image ── */
.feature-card { display: flex; flex-direction: column; gap: 0; overflow: hidden; padding: 0; }
.feature-card img { height: 200px; width: 100%; object-fit: cover; }
.feature-card-body { padding: 1.5rem; }

/* ── Process steps ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; counter-reset: step; }
.step { text-align: center; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  font-family: var(--font-body);
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--gray-600); font-size: 0.9rem; }

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial blockquote {
  margin: 0 0 1.2rem;
  font-style: italic;
  color: var(--gray-600);
  font-size: 0.95rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.78rem; color: var(--gray-600); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--green), var(--gold));
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 2px solid var(--gray-200);
  transition: transform var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--gold);
  position: relative;
}
.pricing-card.featured::before {
  content: 'MÁS POPULAR';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-family: var(--font-sans);
}
.pricing-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; font-family: var(--font-sans); }
.pricing-price { font-size: 2.8rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; font-family: var(--font-body); }
.pricing-currency { font-size: 1rem; vertical-align: top; margin-top: 0.6rem; display: inline-block; }
.pricing-period { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 2rem; }
.pricing-features li { padding: 0.5rem 0; border-bottom: 1px solid var(--gray-200); font-size: 0.9rem; color: var(--gray-600); }
.pricing-features li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.pricing-note { font-size: 0.78rem; color: var(--gray-600); text-align: center; margin-top: 1rem; }

/* ── Form ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  max-width: 640px;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--gray-800);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-privacy { font-size: 0.78rem; color: var(--gray-600); margin-top: 0.75rem; }
.form-disclaimer {
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* ── FAQ Accordion ── */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  gap: 1rem;
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 1.2rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 4px solid var(--gold); }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.85rem; color: var(--gold); font-weight: 600; font-family: var(--font-sans); }
.team-card p { font-size: 0.88rem; color: var(--gray-600); margin-top: 0.5rem; }

/* ── Cities ── */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1rem; }
.city-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.city-card .city-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.city-card h3 { font-size: 1rem; margin-bottom: 0; }
.city-card p { font-size: 0.82rem; color: var(--gray-600); margin: 0.25rem 0 0; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card img { height: 200px; width: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card h3 a { color: var(--navy); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { font-size: 0.88rem; color: var(--gray-600); margin-bottom: 1rem; }
.blog-meta { font-size: 0.78rem; color: var(--gray-600); display: flex; gap: 1rem; }
.article-content { max-width: 800px; margin: 0 auto; }
.article-content h2 { margin-top: 2rem; }
.article-content h3 { margin-top: 1.5rem; color: var(--navy); }

/* ── Info box / Alert ── */
.info-box {
  background: rgba(0,104,71,0.06);
  border-left: 4px solid var(--green);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}
.warning-box {
  background: rgba(201,168,76,0.1);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}

/* ── Table ── */
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-bottom: 2rem; }
.comparison-table th {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1rem;
  text-align: left;
  font-family: var(--font-sans);
}
.comparison-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.comparison-table tr:nth-child(even) td { background: var(--gray-100); }
.check { color: var(--green); font-weight: 700; }
.cross { color: #dc2626; }

/* ── Received / Confirmed ── */
.confirmed-box { max-width: 560px; margin: 0 auto; text-align: center; padding: 3rem 2rem; }
.confirmed-icon { font-size: 4rem; margin-bottom: 1rem; }
.confirmed-box h1 { font-size: 2rem; }
.confirmed-box p { color: var(--gray-600); }

/* ── Legal pages ── */
.legal-content { max-width: 800px; }
.legal-content h2 { border-bottom: 2px solid var(--gold); padding-bottom: 0.4rem; margin-top: 2.5rem; font-size: 1.3rem; }
.legal-content h3 { color: var(--navy); margin-top: 1.5rem; font-size: 1.05rem; }

/* ── Two-column layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }
.two-col-wide { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .two-col-wide { grid-template-columns: 1fr; gap: 2rem; } }

/* ── Green badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0,104,71,0.08);
  color: var(--green);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-sans);
  margin-bottom: 1.5rem;
}

/* ── Stats ── */
.stats-row { display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
.stat strong { display: block; font-size: 2.2rem; color: var(--gold); font-family: var(--font-body); line-height: 1; }
.stat span { font-size: 0.82rem; color: rgba(255,255,255,0.7); font-family: var(--font-sans); }
.stats-row-light .stat strong { color: var(--navy); }
.stats-row-light .stat span { color: var(--gray-600); }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 1rem 1.5rem;
  z-index: 200;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin: 0; flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--gold); }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ── Footer ── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.5rem; }
.footer-official a { color: var(--gold); font-size: 0.85rem; }
.footer-links h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 1rem; font-family: var(--font-sans); letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.78rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact h4 { color: var(--white); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-sans); margin-bottom: 1rem; }
.footer-contact p { font-size: 0.85rem; margin-bottom: 0.5rem; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  font-size: 0.78rem;
  text-align: center;
  color: rgba(255,255,255,0.45);
}
.footer-bottom p { margin: 0.25rem 0; }

/* ── 404 ── */
.not-found { text-align: center; padding: 6rem 1.5rem; }
.not-found .error-code { font-size: 6rem; font-weight: 700; color: var(--gold); line-height: 1; font-family: var(--font-body); }

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-muted { color: var(--gray-600); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 3rem 0; }
