:root {
  --ml-blue: #0033b5;
  --ml-blue-dark: #002080;
  --ml-blue-light: #e8eef9;
  --ml-white: #ffffff;
  --ml-gray-50: #f8fafc;
  --ml-gray-100: #f1f5f9;
  --ml-gray-200: #e2e8f0;
  --ml-gray-400: #94a3b8;
  --ml-gray-600: #64748b;
  --ml-gray-800: #1e293b;
  --font-main: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 51, 181, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 51, 181, 0.12);
  --radius: 12px;
}

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

body {
  font-family: var(--font-main);
  color: var(--ml-gray-800);
  background: var(--ml-gray-100);
  line-height: 1.65;
  margin: 0;
}

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

a {
  color: var(--ml-blue);
}

/* ── Header ── */
.site-header {
  background: var(--ml-white);
  border-bottom: 1px solid var(--ml-gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.header-phone {
  display: none;
  color: var(--ml-gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.header-phone i {
  color: var(--ml-blue);
  margin-right: 0.3rem;
}

@media (min-width: 768px) {
  .header-phone {
    display: inline-flex;
    align-items: center;
  }
}

.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ml-blue);
  color: var(--ml-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--ml-blue-dark);
  color: var(--ml-white);
}

/* ── Site nav ── */
.site-nav-bar {
  background: var(--ml-gray-50);
  border-bottom: 1px solid var(--ml-gray-200);
  padding: 0.35rem 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ml-gray-600);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover {
  color: var(--ml-blue);
  background: var(--ml-blue-light);
}

.site-nav a.active {
  color: var(--ml-blue);
  background: var(--ml-blue-light);
}

/* ── Page hero (subpages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--ml-blue) 0%, var(--ml-blue-dark) 100%);
  color: var(--ml-white);
  padding: 2rem 0;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.page-hero p {
  margin: 0;
  opacity: 0.92;
  max-width: 640px;
}

.page-body {
  padding: 2rem 0 3.5rem;
}

.page-content {
  background: var(--ml-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem 1.75rem;
}

@media (min-width: 768px) {
  .page-content {
    padding: 2.25rem 2.5rem;
  }
}

.page-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ml-blue);
  margin-bottom: 0.75rem;
}

.page-intro {
  color: var(--ml-gray-600);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.page-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ml-gray-200);
}

/* ── Home cards ── */
.home-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

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

.home-card {
  display: block;
  border: 1px solid var(--ml-gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  background: var(--ml-white);
}

.home-card:hover {
  border-color: var(--ml-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}

.home-card-img {
  height: 140px;
  overflow: hidden;
}

.home-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-card-body {
  padding: 1.15rem;
}

.home-card-body h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ml-blue);
  margin: 0 0 0.4rem;
}

.home-card-body p {
  font-size: 0.88rem;
  color: var(--ml-gray-600);
  margin: 0;
}

.text-block {
  margin-top: 2rem;
}

.text-block h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ml-gray-800);
  margin: 0 0 0.75rem;
}

.text-block p {
  color: var(--ml-gray-600);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.prose-list {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  color: var(--ml-gray-600);
  font-size: 0.95rem;
}

.prose-list li {
  margin-bottom: 0.35rem;
}

.home-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ml-blue);
}


/* ── Hero ── */
.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: var(--ml-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../gfx/prom-express-5-bornholm.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0, 32, 128, 0.88) 0%,
    rgba(0, 51, 181, 0.72) 45%,
    rgba(0, 51, 181, 0.45) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 620px;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: 0.95;
  max-width: 560px;
  margin-bottom: 1.75rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.35rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero-primary {
  background: var(--ml-white);
  color: var(--ml-blue);
}

.btn-hero-primary:hover {
  background: var(--ml-blue-light);
  color: var(--ml-blue-dark);
}

.btn-hero-outline {
  background: transparent;
  color: var(--ml-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ml-white);
  border-color: var(--ml-white);
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--ml-white);
  border-bottom: 1px solid var(--ml-gray-200);
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-right: 1px solid var(--ml-gray-200);
}

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

.stat-item .stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ml-blue);
  line-height: 1.2;
}

.stat-item .stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--ml-gray-600);
  margin-top: 0.2rem;
}

@media (max-width: 480px) {
  .stat-item .stat-value {
    font-size: 1.1rem;
  }
  .stat-item .stat-label {
    font-size: 0.72rem;
  }
}

/* ── Main ── */
.main-content {
  padding: 2.5rem 0 3.5rem;
}

.content-card {
  background: var(--ml-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* ── Tabs ── */
.nav-tabs-custom {
  border-bottom: 2px solid var(--ml-gray-200);
  padding: 0 0.5rem;
  background: var(--ml-gray-50);
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-tabs-custom .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--ml-gray-600);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.1rem 1.25rem;
  border-radius: 0;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.nav-tabs-custom .nav-link i {
  margin-right: 0.4rem;
  opacity: 0.7;
}

.nav-tabs-custom .nav-link:hover {
  color: var(--ml-blue);
  border-color: transparent;
}

.nav-tabs-custom .nav-link.active {
  color: var(--ml-blue);
  background: transparent;
  border-bottom-color: var(--ml-blue);
}

.nav-tabs-custom .nav-link.active i {
  opacity: 1;
}

.tab-content {
  padding: 2rem 1.75rem;
}

@media (min-width: 768px) {
  .tab-content {
    padding: 2.25rem 2.5rem;
  }
}

.tab-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ml-blue);
  margin-bottom: 0.75rem;
}

.tab-intro {
  color: var(--ml-gray-600);
  max-width: 720px;
  margin-bottom: 0;
}

/* ── Route cards ── */
.route-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .route-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.route-card {
  border: 1px solid var(--ml-gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  background: var(--ml-white);
}

.route-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.route-card.featured {
  border-color: var(--ml-blue);
  box-shadow: 0 0 0 1px var(--ml-blue);
}

.route-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.route-card.featured .route-card-img {
  height: 200px;
}

.route-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card-img .route-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--ml-blue);
  color: var(--ml-white);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.route-card-img .route-badge.secondary {
  background: rgba(30, 41, 59, 0.85);
}

.route-card-body {
  padding: 1.25rem;
}

.route-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--ml-gray-800);
}

.route-time {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ml-blue);
  margin: 0 0 0.75rem;
}

.route-time small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ml-gray-400);
  margin-left: 0.25rem;
}

.route-card-body p {
  font-size: 0.9rem;
  color: var(--ml-gray-600);
  margin-bottom: 0.75rem;
}

.route-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--ml-gray-600);
  border-top: 1px solid var(--ml-gray-200);
  padding-top: 0.75rem;
}

.route-meta li {
  padding: 0.2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.route-meta i {
  color: var(--ml-blue);
  width: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ── Highlight ── */
.highlight-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--ml-blue-light);
  border-left: 4px solid var(--ml-blue);
  padding: 1.1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-top: 2rem;
}

.highlight-box > i {
  color: var(--ml-blue);
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.highlight-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* ── Booking ── */
.booking-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  min-height: 140px;
}

.booking-banner img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.booking-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 32, 128, 0.9) 0%, rgba(0, 51, 181, 0.6) 100%);
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
}

.booking-banner-overlay p {
  margin: 0;
  color: var(--ml-white);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 520px;
}

.booking-options {
  display: grid;
  gap: 1.5rem;
}

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

.booking-box {
  border: 1px solid var(--ml-gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.booking-box:hover {
  border-color: var(--ml-blue);
  box-shadow: var(--shadow-sm);
}

.booking-box-icon {
  width: 52px;
  height: 52px;
  background: var(--ml-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--ml-blue);
  font-size: 1.35rem;
}

.booking-box h3 {
  margin: 0 0 0.75rem;
  color: var(--ml-blue);
  font-size: 1.15rem;
}

.booking-box p {
  font-size: 0.92rem;
  color: var(--ml-gray-600);
  margin-bottom: 1.25rem;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ml-blue);
  color: var(--ml-white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 8px;
  transition: background 0.2s;
}

.btn-book:hover {
  background: var(--ml-blue-dark);
  color: var(--ml-white);
}

.ticket-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

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

.ticket-card {
  background: var(--ml-gray-50);
  border: 1px solid var(--ml-gray-200);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.ticket-card strong {
  display: block;
  color: var(--ml-blue);
  margin-bottom: 0.35rem;
}

.ticket-card span {
  font-size: 0.85rem;
  color: var(--ml-gray-600);
}

.section-heading {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ml-gray-800);
}

/* ── Info tab ── */
.info-layout {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .info-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.gallery-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ml-gray-200);
}

.gallery-wrap .swiper {
  width: 100%;
}

.gallery-wrap .swiper-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-wrap .swiper-button-prev,
.gallery-wrap .swiper-button-next {
  color: var(--ml-white);
  background: rgba(0, 51, 181, 0.75);
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.gallery-wrap .swiper-button-prev::after,
.gallery-wrap .swiper-button-next::after {
  font-size: 0.85rem;
  font-weight: 700;
}

.gallery-wrap .swiper-pagination-bullet-active {
  background: var(--ml-blue);
}

.gallery-caption {
  padding: 0.75rem 1rem;
  background: var(--ml-gray-50);
  font-size: 0.85rem;
  color: var(--ml-gray-600);
  text-align: center;
  border-top: 1px solid var(--ml-gray-200);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ml-gray-200);
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list .info-icon {
  width: 36px;
  height: 36px;
  background: var(--ml-blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ml-blue);
  flex-shrink: 0;
}

.info-list strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.info-list p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ml-gray-600);
}

/* ── Footer ── */
.site-footer {
  background: var(--ml-gray-800);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-inner .footer-logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer p {
  margin: 0;
  font-size: 0.875rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
}

/* ── Bottom prose (SEO / info block) ── */
.bottom-prose {
  background: var(--ml-white);
  border-top: 1px solid var(--ml-gray-200);
  padding: 3rem 0;
}

.bottom-prose-inner {
  max-width: 820px;
  margin: 0 auto;
}

.bottom-prose-inner h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ml-blue);
  margin: 0 0 1.25rem;
}

.bottom-prose-inner p {
  font-size: 0.92rem;
  color: var(--ml-gray-600);
  line-height: 1.75;
  margin: 0 0 1rem;
}

.bottom-prose-inner p:last-child {
  margin-bottom: 0;
}

.bottom-prose-inner a {
  font-weight: 600;
}

/* ── Quick nav ── */
.quick-nav {
  background: var(--ml-white);
  border-bottom: 1px solid var(--ml-gray-200);
  padding: 0.75rem 0;
}

.quick-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.quick-nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ml-gray-600);
  text-decoration: none;
  border: 1px solid var(--ml-gray-200);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.quick-nav-list a:hover,
.quick-nav-list a.active {
  color: var(--ml-blue);
  border-color: var(--ml-blue);
  background: var(--ml-blue-light);
}

.content-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ml-gray-200);
}

.content-section:first-of-type {
  margin-top: 2rem;
  padding-top: 0;
  border-top: none;
}

.content-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ml-gray-800);
  margin: 0 0 1rem;
}

/* ── Dojazd cards ── */
.dojazd-grid {
  display: grid;
  gap: 1rem;
}

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

.dojazd-card {
  border: 1px solid var(--ml-gray-200);
  border-radius: 10px;
  padding: 1.15rem;
  background: var(--ml-gray-50);
}

.dojazd-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ml-blue);
  margin: 0 0 0.6rem;
}

.dojazd-card ol {
  margin: 0 0 0.75rem;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  color: var(--ml-gray-600);
}

.dojazd-card ol li {
  margin-bottom: 0.25rem;
}

.dojazd-card .dojazd-meta {
  font-size: 0.82rem;
  color: var(--ml-gray-600);
  margin: 0 0 0.75rem;
}

.link-inline {
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

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

.route-card .route-links {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ml-gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.route-card .route-links a {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.route-card .route-links a:hover {
  text-decoration: underline;
}

/* ── Price table ── */
.price-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  border: 1px solid var(--ml-gray-200);
  border-radius: 10px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.price-table th,
.price-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--ml-gray-200);
}

.price-table th {
  background: var(--ml-blue-light);
  color: var(--ml-blue);
  font-weight: 700;
  white-space: nowrap;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:last-child {
  font-weight: 600;
  color: var(--ml-blue);
  white-space: nowrap;
}

.price-note {
  font-size: 0.85rem;
  color: var(--ml-gray-600);
  margin: 0.75rem 0 0;
}

.price-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ── Link grid ── */
.link-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

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

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

.link-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--ml-gray-200);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.link-card:hover {
  border-color: var(--ml-blue);
  box-shadow: var(--shadow-sm);
  color: inherit;
}

.link-card i {
  color: var(--ml-blue);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.link-card strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ml-gray-800);
  margin-bottom: 0.15rem;
}

.link-card span {
  font-size: 0.82rem;
  color: var(--ml-gray-600);
}

/* ── FAQ ── */
.faq-accordion .accordion-item {
  border: 1px solid var(--ml-gray-200);
  border-radius: 8px !important;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ml-gray-800);
  padding: 1rem 1.15rem;
  background: var(--ml-gray-50);
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--ml-blue);
  background: var(--ml-blue-light);
  box-shadow: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--ml-gray-200);
}

.faq-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--ml-gray-600);
  padding: 1rem 1.15rem;
}

.faq-accordion .accordion-body a {
  font-weight: 600;
}

.ticket-card a {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.ticket-card a:hover {
  text-decoration: underline;
}
