:root {
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
}

/* Statement of Loss Page */
.sol-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.sol-main {
  background: #F5F7FA;
}

.sol-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sol-section {
  padding: 80px 0;
}

.sol-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 96px 0 88px;
}

.sol-hero-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.sol-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.sol-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.sol-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sol-btn-primary,
.sol-btn-secondary {
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.sol-btn-primary {
  background: #0B1B34;
  color: #ffffff;
  border-color: #0B1B34;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.sol-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.sol-btn-secondary {
  background: #ffffff;
  color: #0B1B34;
  border-color: rgba(11,27,52,0.16);
}

.sol-btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.sol-full-width {
  width: 100%;
  text-align: center;
}

.sol-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
}

.sol-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
}

.sol-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: 0.2s ease;
}

.sol-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.sol-bullet-list {
  padding-left: 18px;
  margin: 12px 0 0 0;
  display: grid;
  gap: 6px;
  color: #0B1B34;
}

.sol-overview-card {
  display: grid;
  gap: 24px;
  grid-template-columns: 2fr 1.1fr;
}

.sol-overview-card h2 {
  margin: 0 0 12px 0;
}

.sol-overview-card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
}

.sol-input-grid,
.sol-doc-grid,
.sol-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.sol-input-card h3,
.sol-doc-card h3,
.sol-tool-card h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 700;
}

.sol-card-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #0B1B34;
  text-decoration: none;
}

.sol-card-cta::after {
  content: '→';
  font-size: 14px;
}

.sol-breakdown {
  background: #F5F7FA;
}

.sol-breakdown-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.sol-breakdown-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sol-breakdown-card h3 {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 700;
}

.sol-breakdown-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-weight: 600;
}

.sol-breakdown-field.total {
  border-bottom: none;
  font-size: 18px;
}

.sol-field-value {
  color: #0B1B34;
  font-weight: 700;
}

.sol-docs {
  background: #ffffff;
}

.sol-doc-card,
.sol-input-card,
.sol-tool-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sol-doc-card:hover,
.sol-input-card:hover,
.sol-tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.sol-mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sol-mistakes .sol-card p {
  margin: 8px 0 0 0;
  color: #475569;
}

.sol-tools-grid .sol-btn-secondary {
  margin-top: auto;
}

.sol-action-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #0B1B34;
  color: #ffffff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.sol-action-card h2 {
  margin: 0 0 10px 0;
  font-size: 28px;
}

.sol-action-card p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}

.sol-action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .sol-overview-card {
    grid-template-columns: 1fr;
  }

  .sol-input-grid,
  .sol-doc-grid,
  .sol-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sol-breakdown-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sol-hero {
    padding: 80px 0 72px;
  }

  .sol-hero h1 {
    font-size: 34px;
  }

  .sol-hero-actions {
    flex-direction: column;
  }

  .sol-section {
    padding: 64px 0;
  }

  .sol-input-grid,
  .sol-doc-grid,
  .sol-tools-grid,
  .sol-mistakes-grid {
    grid-template-columns: 1fr;
  }

  .sol-action-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .sol-action-buttons {
    width: 100%;
  }

  .sol-btn-primary,
  .sol-btn-secondary {
    width: 100%;
    text-align: center;
  }
}
/* Resource Center overrides per Standardized Design Protocol */
:root {
  --rc-page-bg: #F5F7FA;
  --rc-card-bg: #F0F4FA;
  --rc-text: #0B1B34;
  --rc-text-secondary: #475569;
  --rc-primary: #2D5BFF;
  --rc-border: rgba(0,0,0,0.06);
}

body.resource-center {
  background: var(--rc-page-bg);
  color: var(--rc-text);
  font-family: 'Inter', sans-serif;
}

.rc-page {
  background: var(--rc-page-bg);
}

.rc-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.rc-section {
  padding: 80px 0;
}

.rc-section + .rc-section {
  padding-top: 0;
}

.rc-section-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--rc-text);
  margin: 0 0 8px 0;
}

.rc-section-header p {
  color: var(--rc-text-secondary);
  font-size: 16px;
  margin: 0;
}

.rc-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 96px 0 88px;
}

.rc-hero-content {
  display: flex;
  align-items: center;
}

.rc-hero-text {
  max-width: 760px;
}

.rc-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.78);
}

.rc-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
}

.rc-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px 0;
  max-width: 720px;
}

.rc-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.rc-btn-primary {
  background: var(--rc-primary);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.rc-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.rc-btn-secondary {
  border: 2px solid var(--rc-primary);
  color: var(--rc-primary);
  background: transparent;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.rc-btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(45,91,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.rc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rc-card {
  background: var(--rc-card-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid var(--rc-border);
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--rc-text);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.rc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rc-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13,27,52,0.08);
  color: var(--rc-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.rc-card h3 {
  font-size: 22px;
  margin: 0;
  font-weight: 600;
  color: var(--rc-text);
}

.rc-card p {
  margin: 0;
  font-size: 16px;
  color: var(--rc-text-secondary);
}

.rc-card-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--rc-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Situational Advisory Page */
.situ-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.situ-main {
  min-height: 100vh;
}

.situ-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.situ-section {
  padding: 80px 0;
}

.situ-card {
  background: #F0F4FA;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.situ-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.situ-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 96px 0 88px;
}

.situ-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.situ-hero-text h1 {
  font-size: 48px;
  margin: 0 0 12px 0;
  font-weight: 700;
  color: #ffffff;
}

.situ-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px 0;
  max-width: 720px;
}

.situ-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px 0;
}

.situ-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.situ-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 360px;
}

.situ-hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
}

.situ-stat-value {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.situ-stat-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.situ-btn-primary,
.situ-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.situ-btn-primary {
  background: #0B1B34;
  color: #ffffff;
  border-color: #0B1B34;
}

.situ-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11, 27, 52, 0.22);
}

.situ-btn-secondary {
  background: #ffffff;
  color: #0B1B34;
  border: 2px solid rgba(11, 27, 52, 0.12);
}

.situ-btn-secondary:hover {
  background: #E7ECF5;
  border-color: rgba(11, 27, 52, 0.22);
}

.situ-section-header h2 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.situ-section-header p {
  margin: 0 0 24px 0;
  font-size: 16px;
  color: #475569;
}

.situ-overview-card h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  color: #0B1B34;
}

.situ-overview-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.situ-overview-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.situ-overview-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.situ-overview-list li {
  font-size: 16px;
  color: #0B1B34;
}

.situ-search {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.situ-search-fields {
  display: grid;
  grid-template-columns: 2fr 1.2fr auto;
  gap: 12px;
}

.situ-search input,
.situ-search select {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 16px;
  background: #ffffff;
  color: #0B1B34;
}

.situ-search input:focus,
.situ-search select:focus {
  outline: 2px solid #0B1B34;
  outline-offset: 1px;
}

.situ-search-hint {
  margin: 0;
  color: #55607a;
  font-size: 14px;
}

.situ-category-grid,
.situ-scenario-grid,
.situ-tools-grid,
.situ-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.situ-category-card h3,
.situ-scenario-card h3,
.situ-tool-card h3,
.situ-detail-card h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  color: #0B1B34;
}

.situ-category-card p,
.situ-scenario-card p,
.situ-tool-card p,
.situ-detail-card p {
  margin: 0 0 10px 0;
  color: #475569;
  font-size: 16px;
}

.situ-category-card {
  text-decoration: none;
  display: block;
}

.situ-card-cta {
  font-weight: 700;
  color: #0B1B34;
  font-size: 15px;
}

.situ-scenario-card ul {
  margin: 0;
  padding-left: 18px;
  color: #0B1B34;
  font-size: 15px;
}

.situ-card-group {
  margin-bottom: 12px;
}

.situ-label {
  margin: 0 0 6px 0;
  font-size: 14px;
  font-weight: 700;
  color: #0B1B34;
}

.situ-detail-card {
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.situ-detail-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.situ-detail-card ul {
  margin: 0 0 10px 18px;
  padding: 0;
  color: #0B1B34;
  font-size: 15px;
}

.situ-tools-grid .situ-tool-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.situ-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #0B1B34;
  color: #ffffff;
}

.situ-action-card h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
}

.situ-action-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.situ-action-cta {
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  .situ-category-grid,
  .situ-scenario-grid,
  .situ-tools-grid,
  .situ-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .situ-hero-inner {
    flex-direction: column;
  }

  .situ-hero-meta {
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .situ-overview-columns,
  .situ-detail-columns,
  .situ-search-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .situ-category-grid,
  .situ-scenario-grid,
  .situ-tools-grid,
  .situ-detail-grid {
    grid-template-columns: 1fr;
  }

  .situ-hero {
    padding: 72px 0 64px;
  }

  .situ-hero-text h1 {
    font-size: 38px;
  }

  .situ-hero-actions {
    flex-direction: column;
  }

  .situ-action-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.rc-card:hover .rc-card-cta {
  transform: translateX(2px);
}

.rc-meta {
  font-size: 14px;
  color: var(--rc-text-secondary);
}

.rc-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rc-card-list li {
  font-size: 14px;
  color: var(--rc-text-secondary);
}

.rc-nav-help {
  background: var(--rc-card-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid var(--rc-border);
}

.rc-hero-secondary {
  display: none;
}

.stage-highlight {
  border-color: #2D5BFF !important;
  box-shadow: 0 6px 20px rgba(45,91,255,0.18);
}

.stage-dimmed {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .rc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rc-hero {
    padding: 72px 0 64px;
  }
}

/* AI Response Agent page */
:root {
  --ai-page-bg: #F5F7FA;
  --ai-card-bg: #F0F4FA;
  --ai-text: #0B1B34;
  --ai-text-secondary: #475569;
  --ai-primary: #2D5BFF;
  --ai-border: rgba(0,0,0,0.06);
}

.ai-agent-page {
  background: var(--ai-page-bg);
  color: var(--ai-text);
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.ai-agent-main {
  padding: 80px 0;
}

.ai-agent-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.ai-agent-hero {
  background: linear-gradient(135deg, #0B2545 0%, #123A63 100%);
  color: #ffffff;
  padding: 88px 0 72px;
}

.ai-agent-hero-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-agent-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin: 0;
}

.ai-agent-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
}

.ai-agent-hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 760px;
}

.ai-agent-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.ai-agent-hero-note {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin: 8px 0 0 0;
}

.ai-agent-section {
  padding: 80px 0 0 0;
}

.ai-agent-section-header {
  margin-bottom: 24px;
}

.ai-agent-step-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ai-text-secondary);
  margin: 0 0 4px 0;
}

.ai-agent-step-label.muted {
  color: rgba(11,27,52,0.6);
}

.ai-agent-section-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--ai-text);
}

.ai-agent-section-subtitle {
  font-size: 16px;
  color: var(--ai-text-secondary);
  margin: 0;
}

.ai-agent-card {
  background: var(--ai-card-bg);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid var(--ai-border);
  transition: all 0.2s ease;
}

.ai-agent-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.ai-agent-card-title {
  font-size: 22px;
  margin: 0 0 6px 0;
  font-weight: 700;
  color: var(--ai-text);
}

.ai-agent-helper {
  font-size: 14px;
  color: var(--ai-text-secondary);
  margin: 4px 0 0 0;
}

.ai-agent-upload-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-agent-upload-area {
  border: 2px dashed rgba(45,91,255,0.35);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ai-agent-upload-area:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  background: #f7f9ff;
}

.ai-agent-upload-icon {
  font-size: 32px;
  line-height: 1;
}

.ai-agent-upload-title {
  margin: 0;
  font-weight: 600;
  color: var(--ai-text);
}

.ai-agent-upload-meta {
  margin: 2px 0 0 0;
  color: var(--ai-text-secondary);
  font-size: 14px;
}

.ai-agent-file-input {
  display: none;
}

.ai-agent-file-info {
  background: #e8f3ff;
  border: 1px solid rgba(45,91,255,0.25);
  border-radius: 12px;
  padding: 12px 16px;
}

.ai-agent-file-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.ai-agent-file-status {
  color: #1f9254;
  font-weight: 700;
}

.ai-agent-file-name {
  font-weight: 600;
  color: var(--ai-text);
  flex: 1;
}

.ai-agent-link-button {
  background: transparent;
  border: none;
  color: var(--ai-primary);
  font-weight: 600;
  cursor: pointer;
  padding: 6px 8px;
}

.ai-agent-validation {
  font-size: 14px;
  color: var(--ai-text-secondary);
  border-top: 1px solid var(--ai-border);
  padding-top: 10px;
}

.ai-agent-inline-card {
  background: #fff;
  border: 1px solid var(--ai-border);
  border-radius: 12px;
  padding: 16px;
  margin-top: 12px;
}

.ai-agent-inline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.ai-agent-chip {
  background: rgba(45,91,255,0.12);
  color: var(--ai-primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.ai-agent-info-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  font-size: 14px;
}

.ai-agent-info-grid strong {
  color: var(--ai-primary);
}

.ai-agent-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ai-text);
}

.ai-agent-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--ai-border);
  background: #ffffff;
  font-size: 16px;
  color: var(--ai-text);
  transition: all 0.2s ease;
}

.ai-agent-input:focus {
  outline: none;
  border-color: var(--ai-primary);
  box-shadow: 0 0 0 3px rgba(45,91,255,0.14);
}

.ai-agent-guides {
  background: #fff;
  border: 1px dashed var(--ai-border);
  border-radius: 12px;
  padding: 16px;
}

.ai-agent-guides-title {
  margin: 0 0 8px 0;
  font-weight: 700;
  color: var(--ai-text);
}

.ai-agent-guides-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ai-text-secondary);
  display: grid;
  gap: 6px;
}

.ai-agent-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ai-agent-grid {
  display: grid;
  gap: 20px;
}

.ai-agent-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ai-agent-subcard {
  background: #fff;
  border: 1px solid var(--ai-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-agent-subcard h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--ai-text);
}

.ai-agent-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ai-agent-pill {
  background: rgba(45,91,255,0.12);
  color: var(--ai-primary);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.ai-agent-bullet-list {
  margin: 0;
  padding-left: 18px;
  color: var(--ai-text-secondary);
  display: grid;
  gap: 6px;
}

.ai-agent-divided {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  border: 1px solid var(--ai-border);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
}

.ai-agent-divided-title {
  margin: 0 0 8px 0;
  font-weight: 700;
  color: var(--ai-text);
}

.ai-agent-divided-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.ai-agent-divided-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ai-border);
  color: var(--ai-text-secondary);
}

.ai-agent-divided-list li:last-child {
  border-bottom: none;
}

.ai-agent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ai-agent-btn-primary,
.ai-agent-btn-secondary {
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.ai-agent-btn-primary {
  background: var(--ai-primary);
  color: #ffffff;
  border-color: var(--ai-primary);
}

.ai-agent-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.ai-agent-btn-secondary {
  border-color: var(--ai-primary);
  color: var(--ai-primary);
  background: transparent;
}

.ai-agent-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(45,91,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.ai-agent-btn-lg {
  width: fit-content;
  min-width: 220px;
}

.ai-agent-output {
  background: #fff;
  border: 1px solid var(--ai-border);
  border-radius: 12px;
  min-height: 260px;
  padding: 20px;
}

.ai-agent-placeholder {
  text-align: center;
  color: var(--ai-text-secondary);
  display: grid;
  gap: 8px;
  padding: 24px;
}

.ai-agent-placeholder-icon {
  font-size: 36px;
}

.ai-agent-loading {
  display: grid;
  gap: 10px;
  text-align: center;
  color: var(--ai-text-secondary);
  padding: 20px;
}

.ai-agent-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(45,91,255,0.15);
  border-top-color: var(--ai-primary);
  border-radius: 999px;
  animation: ai-spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes ai-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ai-agent-mini-card {
  min-height: 140px;
}

.ai-agent-grid.ai-agent-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .ai-agent-grid.ai-agent-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ai-agent-grid.ai-agent-grid-three {
    grid-template-columns: 1fr;
  }

  .ai-agent-hero-title {
    font-size: 36px;
  }

  .ai-agent-btn-lg {
    width: 100%;
  }

  .ai-agent-actions {
    flex-direction: column;
  }
}

/* Utility helpers used by inline JS */
.hidden { display: none !important; }
.italic { font-style: italic; }
.text-sm { font-size: 14px; }
.text-blue-600 { color: var(--ai-primary); }
.text-green-600 { color: #1f9254; }
.text-green-800 { color: #0f5c34; }
.text-red-600 { color: #d62626; }
.text-red-500 { color: #d62626; }
.text-green-500 { color: #1f9254; }
.bg-red-50 { background: #fff4f4; }
.rounded-md { border-radius: 10px; }
.p-4 { padding: 16px; }
.mr-2 { margin-right: 8px; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.fade-in { animation: fadeIn 0.35s ease-in; }
.mb-3 { margin-bottom: 12px; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-2 { gap: 8px; }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.border-blue-400 { border-color: rgba(45,91,255,0.6) !important; }
.bg-blue-50 { background: rgba(45,91,255,0.08) !important; }

@media (max-width: 720px) {
  .rc-grid {
    grid-template-columns: 1fr;
  }

  .rc-hero-title {
    font-size: 36px;
  }

  .rc-btn-primary,
  .rc-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

.deadlines-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.deadlines-main {
  background: #F5F7FA;
}

.deadlines-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.roadmap-breadcrumb {
  padding: 16px 0 0;
  color: #475569;
  font-size: 14px;
}

.roadmap-breadcrumb a {
  color: #2D5BFF;
  font-weight: 600;
  text-decoration: none;
}

.roadmap-breadcrumb a:hover {
  text-decoration: underline;
}

.deadlines-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.deadlines-hero h1 {
  margin: 0 0 12px 0;
  font-size: 42px;
  font-weight: 700;
}

.deadlines-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 820px;
  line-height: 1.6;
}

.deadlines-section {
  padding: 80px 0;
}

.deadlines-section-header {
  margin-bottom: 24px;
}

.deadlines-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.deadlines-section-header p {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.deadlines-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.deadlines-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  color: #0B1B34;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deadlines-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.deadlines-card h2,
.deadlines-card h3 {
  margin: 0;
  color: #0B1B34;
  font-weight: 700;
}

.deadlines-card h2 {
  font-size: 30px;
}

.deadlines-card h3 {
  font-size: 22px;
}

.deadlines-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.deadlines-list {
  margin: 0 0 8px 18px;
  color: #475569;
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.deadlines-list strong {
  color: #0B1B34;
}

.deadlines-traps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deadlines-state-card {
  gap: 16px;
}

.deadlines-actions {
  gap: 16px;
}

.deadlines-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.deadlines-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  width: fit-content;
}

.deadlines-action-btn.primary {
  background: #2D5BFF;
  color: #ffffff;
  border-color: #2D5BFF;
}

.deadlines-action-btn.secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.deadlines-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.deadlines-note {
  margin: 4px 0 0 0;
  color: #475569;
  font-size: 15px;
}

.deadlines-card a.deadlines-action-btn {
  margin-top: auto;
}

.deadlines-grid .deadlines-card:last-child a.deadlines-action-btn,
.deadlines-grid .deadlines-card:nth-child(4) a.deadlines-action-btn {
  margin-top: 0;
}

.deadlines-grid .deadlines-card:last-child,
.deadlines-grid .deadlines-card:nth-child(4) {
  gap: 10px;
}

.deadlines-section + .deadlines-section {
  padding-top: 0;
}

@media (max-width: 1024px) {
  .deadlines-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deadlines-traps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .deadlines-hero h1 {
    font-size: 36px;
  }

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

  .deadlines-action-group {
    flex-direction: column;
  }

  .deadlines-action-btn {
    width: 100%;
  }
}


/* Claim Analysis Tools */
.analysis-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.analysis-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.analysis-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.analysis-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.analysis-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 820px;
}

.analysis-section {
  padding: 80px 0;
}

.analysis-section + .analysis-section {
  padding-top: 0;
}

.analysis-section-header {
  margin-bottom: 32px;
}

.analysis-section-title {
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #0B1B34;
}

.analysis-section-description {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.analysis-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  text-decoration: none;
  color: #0B1B34;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.analysis-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.analysis-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #0B1B34;
}

.analysis-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
}

.analysis-card-cta {
  margin-top: auto;
}

.analysis-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2D5BFF;
  text-decoration: none;
}

.analysis-cta-link:hover {
  transform: translateX(2px);
}

.analysis-button-primary {
  background: #2D5BFF;
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.analysis-button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.analysis-button-secondary {
  border: 2px solid #2D5BFF;
  color: #2D5BFF;
  background: transparent;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.analysis-button-secondary:hover {
  transform: translateY(-1px);
  background: rgba(45, 91, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
  .analysis-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .analysis-hero-title {
    font-size: 38px;
  }
}
/* Authority Guides */
.authority-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.authority-main {
  background: #F5F7FA;
}

.authority-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.authority-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.authority-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.authority-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.authority-hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.6;
}

.authority-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.authority-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.authority-btn-primary {
  background: #2D5BFF;
  color: #ffffff;
  border: 2px solid #2D5BFF;
}

.authority-btn-secondary {
  background: transparent;
  color: #2D5BFF;
  border: 2px solid #2D5BFF;
}

.authority-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.authority-section {
  padding: 80px 0;
}

.authority-section-header {
  margin-bottom: 24px;
  max-width: 860px;
}

.authority-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #0B1B34;
  margin: 0 0 8px 0;
}

.authority-section-subtitle {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.authority-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  text-decoration: none;
  color: #0B1B34;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.authority-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.authority-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #0B1B34;
}

.authority-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.authority-card-cta {
  font-size: 14px;
  font-weight: 600;
  color: #2D5BFF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

.authority-card:hover .authority-card-cta {
  transform: translateX(2px);
}

@media (max-width: 1024px) {
  .authority-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .authority-hero {
    padding: 72px 0;
  }
}

.doclib-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.doclib-main {
  background: #F5F7FA;
}

.doclib-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.doclib-section {
  padding: 80px 0;
}

.doclib-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.doclib-hero-content {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

.doclib-hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.doclib-hero p {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.doclib-search-section {
  padding: 80px 0;
}

.doclib-search-wrap {
  display: flex;
  justify-content: flex-start;
}

.doclib-search {
  width: 100%;
  max-width: 420px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  font-size: 16px;
  color: #0B1B34;
}

.doclib-search:focus {
  outline: none;
  border-color: #2D5BFF;
  box-shadow: 0 0 0 3px rgba(45, 91, 255, 0.14);
}

.doclib-section-header {
  margin-bottom: 24px;
}

.doclib-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 600;
  color: #0B1B34;
}

.doclib-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.doclib-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.doclib-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: #0B1B34;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doclib-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.doclib-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #0B1B34;
}

.doclib-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.5;
}

.doclib-card-cta {
  font-size: 14px;
  font-weight: 600;
  color: #2D5BFF;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.doclib-card-cta svg {
  width: 16px;
  height: 16px;
}

.doclib-card.is-hidden {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.doclib-group {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

.doclib-group:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .doclib-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .doclib-hero {
    padding: 72px 0;
  }

  .doclib-hero h1 {
    font-size: 36px;
  }

  .doclib-search-section {
    padding: 40px 0 24px;
  }

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

@media (max-width: 720px) {
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .authority-hero {
    padding: 64px 0;
  }

  .authority-hero-title {
    font-size: 36px;
  }

  .authority-btn {
    width: 100%;
  }
}

/* Authority guide scaffold pages */
.hero-section {
  background: #0B1B34;
  color: #ffffff;
  padding: 72px 0 64px;
}

.hero-section .hero-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-section h1 {
  margin: 0 0 12px 0;
  font-size: 38px;
  font-weight: 700;
}

.hero-section .subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.container.standard-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px 96px;
  background: #F5F7FA;
}

.frosted-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #0B1B34;
}

.frosted-card h2 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 600;
  color: #0B1B34;
}

.frosted-card p,
.frosted-card ul,
.frosted-card li {
  color: #475569;
  font-size: 16px;
}

.frosted-card ul {
  padding-left: 20px;
}

.back-link {
  display: inline-block;
  margin-top: 16px;
  color: #2D5BFF;
  font-weight: 600;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

/* Authority sidebar & layout */
.authority-layout {
  display: flex;
  gap: 24px;
}

.authority-sidebar {
  width: 260px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 20px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.authority-sidebar input {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
  background: #ffffff;
  color: #0B1B34;
}

.authority-sidebar input::placeholder {
  color: #475569;
}

.authority-nav h3 {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #0B1B34;
}

.authority-nav ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0 0;
}

.authority-nav ul li {
  margin: 6px 0;
}

.authority-nav a {
  text-decoration: none;
  color: #0B1B34;
  transition: color 0.2s ease;
}

.authority-nav a:hover {
  color: #2D5BFF;
}

.authority-content {
  flex: 1;
}

.breadcrumbs {
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #475569;
}

.breadcrumbs a {
  color: #2D5BFF;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .authority-layout {
    flex-direction: column;
  }

  .authority-sidebar {
    position: relative;
    width: 100%;
  }
}

.hero-section {
  padding: 80px 0;
}

.hero-navy {
  background: linear-gradient(135deg, #0B2545 0%, #123A63 100%);
  color: #ffffff;
}

.hero-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 12px;
}

.page-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-5);
  display: grid;
  gap: var(--space-5);
  background: #F5F7FA;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.hero-content h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
}

.hero-content .subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.container.standard-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 24px;
  background: #F5F7FA;
  color: #0B1B34;
}

.frosted-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.frosted-card h2 {
  margin: 0 0 12px 0;
  font-size: 28px;
  font-weight: 600;
  color: #0B1B34;
}

.frosted-card p {
  margin: 0 0 16px 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.frosted-card ul {
  margin: 0 0 16px 20px;
  color: #0B1B34;
  line-height: 1.6;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2D5BFF;
  font-weight: 600;
  text-decoration: none;
}

.back-link:hover {
  transform: translateX(-2px);
}

@media (max-width: 720px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .container.standard-page {
    padding: 64px 20px;
  }
}

/* Document Library 2.0 */
:root {
  --dl-navy: #0B2545;
  --dl-primary: #2D5BFF;
  --dl-bg: #F7F9FC;
  --dl-card: rgba(255, 255, 255, 0.92);
  --dl-border: rgba(11, 27, 52, 0.12);
  --dl-text: #1f2937;
  --dl-subtle: #475569;
}

body.dl-shell {
  margin: 0;
  background: var(--dl-bg);
  color: var(--dl-text);
  font-family: 'Inter', sans-serif;
}

.dl-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.dl-hero {
  background: linear-gradient(135deg, #0B2545 0%, #123A63 100%);
  color: #ffffff;
  padding: 96px 0 80px;
}

.dl-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px 0;
}

.dl-breadcrumbs a {
  color: #dbeafe;
  text-decoration: none;
  font-weight: 600;
}

.dl-breadcrumbs a:hover {
  text-decoration: underline;
}

.dl-breadcrumbs span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.55);
}

.dl-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 6px 0;
}

.dl-hero h1 {
  margin: 0 0 10px 0;
  font-size: 44px;
  font-weight: 800;
}

.dl-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  max-width: 840px;
}

.dl-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.dl-pill {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.dl-main {
  background: var(--dl-bg);
}

.dl-section {
  padding: 64px 0;
}

.dl-section-header {
  margin-bottom: 20px;
}

.dl-section-header h2 {
  margin: 0 0 6px 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--dl-text);
}

.dl-section-header p {
  margin: 0;
  font-size: 16px;
  color: var(--dl-subtle);
}

.glass-card {
  background: var(--dl-card);
  border: 1px solid var(--dl-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 50px rgba(11, 27, 52, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--dl-text);
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(11, 27, 52, 0.12);
}

.glass-card h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--dl-text);
}

.glass-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--dl-text);
}

.glass-card p {
  margin: 0;
  font-size: 16px;
  color: var(--dl-subtle);
  line-height: 1.6;
}

.dl-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--dl-subtle);
  font-size: 15px;
  line-height: 1.6;
}

.dl-grid {
  display: grid;
  gap: 20px;
}

.dl-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.dl-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dl-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.dl-card-link .dl-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--dl-primary);
}

.dl-meta {
  font-size: 14px;
  color: var(--dl-subtle);
}

.dl-footer-nav {
  margin-top: 24px;
}

.dl-link {
  color: var(--dl-primary);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dl-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .dl-hero {
    padding: 80px 0 68px;
  }

  .dl-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .dl-hero h1 {
    font-size: 34px;
  }

  .dl-section {
    padding: 48px 0;
  }

  .glass-card {
    padding: 20px;
  }
}

/* Claim Journal Dashboard */
.journal-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.journal-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.journal-breadcrumb {
  padding: 12px 0 0;
}

.journal-link {
  color: #2D5BFF;
  font-weight: 600;
  text-decoration: none;
}

.journal-link:hover {
  text-decoration: underline;
}

.journal-stage-label {
  margin-left: 12px;
  color: #475569;
  font-size: 14px;
}

.journal-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.journal-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.journal-hero-text h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
}

.journal-hero-text p {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
}

.journal-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.journal-button {
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.journal-button.primary {
  background: #2D5BFF;
  color: #ffffff;
  border-color: #2D5BFF;
}

.journal-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.journal-button.secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.journal-button.secondary:hover {
  transform: translateY(-2px);
  background: rgba(45, 91, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.journal-button.tertiary {
  background: #ffffff;
  color: #0B1B34;
  border-color: rgba(0, 0, 0, 0.06);
  padding: 12px 18px;
  font-size: 15px;
}

.journal-button.tertiary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.journal-button.ghost {
  background: transparent;
  color: #475569;
  border-color: rgba(0, 0, 0, 0.06);
}

.journal-dashboard-section {
  padding: 80px 0;
}

.journal-dashboard {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.journal-left,
.journal-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.journal-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
}

.journal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.journal-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.journal-card-header h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #0B1B34;
}

.journal-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  color: #475569;
}

.journal-subtext {
  margin: 6px 0 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.journal-meta {
  font-size: 14px;
  color: #475569;
  align-self: center;
}

.journal-form {
  display: grid;
  gap: 12px;
}

.journal-form label {
  font-weight: 600;
  color: #0B1B34;
  font-size: 15px;
}

.journal-form input,
.journal-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  font-size: 16px;
  color: #0B1B34;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.journal-form input:focus,
.journal-form textarea:focus {
  outline: none;
  border-color: #2D5BFF;
  box-shadow: 0 0 0 3px rgba(45, 91, 255, 0.14);
}

.journal-form textarea {
  min-height: 140px;
  resize: vertical;
}

.journal-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 4px;
}

.journal-upload {
  display: grid;
  gap: 12px;
}

.journal-dropzone {
  border: 2px dashed rgba(45, 91, 255, 0.35);
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.journal-dropzone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  background: #f7f9ff;
}

.journal-drop-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(45, 91, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #2D5BFF;
  font-size: 18px;
}

.journal-drop-title {
  margin: 0;
  font-weight: 700;
  color: #0B1B34;
}

.journal-drop-helper {
  margin: 4px 0 0 0;
  color: #475569;
  font-size: 14px;
}

.journal-file-input {
  display: none;
}

.journal-helper-text {
  margin: 0;
  color: #475569;
  font-size: 14px;
}

.journal-tag-grid {
  display: grid;
  gap: 16px;
}

.journal-insight-block {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 16px;
}

.journal-label {
  margin: 0 0 6px 0;
  font-weight: 700;
  color: #0B1B34;
  font-size: 15px;
}

.journal-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journal-pill {
  background: rgba(45, 91, 255, 0.12);
  color: #2D5BFF;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.journal-list {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  display: grid;
  gap: 6px;
  font-size: 15px;
}

.journal-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.journal-entries {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.journal-entry {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  transition: all 0.2s ease;
}

.journal-entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.journal-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.journal-entry-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0B1B34;
}

.journal-entry-date {
  font-size: 14px;
  color: #475569;
}

.journal-entry-body {
  margin: 0;
  color: #0B1B34;
  line-height: 1.6;
  white-space: pre-wrap;
  font-size: 16px;
}

.journal-empty-state {
  text-align: center;
  padding: 32px;
  color: #475569;
  background: #ffffff;
  border: 1px dashed rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.journal-pill-section {
  display: grid;
  gap: 12px;
}

.journal-stat-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 12px;
}

.journal-stat {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 14px;
}

.journal-stat p {
  margin: 0 0 6px 0;
  color: #475569;
  font-size: 14px;
}

.journal-stat strong {
  font-size: 20px;
  color: #0B1B34;
}

.journal-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.journal-export .journal-button {
  width: fit-content;
}

@media (max-width: 1024px) {
  .journal-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 820px) {
  .journal-dashboard {
    grid-template-columns: 1fr;
  }

  .journal-hero-text h1 {
    font-size: 36px;
  }

  .journal-button {
    width: 100%;
    justify-content: center;
  }

  .journal-form-actions {
    justify-content: stretch;
  }
}

/* Claim Timeline & Sequence Guide */
.timeline-page {
  margin: 0;
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.timeline-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline-section {
  padding: 80px 0;
}

.timeline-section + .timeline-section {
  padding-top: 0;
}

.timeline-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 96px 0 88px;
}

.timeline-hero h1 {
  margin: 0 0 12px 0;
  font-size: 42px;
  font-weight: 700;
}

.timeline-hero-subtitle {
  margin: 0 0 24px 0;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 840px;
  line-height: 1.6;
}

.timeline-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 8px 0;
}

.timeline-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.timeline-btn-primary,
.timeline-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.timeline-btn-primary {
  background: #2D5BFF;
  color: #ffffff;
  border-color: #2D5BFF;
}

.timeline-btn-secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.timeline-btn-primary:hover,
.timeline-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.timeline-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.timeline-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
}

.timeline-card,
.timeline-overview-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.timeline-card:hover,
.timeline-overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.timeline-card h2,
.timeline-overview-card h2 {
  margin: 0 0 12px 0;
  font-size: 28px;
  font-weight: 700;
  color: #0B1B34;
}

.timeline-card h3 {
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 600;
  color: #0B1B34;
}

.timeline-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.timeline-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

.timeline-step {
  position: relative;
  padding: 24px 24px 24px 80px;
  background: #F0F4FA;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.timeline-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 36px;
  bottom: -48px;
  width: 2px;
  background: rgba(0,0,0,0.10);
}

.timeline-step:last-child::before {
  display: none;
}

.timeline-step-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2D5BFF;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 12px rgba(45,91,255,0.25);
}

.timeline-step-content h3 {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 700;
  color: #0B1B34;
}

.timeline-step-content p {
  margin: 0 0 12px 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.timeline-connector {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0,0,0,0.10);
}

.timeline-resources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-resources a {
  font-weight: 600;
  color: #2D5BFF;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(45,91,255,0.08);
  border: 1px solid rgba(45,91,255,0.14);
}

.timeline-resources a:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-bullets {
  margin: 0 0 16px 20px;
  color: #475569;
  display: grid;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.timeline-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.timeline-doc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.timeline-doc-grid h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.timeline-doc-grid p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.timeline-use-with-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
}

.timeline-use-with-card h2 {
  margin: 0 0 16px 0;
  font-size: 28px;
  font-weight: 700;
  color: #0B1B34;
}

.timeline-use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-mini-card {
  background: #F0F4FA;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.timeline-mini-card h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.timeline-mini-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .timeline-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-hero {
    padding: 80px 0 72px;
  }

  .timeline-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .timeline-section {
    padding: 64px 0;
  }

  .timeline-wrapper {
    gap: 40px;
  }

  .timeline-step {
    padding: 22px 20px 22px 64px;
  }

  .timeline-step::before {
    left: 32px;
    top: 32px;
  }

  .timeline-step-badge {
    left: 18px;
  }

  .timeline-step-content h3 {
    font-size: 22px;
  }

  .timeline-doc-grid,
  .timeline-use-grid {
    grid-template-columns: 1fr;
  }

  .timeline-btn-primary,
  .timeline-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Claim Command Pro Agent */
.agent-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.agent-main {
  padding: 80px 0 96px;
}

.agent-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.agent-stack {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.agent-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.agent-hero-content {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.agent-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.agent-hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.agent-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.agent-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.agent-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.agent-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.agent-card,
.agent-overview-card,
.agent-how-it-works,
.agent-connected,
.agent-benefits {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.agent-card:hover,
.agent-overview-card:hover,
.agent-how-it-works:hover,
.agent-connected:hover,
.agent-benefits:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.agent-card h3 {
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.agent-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.agent-list {
  margin: 12px 0 0 0;
  padding-left: 18px;
  color: #475569;
  display: grid;
  gap: 8px;
  font-size: 16px;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.agent-btn-primary,
.agent-btn-secondary {
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.agent-btn-primary {
  background: #2D5BFF;
  color: #ffffff;
  border-color: #2D5BFF;
}

.agent-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.agent-btn-secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.agent-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(45,91,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.agent-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

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

.agent-step h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.agent-step p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.5;
}

.agent-step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2D5BFF;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 12px rgba(45,91,255,0.18);
  flex-shrink: 0;
}

.agent-connected-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.agent-pill {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 15px;
  color: #0B1B34;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.agent-benefits .agent-list {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-connected-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-hero {
    padding: 72px 0;
  }
}

@media (max-width: 720px) {
  .agent-grid,
  .agent-steps,
  .agent-connected-grid {
    grid-template-columns: 1fr;
  }

  .agent-hero h1 {
    font-size: 38px;
  }

  .agent-btn-primary,
  .agent-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Evidence Organizer */
.evo-body {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.evo-main {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 80px;
}

.evo-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.evo-section {
  padding: 0;
}

.evo-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.evo-hero h1 {
  margin: 0 0 12px 0;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.evo-hero p {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 760px;
}

.evo-overview-card,
.evo-card,
.evo-upload-card,
.evo-gap-card,
.evo-export-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: 0.2s ease;
}

.evo-card:hover,
.evo-overview-card:hover,
.evo-upload-card:hover,
.evo-gap-card:hover,
.evo-export-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.evo-overview-card h2,
.evo-gap-card h2,
.evo-export-card h2 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.evo-overview-card p,
.evo-overview-card li,
.evo-gap-card li,
.evo-gap-card p,
.evo-export-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.evo-overview-card ul,
.evo-gap-card ul {
  padding-left: 18px;
  display: grid;
  gap: 8px;
  margin: 12px 0 0 0;
}

.evo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.evo-card h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.evo-card p {
  margin: 0 0 16px 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.evo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.evo-button.primary {
  background: #2D5BFF;
  color: #ffffff;
  border-color: #2D5BFF;
}

.evo-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.evo-button.secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.evo-button.secondary:hover {
  transform: translateY(-2px);
  background: rgba(45,91,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.evo-upload-card {
  display: grid;
  gap: 16px;
}

.evo-upload-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.evo-kicker {
  margin: 0 0 6px 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  color: #475569;
}

.evo-upload-card h2 {
  margin: 0 0 6px 0;
  font-size: 28px;
  font-weight: 700;
  color: #0B1B34;
}

.evo-subtext {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.evo-upload-box {
  border: 2px dashed rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  background: #ffffff;
  display: grid;
  gap: 8px;
}

.evo-upload-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(45,91,255,0.12);
  margin: 0 auto;
}

.evo-upload-text {
  font-weight: 700;
  font-size: 18px;
  color: #0B1B34;
}

.evo-upload-hint {
  margin: 0;
  color: #475569;
  font-size: 15px;
}

.evo-filter-bar {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.evo-filter-bar::-webkit-scrollbar {
  display: none;
}

.evo-filter-pill {
  padding: 10px 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  color: #0B1B34;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.evo-filter-pill.selected {
  color: #2D5BFF;
  border-color: #2D5BFF;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.evo-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.evo-evidence-card {
  background: #F0F4FA;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: grid;
  gap: 12px;
  transition: 0.2s ease;
}

.evo-evidence-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.evo-thumb {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(45,91,255,0.12), rgba(11,27,52,0.08));
}

.evo-evidence-meta h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 700;
  color: #0B1B34;
}

.evo-evidence-meta p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

.evo-evidence-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.evo-timeline {
  display: grid;
  gap: 16px;
}

.evo-timeline h2 {
  margin: 0 0 4px 0;
  font-size: 28px;
  font-weight: 700;
  color: #0B1B34;
}

.evo-timeline-list {
  display: grid;
  gap: 16px;
}

.evo-timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.evo-timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E2E8F0;
  position: relative;
  margin-top: 6px;
}

.evo-timeline-dot.completed {
  background: #2D5BFF;
  box-shadow: 0 0 0 6px rgba(45,91,255,0.12);
}

.evo-timeline-item + .evo-timeline-item .evo-timeline-dot::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 7px;
  width: 2px;
  height: calc(100% + 16px);
  background: rgba(0,0,0,0.08);
  z-index: -1;
}

.evo-timeline-content {
  background: #F0F4FA;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: grid;
  gap: 6px;
}

.evo-timestamp {
  margin: 0;
  color: #475569;
  font-size: 14px;
}

.evo-timeline-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.evo-timeline-content p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.evo-gap-card {
  display: grid;
  gap: 8px;
}

.evo-export-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (max-width: 1024px) {
  .evo-grid,
  .evo-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .evo-upload-header,
  .evo-export-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .evo-main {
    gap: 60px;
  }

  .evo-grid,
  .evo-evidence-grid {
    grid-template-columns: 1fr;
  }

  .evo-hero {
    padding: 64px 0;
  }

  .evo-hero h1 {
    font-size: 38px;
  }

  .evo-button {
    width: 100%;
  }

  .evo-upload-card h2,
  .evo-gap-card h2,
  .evo-export-card h2 {
    font-size: 26px;
  }
}

/* Documentation Guides */
:root {
  --docguides-bg: #F5F7FA;
  --docguides-card: #F0F4FA;
  --docguides-text: #0B1B34;
  --docguides-secondary: #475569;
  --docguides-primary: #2D5BFF;
  --docguides-border: rgba(0,0,0,0.04);
}

.docguides-page {
  margin: 0;
  background: var(--docguides-bg);
  color: var(--docguides-text);
  font-family: 'Inter', sans-serif;
}

.docguides-main {
  background: var(--docguides-bg);
}

.docguides-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.docguides-section {
  padding: 80px 0;
}

.docguides-section + .docguides-section {
  padding-top: 0;
}

.docguides-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.docguides-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  margin: 0 0 8px 0;
}

.docguides-hero-title {
  margin: 0 0 12px 0;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
}

.docguides-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 820px;
  line-height: 1.6;
}

.docguides-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.docguides-btn-primary,
.docguides-btn-secondary {
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.docguides-btn-primary {
  background: var(--docguides-primary);
  color: #ffffff;
  border-color: var(--docguides-primary);
}

.docguides-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.docguides-btn-secondary {
  background: transparent;
  color: var(--docguides-primary);
  border-color: var(--docguides-primary);
}

.docguides-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(45,91,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.docguides-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--docguides-text);
}

.docguides-section-header p {
  margin: 0;
  color: var(--docguides-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.docguides-card {
  background: var(--docguides-card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--docguides-border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
  color: var(--docguides-text);
}

.docguides-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.docguides-card h2 {
  margin: 0 0 12px 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--docguides-text);
}

.docguides-card h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--docguides-text);
}

.docguides-card p {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: var(--docguides-secondary);
  line-height: 1.6;
}

.docguides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.docguides-card-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--docguides-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.docguides-card-cta:hover {
  transform: translateX(2px);
}

.docguides-list {
  margin: 0;
  padding-left: 18px;
  color: var(--docguides-secondary);
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.docguides-section-card {
  display: grid;
  gap: 12px;
}

.docguides-checklist-card {
  display: grid;
  gap: 18px;
}

.docguides-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.docguides-checklist-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--docguides-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.docguides-usewith-card {
  background: var(--docguides-card);
}

.docguides-usewith-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.docguides-usewith-card-item {
  background: #ffffff;
  border: 1px solid var(--docguides-border);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  font-weight: 700;
  color: var(--docguides-text);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

@media (max-width: 1024px) {
  .docguides-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docguides-usewith-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docguides-hero-title {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .docguides-section {
    padding: 64px 0;
  }

  .docguides-grid,
  .docguides-checklist-grid,
  .docguides-usewith-grid {
    grid-template-columns: 1fr;
  }

  .docguides-actions {
    flex-direction: column;
  }

  .docguides-btn-primary,
  .docguides-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .docguides-hero {
    padding: 72px 0;
  }

  .docguides-hero-title {
    font-size: 36px;
  }
}

/* Document Generator */
:root {
  --docgen-bg: #F5F7FA;
  --docgen-card: #F0F4FA;
  --docgen-text: #0B1B34;
  --docgen-text-secondary: #475569;
  --docgen-primary: #2D5BFF;
  --docgen-border: rgba(0,0,0,0.04);
}

.docgen-page {
  margin: 0;
  background: var(--docgen-bg);
  color: var(--docgen-text);
  font-family: 'Inter', sans-serif;
}

.docgen-main {
  background: var(--docgen-bg);
}

.docgen-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.docgen-section {
  padding: 80px 0;
}

.docgen-hero {
  background: linear-gradient(135deg, #0B2545 0%, #123A63 100%);
  color: #ffffff;
  padding: 80px 0;
}

.docgen-hero-content {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.docgen-hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
}

.docgen-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

.docgen-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--docgen-text);
}

.docgen-section-header p {
  margin: 0;
  font-size: 16px;
  color: var(--docgen-text-secondary);
  line-height: 1.6;
}

.docgen-overview-card,
.docgen-category-card,
.docgen-template-card,
.docgen-sidebar-card {
  background: var(--docgen-card);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--docgen-border);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.docgen-overview-card:hover,
.docgen-category-card:hover,
.docgen-template-card:hover,
.docgen-sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.docgen-overview-card h2 {
  margin: 0 0 12px 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--docgen-text);
}

.docgen-overview-card p {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: var(--docgen-text-secondary);
  line-height: 1.6;
}

.docgen-overview-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--docgen-text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.docgen-search {
  width: 100%;
}

.docgen-search-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  font-size: 16px;
  color: var(--docgen-text);
  transition: all 0.2s ease;
}

.docgen-search-input:focus {
  outline: none;
  border-color: var(--docgen-primary);
  box-shadow: 0 0 0 3px rgba(45,91,255,0.14);
}

.docgen-category-grid,
.docgen-template-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.docgen-category-card h3,
.docgen-template-card h3,
.docgen-sidebar-card h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--docgen-text);
}

.docgen-category-card p,
.docgen-template-card p {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: var(--docgen-text-secondary);
  line-height: 1.5;
}

.docgen-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  background: var(--docgen-primary);
  color: #ffffff;
  border: 2px solid var(--docgen-primary);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.docgen-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.docgen-content {
  display: grid;
  grid-template-columns: 2.2fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.docgen-main-column {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.docgen-category-section .docgen-template-grid {
  margin-top: 20px;
}

.docgen-sidebar {
  position: sticky;
  top: 100px;
}

.docgen-sidebar-card ul {
  margin: 12px 0 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--docgen-text-secondary);
  font-size: 16px;
  line-height: 1.5;
}

.docgen-section--with-sidebar {
  padding-top: 40px;
}

@media (max-width: 1024px) {
  .docgen-category-grid,
  .docgen-template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .docgen-content {
    grid-template-columns: 1fr;
  }

  .docgen-sidebar {
    position: relative;
    top: auto;
  }
}

/* Carrier Directory */
.carrier-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.carrier-main {
  background: #F5F7FA;
}

.carrier-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.carrier-section {
  padding: 80px 0;
}

.carrier-stack {
  display: grid;
  gap: 24px;
}

.carrier-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.carrier-hero h1 {
  margin: 0 0 12px 0;
  font-size: 42px;
  font-weight: 700;
}

.carrier-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 820px;
  line-height: 1.6;
}

.carrier-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.carrier-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
}

.carrier-overview-card,
.carrier-card,
.carrier-req-card,
.carrier-doi-card,
.carrier-tool-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: 0.2s ease;
  color: #0B1B34;
}

.carrier-overview-card:hover,
.carrier-card:hover,
.carrier-req-card:hover,
.carrier-doi-card:hover,
.carrier-tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.carrier-overview-card h2,
.carrier-req-card h2 {
  margin: 0 0 12px 0;
  font-size: 30px;
  font-weight: 700;
  color: #0B1B34;
}

.carrier-overview-card ul,
.carrier-req-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.carrier-search-bar {
  width: 100%;
}

.carrier-search-bar input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #ffffff;
  font-size: 16px;
  color: #0B1B34;
  transition: all 0.2s ease;
}

.carrier-search-bar input:focus {
  outline: none;
  border-color: #2D5BFF;
  box-shadow: 0 0 0 3px rgba(45,91,255,0.14);
}

.carrier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.carrier-card-header {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}

.carrier-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.carrier-card h4 {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: 700;
  color: #0B1B34;
}

.carrier-meta {
  margin: 0;
  color: #475569;
  font-size: 15px;
}

.carrier-contact {
  display: grid;
  gap: 4px;
  margin: 6px 0 12px 0;
  color: #0B1B34;
  font-size: 16px;
}

.carrier-contact a {
  color: #2D5BFF;
  text-decoration: none;
  font-weight: 600;
}

.carrier-contact a:hover {
  text-decoration: underline;
}

.carrier-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 12px 0;
}

.carrier-btn-primary,
.carrier-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

.carrier-btn-primary {
  background: #2D5BFF;
  color: #ffffff;
  border-color: #2D5BFF;
}

.carrier-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.carrier-btn-secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.carrier-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(45,91,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.carrier-doc-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

.carrier-req-card {
  display: grid;
  gap: 10px;
}

.carrier-doi-card .carrier-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.carrier-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.carrier-tool-card h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.carrier-tool-card p {
  margin: 0 0 10px 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .carrier-grid,
  .carrier-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .carrier-hero {
    padding: 72px 0;
  }

  .carrier-hero h1 {
    font-size: 36px;
  }

  .carrier-section {
    padding: 64px 0;
  }

  .carrier-grid,
  .carrier-tools-grid {
    grid-template-columns: 1fr;
  }

  .carrier-actions {
    flex-direction: column;
  }

  .carrier-btn-primary,
  .carrier-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .docgen-hero {
    padding: 72px 0;
  }

  .docgen-hero h1 {
    font-size: 38px;
  }

  .docgen-category-grid,
  .docgen-template-grid {
    grid-template-columns: 1fr;
  }

  .docgen-button {
    width: 100%;
  }
}

/* Insurance Company Tactics */
.tactics-page {
  margin: 0;
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.tactics-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.tactics-section {
  padding: 80px 0;
}

.tactics-section + .tactics-section {
  padding-top: 0;
}

.tactics-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.tactics-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
}

.tactics-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.tactics-hero-content {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.tactics-hero-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

.tactics-hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
}

.tactics-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.tactics-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tactics-btn-primary,
.tactics-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.tactics-btn-primary {
  background: #2D5BFF;
  color: #ffffff;
  border-color: #2D5BFF;
}

.tactics-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.tactics-btn-secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.tactics-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(45,91,255,0.08);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.tactics-overview-card,
.tactics-card,
.tactics-counter-card,
.tactics-tool-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: 0.2s ease;
  color: #0B1B34;
}

.tactics-card:hover,
.tactics-tool-card:hover,
.tactics-overview-card:hover,
.tactics-counter-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.tactics-overview-card h2,
.tactics-counter-card h2 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.tactics-card h3,
.tactics-tool-card h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.tactics-counter-card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.tactics-overview-card p,
.tactics-card p,
.tactics-tool-card p {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.tactics-grid,
.tactics-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tactics-card-cta {
  font-size: 14px;
  font-weight: 700;
  color: #2D5BFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tactics-card:hover .tactics-card-cta,
.tactics-tool-card:hover .tactics-card-cta {
  transform: translateX(2px);
}

.tactics-overview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.tactics-counter-card {
  display: grid;
  gap: 18px;
}

.tactics-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tactics-counter-grid ul {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .tactics-grid,
  .tactics-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tactics-hero {
    padding: 72px 0;
  }
}

@media (max-width: 720px) {
  .tactics-section {
    padding: 64px 0;
  }

  .tactics-grid,
  .tactics-tools-grid,
  .tactics-counter-grid {
    grid-template-columns: 1fr;
  }

  .tactics-hero h1 {
    font-size: 36px;
  }

  .tactics-btn-primary,
  .tactics-btn-secondary {
    width: 100%;
  }

  .tactics-hero-actions,
  .tactics-overview-actions {
    flex-direction: column;
  }
}

/* Knowledge Center */
.knowledge-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.knowledge-main {
  background: #F5F7FA;
}

.knowledge-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.knowledge-section {
  padding: 80px 0;
}

.knowledge-section + .knowledge-section {
  padding-top: 0;
}

.knowledge-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.knowledge-hero h1 {
  margin: 0 0 12px 0;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
}

.knowledge-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 760px;
  line-height: 1.6;
}

.knowledge-hero-kicker {
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.knowledge-hero-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.knowledge-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  background: #2D5BFF;
  color: #ffffff;
  border: 2px solid #2D5BFF;
  text-decoration: none;
  transition: all 0.2s ease;
}

.knowledge-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.knowledge-button-secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.knowledge-section-header {
  margin-bottom: 24px;
}

.knowledge-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.knowledge-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
}

.knowledge-overview-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 24px;
  align-items: center;
  transition: 0.2s ease;
}

.knowledge-overview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.knowledge-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  color: #475569;
  margin: 0 0 8px 0;
}

.knowledge-overview-card h2 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.knowledge-overview-card p {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.knowledge-overview-card ul {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.knowledge-overview-actions {
  display: grid;
  gap: 12px;
  justify-content: start;
}

.knowledge-search {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: grid;
  gap: 8px;
}

.knowledge-search input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #F5F7FA;
  font-size: 16px;
  color: #0B1B34;
  transition: all 0.2s ease;
}

.knowledge-search input:focus {
  outline: none;
  border-color: #2D5BFF;
  box-shadow: 0 0 0 3px rgba(45,91,255,0.14);
  background: #ffffff;
}

.knowledge-search-helper {
  margin: 0;
  font-size: 14px;
  color: #475569;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.knowledge-card,
.knowledge-tool-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.knowledge-card:hover,
.knowledge-tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.knowledge-card h3,
.knowledge-tool-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.knowledge-card p,
.knowledge-tool-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.knowledge-card-cta {
  font-size: 14px;
  font-weight: 700;
  color: #2D5BFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.knowledge-card-cta:hover {
  transform: translateX(2px);
}

.knowledge-featured-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: grid;
  gap: 20px;
}

.knowledge-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.knowledge-article {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 12px;
  padding: 18px;
  display: grid;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.knowledge-article h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.knowledge-article p {
  margin: 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.5;
}

.knowledge-tools-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .knowledge-grid,
  .knowledge-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-featured-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-overview-card {
    grid-template-columns: 1fr;
  }

  .knowledge-hero {
    padding: 72px 0;
  }

  .knowledge-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .knowledge-section {
    padding: 64px 0;
  }

  .knowledge-grid,
  .knowledge-tools-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-hero h1 {
    font-size: 34px;
  }

  .knowledge-button,
  .knowledge-button-secondary {
    width: 100%;
    justify-content: center;
  }

  .knowledge-hero-actions {
    flex-direction: column;
  }
}

/* Recommended Resources Page */
.resources-page {
  margin: 0;
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.resources-main {
  background: #F5F7FA;
}

.resources-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.resources-section {
  padding: 80px 0;
}

.resources-section + .resources-section {
  padding-top: 0;
}

.resources-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 96px 0 88px;
}

.resources-hero-kicker {
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
}

.resources-hero h1 {
  margin: 0 0 12px 0;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
}

.resources-hero-subtitle {
  margin: 0 0 20px 0;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 820px;
  line-height: 1.6;
}

.resources-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.resources-btn-primary,
.resources-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.resources-btn-primary {
  background: #0B1B34;
  color: #ffffff;
  border-color: #0B1B34;
  box-shadow: 0 4px 14px rgba(11,27,52,0.18);
}

.resources-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,27,52,0.24);
}

.resources-btn-secondary {
  background: #ffffff;
  color: #0B1B34;
  border-color: rgba(0,0,0,0.08);
}

.resources-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.resources-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.resources-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.resources-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  color: #0B1B34;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s ease;
}

.resources-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.resources-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.resources-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.resources-card-cta {
  font-size: 14px;
  font-weight: 700;
  color: #0B1B34;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.resources-card:hover .resources-card-cta {
  transform: translateX(2px);
}

.resources-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.resources-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.resources-overview-card {
  display: grid;
  gap: 18px;
}

.resources-overview-head h2 {
  margin: 0 0 6px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.resources-overview-head p {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.resources-overview-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.resources-overview-block h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.resources-overview-block p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.resources-benefits {
  display: grid;
  gap: 10px;
}

.resources-benefits-title {
  margin: 0;
  font-weight: 700;
  color: #0B1B34;
}

.resources-benefits-list {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  display: grid;
  gap: 6px;
  font-size: 16px;
  line-height: 1.5;
}

.resources-section-block .resources-note {
  margin-top: 20px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.resources-note h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.resources-note p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.resources-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.resources-tool-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  text-decoration: none;
  color: #0B1B34;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s ease;
}

.resources-tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.resources-tool-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.resources-tool-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.resources-action-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.resources-action-card h2 {
  margin: 0 0 6px 0;
  font-size: 32px;
  font-weight: 800;
  color: #0B1B34;
}

.resources-action-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.resources-action-cta .resources-btn-primary {
  box-shadow: 0 8px 24px rgba(11,27,52,0.2);
}

@media (max-width: 1024px) {
  .resources-hero {
    padding: 80px 0 72px;
  }

  .resources-category-grid,
  .resources-card-grid,
  .resources-tools-grid,
  .resources-overview-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .resources-hero h1 {
    font-size: 40px;
  }

  .resources-section {
    padding: 64px 0;
  }

  .resources-category-grid,
  .resources-card-grid,
  .resources-tools-grid,
  .resources-overview-columns {
    grid-template-columns: 1fr;
  }

  .resources-hero-actions,
  .resources-action-card {
    flex-direction: column;
  }

  .resources-btn-primary,
  .resources-btn-secondary {
    width: 100%;
  }

  .resources-action-card {
    align-items: flex-start;
  }
}

/* How to Use page */
.htu-page {
  margin: 0;
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.htu-page-shell {
  background: #F5F7FA;
}

.htu-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.htu-section {
  padding: 80px 0;
}

.htu-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.htu-hero-title {
  margin: 0 0 12px 0;
  font-size: 42px;
  font-weight: 700;
}

.htu-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  max-width: 820px;
  line-height: 1.6;
}

.htu-section-header {
  margin-bottom: 24px;
}

.htu-section-title {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.htu-section-subtitle {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.htu-overview-card,
.htu-section-card,
.htu-step-card,
.htu-nav-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: 0.2s ease;
  color: #0B1B34;
}

.htu-overview-card:hover,
.htu-section-card:hover,
.htu-step-card:hover,
.htu-nav-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.htu-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.htu-step-label {
  margin: 0 0 6px 0;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  color: #475569;
}

.htu-step-card h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.htu-step-card ul,
.htu-section-card ul,
.htu-overview-card ol {
  margin: 12px 0 0 0;
  padding-left: 18px;
  color: #475569;
  display: grid;
  gap: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.htu-overview-card ol {
  margin-top: 8px;
}

.htu-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.htu-nav-card h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.htu-nav-card p {
  margin: 0 0 12px 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.htu-list {
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0 0;
  display: grid;
  gap: 8px;
  color: #475569;
}

.htu-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.htu-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2D5BFF;
  font-weight: 700;
}

.htu-section-card + .htu-section-card {
  margin-top: 24px;
}

.htu-section-stack {
  display: grid;
  gap: 24px;
}

.htu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: 0.2s ease;
  border: 2px solid transparent;
}

.htu-btn-primary {
  background: #2D5BFF;
  color: #ffffff;
  border-color: #2D5BFF;
}

.htu-btn-secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.htu-btn-primary:hover,
.htu-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

@media (max-width: 1024px) {
  .htu-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .htu-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .htu-hero {
    padding: 64px 0;
  }

  .htu-hero-title {
    font-size: 36px;
  }

  .htu-steps-grid,
  .htu-nav-grid {
    grid-template-columns: 1fr;
  }

  .htu-btn {
    width: 100%;
  }
}

/* Deadlines Page */
.deadlines-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.deadlines-main {
  background: #F5F7FA;
}

.deadlines-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.deadlines-section {
  padding: 80px 0;
}

.deadlines-section + .deadlines-section {
  padding-top: 0;
}

.deadlines-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 96px 0 88px;
}

.deadlines-hero-content {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deadlines-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}

.deadlines-hero-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.deadlines-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.deadlines-section-header {
  margin-bottom: 24px;
}

.deadlines-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
}

.deadlines-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
}

.deadlines-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.deadlines-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.deadlines-card h2 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 700;
}

.deadlines-card h3 {
  margin: 0 0 10px 0;
  font-size: 21px;
  font-weight: 700;
  color: #0B1B34;
}

.deadlines-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

.deadlines-card ul {
  margin: 12px 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #475569;
  font-size: 16px;
}

.deadlines-card li {
  line-height: 1.6;
}

.deadlines-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.deadlines-overview-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.deadlines-overview-copy p {
  margin-bottom: 12px;
}

.deadlines-bullets {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #0B1B34;
  font-weight: 600;
}

.deadlines-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: #0B1B34;
  text-decoration: none;
  transition: all 0.2s ease;
}

.deadlines-card-cta::after {
  content: "→";
  font-size: 14px;
}

.deadlines-card-cta:hover {
  transform: translateX(2px);
}

.deadlines-state-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(240,244,250,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.deadlines-state-text ul {
  margin-top: 12px;
}

.deadlines-traps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.deadlines-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deadlines-actions-header h2 {
  margin: 0 0 8px 0;
}

.deadlines-actions-header p {
  margin: 0;
  color: #475569;
}

.deadlines-actions-list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
  color: #0B1B34;
  font-weight: 600;
}

.deadlines-actions-list li {
  line-height: 1.6;
}

.deadlines-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.deadlines-tool-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deadlines-tool-card p {
  color: #475569;
}

.deadlines-btn-primary,
.deadlines-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.deadlines-btn-primary {
  background: #0B1B34;
  color: #ffffff;
  border-color: #0B1B34;
}

.deadlines-btn-secondary {
  background: #ffffff;
  color: #0B1B34;
  border-color: rgba(11,27,52,0.14);
}

.deadlines-btn-primary:hover,
.deadlines-btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.deadlines-btn-secondary:hover {
  background: #F0F4FA;
}

@media (max-width: 1024px) {
  .deadlines-hero {
    padding: 80px 0 72px;
  }

  .deadlines-grid,
  .deadlines-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deadlines-traps,
  .deadlines-overview-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .deadlines-hero h1 {
    font-size: 42px;
  }

  .deadlines-grid,
  .deadlines-tools-grid,
  .deadlines-traps {
    grid-template-columns: 1fr;
  }

  .deadlines-hero-actions {
    flex-direction: column;
  }

  .deadlines-btn-primary,
  .deadlines-btn-secondary {
    width: 100%;
  }

  .deadlines-state-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ROM Estimator Page */
.rom-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.rom-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.rom-section {
  padding: 80px 0;
}

.rom-section + .rom-section {
  padding-top: 0;
}

.rom-section-header {
  margin-bottom: 24px;
}

.rom-section-header h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.rom-section-header p {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.rom-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 96px 0 88px;
}

.rom-hero h1 {
  margin: 0 0 12px 0;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}

.rom-hero-subtitle {
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}

.rom-hero-kicker {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.76);
  margin: 0 0 10px 0;
}

.rom-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.rom-btn-primary,
.rom-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.rom-btn-primary {
  background: #0B1B34;
  color: #ffffff;
  border-color: #0B1B34;
}

.rom-btn-secondary {
  background: #ffffff;
  color: #0B1B34;
  border-color: rgba(0,0,0,0.08);
}

.rom-btn-primary:hover,
.rom-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.rom-overview-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.rom-overview-card h2 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 700;
}

.rom-overview-card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.rom-overview-card p {
  margin: 0 0 10px 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

.rom-bullet-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #0B1B34;
  font-size: 16px;
  line-height: 1.6;
}

.rom-input-grid,
.rom-breakdown-grid,
.rom-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rom-card,
.rom-breakdown-card,
.rom-tool-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  padding: 24px;
  transition: 0.2s ease;
}

.rom-card:hover,
.rom-breakdown-card:hover,
.rom-tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.rom-card-header h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 700;
}

.rom-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.rom-field label {
  font-weight: 600;
  color: #0B1B34;
  font-size: 15px;
}

.rom-field input,
.rom-field select,
.rom-field textarea {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  color: #0B1B34;
  transition: 0.2s ease;
}

.rom-field textarea {
  resize: vertical;
  min-height: 120px;
}

.rom-field input:focus,
.rom-field select:focus,
.rom-field textarea:focus {
  outline: none;
  border-color: #2D5BFF;
  box-shadow: 0 0 0 3px rgba(45,91,255,0.14);
}

.rom-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.rom-checkbox-grid label {
  display: inline-flex;
  gap: 8px;
  font-size: 15px;
  color: #475569;
  align-items: center;
}

.rom-generate-card,
.rom-export-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.rom-generate-card h2,
.rom-export-card h2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
}

.rom-generate-card p,
.rom-export-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.rom-action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rom-results-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rom-estimate-summary h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
}

.rom-estimate-summary p {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.rom-range-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.rom-range-block {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.rom-range-label {
  margin: 0 0 6px 0;
  color: #475569;
  font-weight: 600;
}

.rom-range-value {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.rom-uncertainty-note {
  margin: 0;
  color: #475569;
  font-size: 15px;
}

.rom-breakdown-card h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 700;
}

.rom-breakdown-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.rom-tool-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.rom-tool-card h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
}

.rom-tool-card p {
  margin: 0 0 6px 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .rom-overview-card {
    grid-template-columns: 1fr;
  }

  .rom-input-grid,
  .rom-breakdown-grid,
  .rom-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .rom-hero {
    padding: 72px 0 64px;
  }

  .rom-hero h1 {
    font-size: 40px;
  }

  .rom-hero-actions,
  .rom-action-row {
    flex-direction: column;
  }

  .rom-btn-primary,
  .rom-btn-secondary {
    width: 100%;
  }

  .rom-input-grid,
  .rom-breakdown-grid,
  .rom-tools-grid {
    grid-template-columns: 1fr;
  }

  .rom-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .rom-generate-card,
  .rom-export-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Maximize Your Claim */
.maximize-page {
  margin: 0;
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.maximize-main {
  background: #F5F7FA;
}

.maximize-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.maximize-section {
  padding: 80px 0;
}

.maximize-section + .maximize-section {
  padding-top: 0;
}

.maximize-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 96px 0 88px;
}

.maximize-hero-content {
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.maximize-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.maximize-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
}

.maximize-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.maximize-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.maximize-section-header {
  margin-bottom: 24px;
  display: grid;
  gap: 6px;
}

.maximize-section-header h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.maximize-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
}

.maximize-overview-card,
.maximize-doc-card,
.maximize-factor-card,
.maximize-sequence-card,
.maximize-mistake-card,
.maximize-tool-card {
  background: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}

.maximize-overview-card:hover,
.maximize-doc-card:hover,
.maximize-factor-card:hover,
.maximize-sequence-card:hover,
.maximize-mistake-card:hover,
.maximize-tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.maximize-overview-card {
  display: grid;
  gap: 20px;
}

.maximize-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.maximize-stack {
  display: grid;
  gap: 10px;
}

.maximize-list-row {
  display: grid;
  gap: 10px;
}

.maximize-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.maximize-list.inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.maximize-list.inline li {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  color: #0B1B34;
}

.maximize-list strong {
  color: #0B1B34;
}

.maximize-muted {
  color: #475569;
}

.maximize-text-navy {
  color: #0B1B34;
}

.maximize-docs-grid,
.maximize-factors-grid,
.maximize-mistakes-grid,
.maximize-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.maximize-doc-card h3,
.maximize-factor-card h3,
.maximize-mistake-card h3,
.maximize-tool-card h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  font-weight: 700;
  color: #0B1B34;
}

.maximize-doc-card p,
.maximize-factor-card p,
.maximize-mistake-card p,
.maximize-tool-card p {
  margin: 0 0 10px 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.maximize-factors-grid .maximize-factor-card {
  display: grid;
  gap: 10px;
}

.maximize-sequence-card {
  display: grid;
  gap: 16px;
}

.maximize-sequence-header h2 {
  margin: 0 0 6px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.maximize-sequence-header p {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.maximize-sequence-steps {
  display: grid;
  gap: 14px;
}

.maximize-sequence-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.maximize-step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0B1B34;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 12px rgba(11,27,52,0.18);
}

.maximize-btn-primary,
.maximize-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.maximize-btn-primary {
  background: #0B1B34;
  color: #ffffff;
  border-color: #0B1B34;
}

.maximize-btn-secondary {
  background: #ffffff;
  color: #0B1B34;
  border-color: rgba(0,0,0,0.06);
}

.maximize-btn-primary:hover,
.maximize-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.maximize-tools-grid .maximize-tool-card,
.maximize-docs-grid .maximize-doc-card {
  display: grid;
  gap: 12px;
  align-content: space-between;
}

@media (max-width: 1024px) {
  .maximize-docs-grid,
  .maximize-factors-grid,
  .maximize-mistakes-grid,
  .maximize-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maximize-hero {
    padding: 80px 0 72px;
  }
}

@media (max-width: 720px) {
  .maximize-hero h1 {
    font-size: 42px;
  }

  .maximize-docs-grid,
  .maximize-factors-grid,
  .maximize-mistakes-grid,
  .maximize-tools-grid {
    grid-template-columns: 1fr;
  }

  .maximize-grid-two {
    grid-template-columns: 1fr;
  }

  .maximize-actions,
  .maximize-btn-primary,
  .maximize-btn-secondary {
    width: 100%;
  }

  .maximize-actions {
    flex-direction: column;
  }
}

/* State Insurance Directory */
.state-page {
  margin: 0;
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
}

.state-main {
  background: #F5F7FA;
}

.state-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.state-section {
  padding: 80px 0;
}

.state-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 100px 0 88px;
}

.state-hero-kicker {
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.state-hero h1 {
  margin: 0 0 12px 0;
  font-size: 48px;
  font-weight: 800;
}

.state-hero-subtitle {
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 840px;
}

.state-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.state-btn-primary,
.state-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.state-btn-primary {
  background: #0B1B34;
  color: #ffffff;
  border-color: #0B1B34;
  box-shadow: 0 4px 14px rgba(11, 27, 52, 0.25);
}

.state-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(11, 27, 52, 0.28);
}

.state-btn-secondary {
  background: #ffffff;
  color: #0B1B34;
  border-color: rgba(0, 0, 0, 0.08);
}

.state-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.state-overview-card,
.state-card,
.state-tool-card,
.state-contact-conditions-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 24px;
  transition: all 0.2s ease;
}

.state-overview-card:hover,
.state-card:hover,
.state-tool-card:hover,
.state-contact-conditions-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.state-overview-card {
  display: grid;
  gap: 18px;
}

.state-overview-card h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.state-overview-card h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 700;
}

.state-overview-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.state-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.state-bullet-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #0B1B34;
  font-size: 16px;
  line-height: 1.6;
}

.state-search {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 20px;
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
}

.state-search-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.state-input {
  display: grid;
  gap: 8px;
}

.state-input label {
  font-weight: 700;
  color: #0B1B34;
  font-size: 14px;
}

.state-input input,
.state-input select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  font-size: 15px;
  color: #0B1B34;
  transition: all 0.2s ease;
}

.state-input input:focus,
.state-input select:focus {
  outline: none;
  border-color: #0B1B34;
  box-shadow: 0 0 0 3px rgba(11, 27, 52, 0.16);
}

.state-search-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.state-section-header {
  margin-bottom: 24px;
  display: grid;
  gap: 6px;
}

.state-section-header h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.state-section-header p {
  margin: 0;
  color: #475569;
  font-size: 16px;
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.state-card h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 800;
  color: #0B1B34;
}

.state-detail {
  margin: 0 0 6px 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.5;
}

.state-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 12px 0;
}

.state-links a {
  color: #0B1B34;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.state-links a:hover {
  text-decoration: underline;
}

.state-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.state-federal-section .state-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.state-contact-conditions-card {
  display: grid;
  gap: 14px;
}

.state-contact-conditions-card h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.state-contact-conditions-card p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.state-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.state-tool-card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 800;
}

.state-tool-card p {
  margin: 0 0 10px 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.state-action-card {
  background: #0B1B34;
  color: #ffffff;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(11, 27, 52, 0.3);
  box-shadow: 0 10px 30px rgba(11, 27, 52, 0.25);
}

.state-action-card h2 {
  margin: 0 0 8px 0;
  font-size: 30px;
  font-weight: 800;
}

.state-action-card p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .state-overview-grid {
    grid-template-columns: 1fr;
  }

  .state-grid,
  .state-federal-section .state-grid,
  .state-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .state-hero {
    padding: 84px 0 72px;
  }

  .state-search {
    flex-direction: column;
    align-items: flex-start;
  }

  .state-search-actions {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .state-hero h1 {
    font-size: 42px;
  }

  .state-hero-actions,
  .state-btn-primary,
  .state-btn-secondary {
    width: 100%;
  }

  .state-hero-actions {
    flex-direction: column;
  }

  .state-section {
    padding: 72px 0;
  }

  .state-grid,
  .state-federal-section .state-grid,
  .state-tools-grid,
  .state-search-inputs {
    grid-template-columns: 1fr;
  }

  .state-action-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* State Rights & Deadlines Page */
.rights-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  margin: 0;
}

.rights-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.rights-section {
  padding: 88px 0;
}

.rights-section + .rights-section {
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.rights-section-header {
  margin-bottom: 28px;
}

.rights-section-header h2 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  color: #0B1B34;
}

.rights-section-header p {
  margin: 0;
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
}

.rights-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 104px 0 96px;
}

.rights-hero-content {
  display: grid;
  gap: 16px;
  max-width: 920px;
}

.rights-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
}

.rights-hero-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.rights-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rights-btn-primary,
.rights-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.rights-btn-primary {
  background: #0B1B34;
  color: #ffffff;
  border-color: #0B1B34;
}

.rights-btn-secondary {
  background: #ffffff;
  color: #0B1B34;
  border-color: rgba(0, 0, 0, 0.08);
}

.rights-btn-primary:hover,
.rights-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.rights-overview-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

.rights-overview-copy h2 {
  margin: 0 0 12px 0;
  font-size: 32px;
  font-weight: 700;
}

.rights-overview-copy p {
  margin: 0 0 12px 0;
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}

.rights-overview-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-size: 16px;
  color: #0B1B34;
}

.rights-grid,
.rights-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.rights-card,
.rights-tool-card,
.rights-guidance-card,
.rights-action-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 24px;
  color: #0B1B34;
}

.rights-card h3,
.rights-tool-card h3 {
  margin: 0 0 10px 0;
  font-size: 21px;
  font-weight: 700;
}

.rights-card p,
.rights-tool-card p {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.rights-card ul {
  margin: 0 0 8px 18px;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.rights-card-link {
  color: #0B1B34;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rights-card-link::after {
  content: "→";
  font-size: 14px;
}

.rights-card-link:hover {
  text-decoration: underline;
}

.rights-detail-list {
  margin: 0 0 20px 18px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}

.rights-guidance-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
}

.rights-guidance-text {
  display: grid;
  gap: 8px;
}

.rights-guidance-text h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.rights-guidance-text p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.rights-guidance-text ul {
  margin: 0 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.rights-examples {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 28px;
  display: grid;
  gap: 20px;
}

.rights-examples-header h2 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
}

.rights-examples-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.rights-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rights-redflags {
  display: grid;
  gap: 18px;
}

.rights-redflags-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rights-redflags-grid ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.rights-tool-card {
  display: grid;
  gap: 8px;
  align-content: space-between;
}

.rights-tools-grid .rights-btn-secondary {
  width: fit-content;
}

.rights-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rights-action-text h2 {
  margin: 0 0 8px 0;
  font-size: 32px;
  font-weight: 700;
}

.rights-action-text p {
  margin: 0;
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .rights-grid,
  .rights-tools-grid,
  .rights-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rights-overview-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .rights-hero {
    padding: 88px 0 80px;
  }

  .rights-hero h1 {
    font-size: 42px;
  }

  .rights-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rights-btn-primary,
  .rights-btn-secondary {
    width: 100%;
  }

  .rights-section {
    padding: 80px 0;
  }

  .rights-grid,
  .rights-tools-grid,
  .rights-examples-grid,
  .rights-redflags-grid {
    grid-template-columns: 1fr;
  }

  .rights-guidance-card,
  .rights-action-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Demand Letter Page */
.demand-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.demand-main {
  background: #F5F7FA;
}

.demand-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.demand-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 80px 0;
}

.demand-hero-content {
  display: grid;
  gap: 16px;
  max-width: 820px;
}

.demand-hero-title {
  margin: 0;
  font-size: 44px;
  font-weight: 800;
}

.demand-hero-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.demand-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.demand-btn-primary,
.demand-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.demand-btn-primary {
  background: #2D5BFF;
  color: #ffffff;
  border-color: #2D5BFF;
}

.demand-btn-secondary {
  background: transparent;
  color: #2D5BFF;
  border-color: #2D5BFF;
}

.demand-btn-primary:hover,
.demand-btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.demand-section {
  padding: 80px 0;
}

.demand-section + .demand-section {
  padding-top: 0;
}

.demand-section-header {
  margin-bottom: 24px;
  display: grid;
  gap: 6px;
}

.demand-section-header h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.demand-section-header p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

.demand-overview-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 28px;
  display: grid;
  gap: 12px;
}

.demand-overview-card h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: #0B1B34;
}

.demand-overview-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #0B1B34;
}

.demand-overview-card p {
  margin: 0;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

.demand-card-header {
  display: grid;
  gap: 6px;
}

.demand-card-header p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.demand-bullet-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.demand-input-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.demand-input-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 22px;
  display: grid;
  gap: 12px;
}

.demand-input-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: #0B1B34;
}

.demand-input-card .demand-btn-secondary {
  width: fit-content;
}

.demand-structure {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: start;
}

.demand-structure-outline,
.demand-structure-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 24px;
  display: grid;
  gap: 12px;
}

.demand-structure-card h3,
.demand-structure-outline h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #0B1B34;
}

.demand-structure-outline p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.demand-framework-list {
  display: grid;
  gap: 12px;
}

.demand-framework-item {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 14px;
  display: grid;
  gap: 6px;
}

.demand-framework-item h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #0B1B34;
}

.demand-framework-item p {
  margin: 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.demand-structure-card .demand-btn-primary {
  width: fit-content;
}

.demand-deadlines {
  background: #0B1B34;
  color: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.demand-deadlines-copy {
  display: grid;
  gap: 10px;
}

.demand-deadlines h2 {
  margin: 0 0 8px 0;
  font-size: 30px;
  font-weight: 800;
}

.demand-deadlines p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.demand-deadlines .demand-bullet-list {
  color: rgba(255, 255, 255, 0.9);
}

.demand-deadline-callout {
  background: #ffffff;
  color: #0B1B34;
  border-radius: 14px;
  padding: 20px;
  display: grid;
  gap: 6px;
  align-self: center;
}

.demand-callout-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 12px;
  font-weight: 800;
  color: #475569;
}

.demand-deadline-callout h3 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}

.demand-docs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.demand-doc-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: grid;
  gap: 10px;
}

.demand-doc-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #0B1B34;
}

.demand-doc-card p {
  margin: 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.demand-doc-card .demand-btn-secondary {
  width: fit-content;
}

.demand-mistakes {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.demand-mistakes-list {
  display: grid;
  gap: 8px;
}

.demand-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.demand-tool-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: grid;
  gap: 10px;
  color: #0B1B34;
}

.demand-tool-card h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
}

.demand-tool-card p {
  margin: 0;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.demand-tool-card .demand-btn-secondary {
  width: fit-content;
}

.demand-action-card {
  background: #0B1B34;
  color: #ffffff;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.demand-action-text h2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 800;
}

.demand-action-text p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.demand-action-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.demand-action-card .demand-btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.demand-action-card .demand-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* grids 3→2→1 */
@media (max-width: 1024px) {
  .demand-hero-title {
    font-size: 40px;
  }

  .demand-input-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demand-docs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demand-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demand-structure,
  .demand-deadlines {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .demand-hero-title {
    font-size: 36px;
  }

  .demand-hero-actions {
    flex-direction: column;
  }

  .demand-btn-primary,
  .demand-btn-secondary {
    width: 100%;
  }

  .demand-section {
    padding: 72px 0;
  }

  .demand-input-grid,
  .demand-docs,
  .demand-tools-grid,
  .demand-mistakes {
    grid-template-columns: 1fr;
  }

  .demand-action-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Carrier Negotiation Scripts Page */
.neg-page {
  background: #F5F7FA;
  color: #0B1B34;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  margin: 0;
}

.neg-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.neg-hero {
  background: #0B1B34;
  color: #ffffff;
  padding: 108px 0 96px;
}

.neg-hero-content {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.neg-hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
}

.neg-hero-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.neg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.neg-btn-primary,
.neg-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.neg-btn-primary {
  background: #0B1B34;
  color: #ffffff;
  border-color: #0B1B34;
  box-shadow: 0 10px 30px rgba(11, 27, 52, 0.25);
}

.neg-btn-secondary {
  background: #ffffff;
  color: #0B1B34;
  border-color: rgba(0, 0, 0, 0.08);
}

.neg-btn-primary:hover,
.neg-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.neg-section {
  padding: 80px 0;
}

.neg-section-header {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.neg-section-header h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
}

.neg-section-header p {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

.neg-overview-card {
  background: rgba(240, 244, 250, 0.9);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
  backdrop-filter: blur(8px);
}

.neg-overview-text h2 {
  margin: 0 0 12px 0;
  font-size: 30px;
  font-weight: 800;
}

.neg-overview-text p {
  margin: 0 0 12px 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

.neg-overview-list h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 800;
}

.neg-overview-list ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #0B1B34;
  font-size: 16px;
  line-height: 1.6;
}

.neg-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.neg-category-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 22px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.neg-category-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.neg-category-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.neg-script-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.neg-script-card {
  background: rgba(240, 244, 250, 0.92);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 20px;
  display: grid;
  gap: 12px;
  backdrop-filter: blur(8px);
}

.neg-script-label {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #0B1B34;
}

.neg-script-card p {
  margin: 0;
  color: #0B1B34;
  font-size: 15px;
  line-height: 1.7;
}

.neg-counter {
  background: transparent;
}

.neg-counter-grid {
  background: rgba(240, 244, 250, 0.92);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  backdrop-filter: blur(8px);
}

.neg-counter-column h2 {
  margin: 0 0 12px 0;
  font-size: 26px;
  font-weight: 800;
}

.neg-counter-column ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-size: 16px;
  color: #0B1B34;
  line-height: 1.6;
}

.neg-counter-list {
  display: grid;
  gap: 10px;
}

.neg-counter-list p {
  margin: 0;
  color: #0B1B34;
  font-size: 15px;
  line-height: 1.6;
}

.neg-escalation-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.neg-escalation-step {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: grid;
  gap: 10px;
}

.neg-escalation-step h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.neg-escalation-step p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.neg-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.neg-tool-card {
  background: #F0F4FA;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: grid;
  gap: 10px;
  align-content: space-between;
}

.neg-tool-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
}

.neg-tool-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.neg-action-card {
  background: #0B1B34;
  color: #ffffff;
  border-radius: 16px;
  padding: 26px;
  border: 1px solid rgba(11, 27, 52, 0.3);
  box-shadow: 0 10px 30px rgba(11, 27, 52, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.neg-action-text h2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 800;
}

.neg-action-text p {
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.neg-action-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* responsive grids 3→2→1, 2→1 */
@media (max-width: 1024px) {
  .neg-category-grid,
  .neg-script-grid,
  .neg-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .neg-escalation-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .neg-overview-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .neg-hero {
    padding: 92px 0 80px;
  }

  .neg-hero h1 {
    font-size: 42px;
  }

  .neg-hero-actions,
  .neg-btn-primary,
  .neg-btn-secondary {
    width: 100%;
  }

  .neg-hero-actions {
    flex-direction: column;
  }

  .neg-section {
    padding: 72px 0;
  }

  .neg-category-grid,
  .neg-script-grid,
  .neg-counter-grid,
  .neg-tools-grid,
  .neg-escalation-steps {
    grid-template-columns: 1fr;
  }

  .neg-counter-grid {
    padding: 22px;
  }

  .neg-action-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================================
   STANDARDIZED DESIGN PROTOCOL — GLOBAL OVERRIDES
   Enforces global light theme, spacing, cards, nav sizing
================================ */
:root {
  --page-bg: #F5F7FA;
  --text-main: #0B1B34;
  --section-spacing: 80px;
  --card-bg: #F0F4FA;
  --card-radius: 16px;
  --card-border: 1px solid rgba(0, 0, 0, 0.04);
  --card-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  --navy-hero: #0B1B34;
}

html,
body {
  background: var(--page-bg) !important;
  background-image: none !important;
  color: var(--text-main);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  color: inherit;
}

h1,
h2,
h3 {
  line-height: 1.25;
}

.container,
.rc-container,
.sol-container,
.neg-container,
.demand-container,
.agent-container,
.carrier-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 720px) {
  .container,
  .rc-container,
  .sol-container,
  .neg-container,
  .demand-container,
  .agent-container,
  .carrier-container {
    padding: 0 16px;
  }
}

.rc-section,
.sol-section,
.neg-section,
.demand-section,
.agent-section,
.carrier-section,
.cn-section,
.tools-section,
.feature-section {
  padding: var(--section-spacing) 0;
}

@media (max-width: 720px) {
  .rc-section,
  .sol-section,
  .neg-section,
  .demand-section,
  .agent-section,
  .carrier-section,
  .cn-section,
  .tools-section,
  .feature-section {
    padding: 64px 0;
  }
}

[class*="hero"] {
  background: var(--navy-hero) !important;
  color: #ffffff !important;
  padding: 96px 0 88px;
}

[class*="hero"] h1 {
  color: #ffffff !important;
  font-size: clamp(38px, 4vw, 48px);
}

[class*="hero"] p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.card,
.tool-card,
.stage-tool-card,
.rc-card,
.rc-tool-card,
.rc-doc-card,
.rc-bento-card,
.rc-feature-card,
.rc-quick-card,
.neg-category-card,
.neg-script-card,
.neg-counter-grid,
.sol-card,
.sol-doc-card,
.sol-input-card,
.sol-tool-card,
.demand-tool-card,
.cn-card,
.cn-card-soft,
.cn-surface {
  background: var(--card-bg) !important;
  border: var(--card-border);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 24px;
  color: var(--text-main);
}

.card:hover,
.tool-card:hover,
.stage-tool-card:hover,
.rc-card:hover,
.rc-tool-card:hover,
.rc-doc-card:hover,
.rc-bento-card:hover,
.rc-feature-card:hover,
.rc-quick-card:hover,
.neg-category-card:hover,
.neg-script-card:hover,
.neg-counter-grid:hover,
.sol-card:hover,
.sol-doc-card:hover,
.sol-input-card:hover,
.sol-tool-card:hover,
.demand-tool-card:hover,
.cn-card:hover,
.cn-card-soft:hover,
.cn-surface:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.header .bar {
  max-width: 1220px;
  margin: 0 auto;
  padding: 14px 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a,
.nav-dropdown-toggle {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif !important;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-main);
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid rgba(11, 27, 52, 0.08);
}

.nav-dropdown {
  margin-left: 10px;
}

.nav-dropdown-toggle {
  background: #ffffff;
}

.nav-dropdown-toggle:hover,
.nav a:hover {
  background: rgba(11, 27, 52, 0.08);
  color: var(--navy-hero);
  text-decoration: none;
}

.nav-dropdown-content,
.nav-link {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

@media (max-width: 1280px) {
  .nav {
    gap: 8px;
  }

  .nav a,
  .nav-dropdown-toggle {
    font-size: 12.5px;
    padding: 8px 8px;
  }
}

@media (max-width: 1120px) {
  .header .bar {
    padding: 12px 14px;
  }

  .nav a,
  .nav-dropdown-toggle {
    font-size: 12px;
    padding: 8px 6px;
  }
}

.btn-primary,
button.btn-primary,
a.btn-primary {
  background: var(--navy-hero);
  border: 1px solid var(--navy-hero);
  color: #ffffff !important;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: none;
}

.btn-secondary,
button.btn-secondary,
a.btn-secondary {
  background: #ffffff;
  border: 1px solid var(--navy-hero);
  color: var(--navy-hero) !important;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
}

.btn-outline,
button.btn-outline,
a.btn-outline {
  background: transparent;
  border: 1px solid var(--navy-hero);
  color: var(--navy-hero) !important;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover {
  transform: translateY(-1px);
}

/* ================================
   RESPONSIVE SAFEGUARDS — GLOBAL
   Prevent wrap/overflow across pages
================================ */
html,
body {
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
}

.header .bar {
  max-width: 1220px !important;
  width: 100% !important;
  padding: 14px 18px !important;
}

.nav {
  overflow-x: auto;
}

/* ================================
   GRID NORMALIZATION (3→2→1)
   Ensures cards collapse cleanly
================================ */
.rc-grid,
.sol-input-grid,
.sol-doc-grid,
.sol-tools-grid,
.sol-mistakes-grid,
.neg-category-grid,
.neg-script-grid,
.neg-tools-grid,
.neg-escalation-steps,
.neg-counter-grid,
.demand-input-grid,
.demand-docs,
.demand-tools-grid,
.demand-structure,
.demand-deadlines,
.docgen-category-grid,
.docgen-template-grid,
.rc-tool-grid,
.rc-doc-grid,
.rc-bento-grid,
.rc-quick-grid,
.rc-feature-grid,
.rc-tools-grid,
.rc-docs-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 1024px) {
  .nav a,
  .nav-dropdown-toggle {
    font-size: 12px;
    padding: 8px 6px;
  }

  .rc-grid,
  .sol-input-grid,
  .sol-doc-grid,
  .sol-tools-grid,
  .sol-mistakes-grid,
  .neg-category-grid,
  .neg-script-grid,
  .neg-tools-grid,
  .neg-escalation-steps,
  .neg-counter-grid,
  .demand-input-grid,
  .demand-docs,
  .demand-tools-grid,
  .demand-structure,
  .demand-deadlines,
  .docgen-category-grid,
  .docgen-template-grid,
  .rc-tool-grid,
  .rc-doc-grid,
  .rc-bento-grid,
  .rc-quick-grid,
  .rc-feature-grid,
  .rc-tools-grid,
  .rc-docs-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 720px) {
  .rc-grid,
  .sol-input-grid,
  .sol-doc-grid,
  .sol-tools-grid,
  .sol-mistakes-grid,
  .neg-category-grid,
  .neg-script-grid,
  .neg-tools-grid,
  .neg-escalation-steps,
  .neg-counter-grid,
  .demand-input-grid,
  .demand-docs,
  .demand-tools-grid,
  .demand-structure,
  .demand-deadlines,
  .docgen-category-grid,
  .docgen-template-grid,
  .rc-tool-grid,
  .rc-doc-grid,
  .rc-bento-grid,
  .rc-quick-grid,
  .rc-feature-grid,
  .rc-tools-grid,
  .rc-docs-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   SIDEBAR COLLAPSE
   Stack sidebars above content under 900px
================================ */
@media (max-width: 900px) {
  .authority-layout,
  .docgen-content {
    gap: 18px;
  }

  .authority-sidebar,
  .docgen-sidebar {
    width: 100%;
    position: relative;
    top: auto;
  }
}

/* Table of Contents */
.toc-container {
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
}

.toc-container h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

#toc-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#toc-list li {
    margin: 6px 0;
}

#toc-list li.h2 a {
    font-weight: 600;
}

#toc-list li.h3 {
    margin-left: 12px;
}

#toc-list a {
    text-decoration: none;
    color: var(--primary);
    transition: opacity 0.2s ease;
}

#toc-list a:hover {
    opacity: 0.7;
}

#toc-list a.active {
    font-weight: 700;
    text-decoration: underline;
}

/* Mobile collapse */
@media (max-width: 768px) {
    .toc-container {
        padding: 16px;
    }
}

/* Claim Roadmap Hero — Matches Resource Center Hero */
.hero--navy {
  background: var(--navy-900);
  padding: 80px 0 60px;
  color: #fff;
}

.hero--navy .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero--navy .hero-content p {
  font-size: 20px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero--navy {
    padding: 60px 0 40px;
  }
  .hero--navy .hero-content h1 {
    font-size: 32px;
  }
  .hero--navy .hero-content p {
    font-size: 16px;
  }
}

/* Standard vertical spacing utility */
.section-spacer-80 {
  margin-top: 80px;
}
