/* ============================================
   徳島商工会議所 - Stylesheet
   外部依存なし / WordPress移行前提
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PT Sans', Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Sans', Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 2px solid #1e3a8a;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* Top utility bar */
.header-topbar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 4px 0;
  display: none;
}

@media (min-width: 768px) {
  .header-topbar {
    display: block;
  }
}

.header-topbar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #475569;
}

.header-topbar-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.header-topbar a:hover {
  color: #1e3a8a;
  text-decoration: underline;
}

.header-topbar .separator {
  color: #cbd5e1;
}

.header-topbar .phone {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: #1e3a8a;
  font-size: 18px;
}

.header-topbar .phone-meta {
  font-size: 11px;
  color: #475569;
}

/* Header nav buttons */
.header-nav .btn-primary {
  margin-left: 0;
}

.header-nav .btn-primary + .btn-primary {
  margin-left: 8px;
}

.header-nav .topbar-contact {
  background: #f97316;
}

.header-nav .topbar-contact:hover {
  background: #ea580c;
}

/* Main header bar */
.header-main {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.header-logo-img {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .header-logo-img {
    height: 50px;
  }
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 8px;
}

.header-logo-title {
  font-size: 18px;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'PT Sans', Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
}

@media (min-width: 768px) {
  .header-logo-title {
    font-size: 24px;
  }
}

.header-logo-sub {
  font-size: 9px;
  color: #64748b;
  font-weight: 500;
  letter-spacing: .05em;
}

@media (min-width: 768px) {
  .header-logo-sub {
    font-size: 11px;
  }
}

/* Desktop nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}

.header-nav a:hover {
  background: #f1f5f9;
}

/* Header nav - home icon & buttons */
.header-nav-home {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  color: #1e293b;
  background: #ffffff;
  transition: background .2s, color .2s, border-color .2s;
}

.header-nav-home svg {
  width: 22px;
  height: 22px;
}

.header-nav-home:hover {
  background: #e0ecff;
  color: #1e3a8a;
  border-color: #60a5fa;
}

.header-nav-home-label {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 600;
}

.header-nav .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 148px;
  height: 40px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.header-nav .btn-primary:hover {
  background: #1e2d6a;
  color: #ffffff;
}

.header-nav .btn-primary + .btn-primary {
  margin-left: 8px;
}

.header-nav .topbar-contact {
  background: #f97316;
}

.header-nav .topbar-contact:hover {
  background: #ea580c;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: block;
  padding: 4px;
  margin-right: 8px;
  border-radius: 2px;
  color: #1e293b;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  flex-direction: column;
  animation: fadeInDown .3s ease-out;
}

.mobile-nav.is-open {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-nav.is-open {
    display: none;
  }
}

.mobile-nav a {
  display: block;
  padding: 12px 24px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

.mobile-nav a:hover {
  background: #f8fafc;
}

.mobile-nav-bottom {
  padding: 16px;
  background: #f8fafc;
}

.mobile-nav-bottom a {
  display: block;
  width: 100%;
  text-align: center;
  border-bottom: none;
  padding: 12px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1e3a8a;
  color: #fff;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}

.btn-primary:hover {
  background: #1e2d6a;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #334155;
  color: #fff;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
  min-width: 240px;
}

.btn-secondary:hover {
  background: #475569;
}

/* ============================================
   Hero Slider (index.html)
   ============================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-bottom: 4px solid #f59e0b;
  margin-top: 73px;
  margin-bottom: 48px;
  background: #1e293b;
}

@media (min-width: 768px) {
  .hero-slider {
    height: 450px;
    margin-top: 116px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 27, 75, .4);
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-slide-content {
    padding: 0 64px;
  }
}

.hero-slide-box {
  background: rgba(30, 58, 138, .9);
  padding: 24px;
  max-width: 640px;
  backdrop-filter: blur(4px);
  border-left: 4px solid #f59e0b;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  color: #fff;
}

@media (min-width: 768px) {
  .hero-slide-box {
    padding: 40px;
  }
}

.hero-slide-label {
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,.5);
  font-size: 12px;
  margin-bottom: 12px;
  font-family: 'PT Sans', Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  letter-spacing: .15em;
}

.hero-slide-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .hero-slide-title {
    font-size: 36px;
  }
}

.hero-slide-subtitle {
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-slide-subtitle {
    font-size: 16px;
  }
}

/* Slider dots */
.hero-dots {
  display: flex;
  gap: 4px;
  margin-top: 32px;
}

.hero-dot {
  height: 4px;
  width: 16px;
  background: rgba(255,255,255,.5);
  transition: all .3s;
  border: none;
  padding: 0;
  cursor: pointer;
}

.hero-dot.is-active {
  width: 32px;
  background: #f59e0b;
}

/* ============================================
   Section Title
   ============================================ */
.section-heading {
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .section-heading {
    text-align: left;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-heading h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1e1b4f;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .section-heading h2 {
    font-size: 30px;
  }
}

.section-heading .accent-bar {
  display: inline-block;
  width: 8px;
  height: 32px;
  background: #f59e0b;
}

.section-heading p {
  color: #64748b;
  font-size: 14px;
  margin-top: 8px;
  margin-left: 20px;
}

.section-heading .pamphlet-link {
  display: none;
  font-size: 14px;
  color: #4338ca;
  align-items: center;
  gap: 4px;
}

.section-heading .pamphlet-link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .section-heading .pamphlet-link {
    display: flex;
  }
}

/* ============================================
   Menu Cards Grid
   ============================================ */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.menu-card:hover {
  border-color: #4f46e5;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.menu-card-header {
  background: #eef2ff;
  border-bottom: 1px solid #e0e7ff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background .2s, border-color .2s;
}

.menu-card:hover .menu-card-header {
  background: #1e3a8a;
  border-color: #1e3a8a;
}

.menu-card-header .icon {
  color: #1e3a8a;
  transition: color .2s;
  flex-shrink: 0;
}

.menu-card:hover .menu-card-header .icon {
  color: #fff;
}

.menu-card-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
  transition: color .2s;
}

.menu-card:hover .menu-card-header h3 {
  color: #fff;
}

.menu-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-card-body p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
  flex-grow: 1;
  text-align: justify;
}

.menu-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
  display: flex;
  justify-content: flex-end;
}

.menu-card-footer span {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}

.menu-card:hover .menu-card-footer span {
  color: #4338ca;
}

/* ============================================
   CTA Section (Bottom of index)
   ============================================ */
.cta-section {
  margin-top: 64px;
  background: #fff;
  border: 1px solid #cbd5e1;
  padding: 32px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.cta-top {
  display: block;
  width: 100%;
  text-align: center;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

@media (max-width: 1023px) {
  .cta-section {
    text-align: center;
  }

  .cta-contact-item {
    justify-content: center;
    text-align: left;
  }

  .cta-contact-icon {
    margin-right: 0;
  }
}

.cta-top h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .cta-top h3 {
    font-size: 26px;
  }
}

.cta-top h3 .mark {
  color: #f59e0b;
}

.cta-contacts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .cta-contacts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-contact-item {
  background: #f8fafc;
  padding: 24px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-contact-item.is-link {
  transition: background .2s, border-color .2s;
}

.cta-contact-item.is-link:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.cta-contact-icon {
  background: #fff;
  padding: 12px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-contact-icon svg {
  color: #1e3a8a;
}

.cta-contact-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 4px;
}

.cta-contact-value {
  font-size: 24px;
  font-family: 'PT Sans', Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: .05em;
  display: inline-block;
  text-decoration: none;
}

.cta-contact-note {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

.cta-contact-link-text {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.is-link:hover .cta-contact-label {
  color: #4338ca;
}

.is-link:hover .cta-contact-link-text {
  color: #1e3a8a;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #1e293b;
  color: #fff;
  padding-top: 48px;
  padding-bottom: 24px;
  border-top: 4px solid #1e3a8a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  font-family: 'PT Sans', Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 10px;
  color: #94a3b8;
  letter-spacing: .03em;
}

.footer-address {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.7;
  border-left: 2px solid #475569;
  padding-left: 16px;
}

.footer-links h5 {
  font-weight: 700;
  font-size: 14px;
  color: #e2e8f0;
  border-bottom: 1px solid #475569;
  padding-bottom: 8px;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-links ul {
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer-copyright {
  border-top: 1px solid #334155;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

/* ============================================
   Support Page - Page Title Banner
   ============================================ */
.page-title-banner {
  background: #1e293b;
  padding: 48px 0;
  margin-top: 73px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #f59e0b;
  text-align: center;
}

@media (min-width: 768px) {
  .page-title-banner {
    padding: 64px 0;
    margin-top: 116px;
  }
}

.page-title-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,138,.6), rgba(30,27,75,.4));
  z-index: 1;
}

.page-title-banner .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .2;
  mix-blend-mode: overlay;
}

.page-title-banner .banner-content {
  position: relative;
  z-index: 2;
}

.page-title-banner .banner-label {
  color: #f59e0b;
  font-weight: 700;
  letter-spacing: .15em;
  font-size: 14px;
  margin-bottom: 8px;
}

.page-title-banner h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .page-title-banner h2 {
    font-size: 36px;
  }
}

.page-title-banner p {
  color: #cbd5e1;
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .page-title-banner p {
    font-size: 16px;
  }
}

/* ============================================
   Support Page - Anchor Menu
   ============================================ */
.anchor-menu {
  background: rgba(255,255,255,.95);
  padding: 32px 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 72px;
  z-index: 30;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  backdrop-filter: blur(4px);
}

/* support.html: do not stick on scroll */
.page-support .anchor-menu {
  position: static;
  top: auto;
  box-shadow: none;
  backdrop-filter: none;
}

@media (min-width: 768px) {
  .anchor-menu {
    top: 112px;
  }
}

.anchor-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

@media (min-width: 768px) {
  .anchor-menu-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
}

.anchor-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid transparent;
  transition: all .2s;
  background: none;
}

.anchor-menu-item:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.anchor-menu-icon {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  margin-bottom: 8px;
  transition: all .2s;
}

@media (min-width: 768px) {
  .anchor-menu-icon {
    width: 48px;
    height: 48px;
  }
}

.anchor-menu-item:hover .anchor-menu-icon {
  background: #1e3a8a;
  color: #fff;
}

.anchor-menu-label {
  font-size: 10px;
  font-weight: 700;
  color: #334155;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .anchor-menu-label {
    font-size: 12px;
  }
}

/* ============================================
   Support Page - Detail Sections
   ============================================ */
.detail-section {
  padding: 64px 0;
  border-bottom: 1px solid #e2e8f0;
  scroll-margin-top: 180px;
}

.detail-section-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.detail-section-icon {
  width: 56px;
  height: 56px;
  background: #1e3a8a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);
}

.detail-section-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .detail-section-header h3 {
    font-size: 30px;
  }
}

.detail-section-header .sub-label {
  color: #f59e0b;
  font-weight: 700;
  font-size: 14px;
}

.detail-section-body {
  max-width: 960px;
  color: #334155;
  line-height: 1.8;
}

.detail-section-body p {
  margin-bottom: 16px;
}

.detail-section-body .lead {
  font-weight: 700;
  font-size: 18px;
  color: #1e293b;
}

.detail-section-body h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid #1e3a8a;
  font-family: 'PT Sans', Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
}

/* 補助金・助成金：リード直後の最初のh4だけ上余白を詰める */
#subsidy .detail-section-body > .lead + h4 {
  margin-top: 24px;
}

/* Check list items */
.check-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .check-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.check-list li {
  background: #fff;
  padding: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.check-list li svg {
  color: #f59e0b;
  flex-shrink: 0;
}

/* Info box */
.info-box {
  background: #f8fafc;
  padding: 24px;
  border: 1px solid #e2e8f0;
}

.info-box p {
  margin-bottom: 16px;
}

.info-box ul {
  list-style: disc;
  padding-left: 24px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-box ul li {
  list-style: disc;
}

/* Feature cards (tax section) */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .feature-cards {
    flex-direction: row;
  }
}

.feature-card {
  flex: 1;
  background: #fff;
  border-top: 4px solid #1e3a8a;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.feature-card h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'PT Sans', Arial, "Helvetica Neue", Helvetica, Tahoma, sans-serif;
}

.feature-card p {
  font-size: 14px;
}

/* Definition list cards */
.dl-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dl-card {
  background: #fff;
  padding: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
}

.dl-card dt {
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 4px;
}

.dl-card dd {
  font-size: 14px;
}

.dl-card dd p {
  margin-bottom: 12px;
  line-height: 1.8;
}

.dl-card dd p:last-child {
  margin-bottom: 0;
}

/* Topic tags grid */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
  font-size: 14px;
}

@media (min-width: 768px) {
  .topic-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.topic-grid div {
  background: #f1f5f9;
  padding: 12px;
  border-radius: 4px;
}

/* Certification list */
.cert-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 32px;
  list-style: disc;
  padding: 24px 24px 24px 48px;
  background: #fff;
  border: 1px solid #e2e8f0;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .cert-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cert-list li {
  list-style: disc;
}

/* WP Table style */
.wp-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  font-size: 15px;
}

.wp-table th {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 12px;
  font-weight: 700;
  text-align: left;
  width: 30%;
}

.wp-table td {
  border: 1px solid #cbd5e1;
  padding: 12px;
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #1e3a8a;
  color: #fff;
  padding: 12px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  z-index: 40;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: #1e293b;
}

/* ============================================
   SVG Icons inline sizing
   ============================================ */
.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 20px;
  height: 20px;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

.icon-xl {
  width: 32px;
  height: 32px;
}

/* ============================================
   Utilities (misc)
   ============================================ */
.text-note {
  font-size: 12px;
  color: #64748b;
  margin-top: 8px;
}

.main-content {
  padding-bottom: 80px;
}
