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

:root {
  --black:   #0a0800;
  --deep:    #120e00;
  --panel:   #1a1400;
  --border:  rgba(255,160,0,0.12);
  --white:   #fdf6ec;
  --dim:     rgba(253,246,236,0.5);
  --accent:  #ff6a00;
  --accent2: #e30000;
  --accent3: #ffd200;
  --glow:    rgba(255,106,0,0.4);
}

html {
  scroll-behavior: smooth;
  /* Fluid root size: type (and everything sized in rem) scales with the
     viewport itself, so the site looks proportionally the same size on a
     laptop, a large monitor or a TV — not just capped at a fixed max. */
  font-size: clamp(15px, 1.05vw, 40px);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.5;
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 48px;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: rgba(10,8,0,0.9);
}
.logo-img { height: 68px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-item { position: relative; }
.nav-item > a {
  display: block; padding: 0.4rem 0.85rem;
  color: var(--dim); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
}
.nav-item > a:hover, .nav-item > a.active-link { color: var(--white); }
.nav-item.has-sub:hover .sub-menu { display: block; }
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--deep); border: 1px solid var(--border);
  min-width: 220px; padding: 0.5rem 0; z-index: 200;
}
.sub-menu a {
  display: block; padding: 0.55rem 1.2rem;
  color: var(--dim); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
}
.sub-menu a:hover, .sub-menu a.active-link { color: var(--white); background: rgba(255,106,0,0.06); }
.nav-cta {
  background: var(--accent) !important; color: #000 !important;
  padding: 0.5rem 1.2rem !important; margin-left: 0.5rem;
  font-weight: 500 !important; border-radius: 2px;
}
.nav-cta:hover { background: #ff8c00 !important; }

/* ── Hamburger ── */
.ham {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; z-index: 101; cursor: pointer;
}
.ham span { display: block; width: 26px; height: 2px; background: var(--white); transition: 0.3s; border-radius: 2px; }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,8,0,0.98); z-index: 99; padding: 5rem 2rem 2rem;
  flex-direction: column; gap: 0; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--dim); text-decoration: none;
  font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
  transition: color 0.2s; display: block;
}
.mobile-nav a:hover, .mobile-nav a.active-link { color: var(--accent3); }
.mobile-nav .sub-link {
  padding-left: 1.5rem; font-size: 0.9rem;
  color: rgba(253,246,236,0.35); letter-spacing: 0.08em;
}
.mobile-nav .mobile-cta {
  margin-top: 1.5rem; background: var(--accent); color: #000 !important;
  text-align: center; padding: 1rem !important; border-radius: 2px;
  font-weight: 500; border-bottom: none !important;
}

/* ── Shared ── */
section, .page-content { position: relative; z-index: 2; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.section-title {
  font-family: "Audiowide", sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 3.4rem); line-height: 1.05; margin-bottom: 1.5rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: #000;
  padding: 0.9rem 2rem;
  font-family: "DM Sans", sans-serif; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border: none; border-radius: 2px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 28px var(--glow);
}
.btn-primary:hover { background: #ff8c00; box-shadow: 0 0 50px rgba(255,106,0,0.6); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--dim); font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid var(--border); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,106,0,0.5); }
.body-text { color: var(--dim); line-height: 1.75; font-size: 1.05rem; }
.body-text a { color: var(--accent); text-decoration: none; }
.body-text a:hover { text-decoration: underline; }
.body-text strong { color: var(--white); font-weight: 500; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 62vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 120px 48px 40px; overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 55% at 85% 35%, rgba(255,106,0,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 65%, rgba(227,0,0,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 55% 80%, rgba(255,210,0,0.12) 0%, transparent 60%);
}
.beam {
  position: absolute; bottom: -10%; width: 3px;
  transform-origin: bottom center;
  animation: scan 4s ease-in-out infinite alternate; filter: blur(1px);
}
.beam:nth-child(1) { left: 20%; height: 55%; background: linear-gradient(to top, transparent, rgba(255,106,0,0.55), transparent); animation-delay: 0s; }
.beam:nth-child(2) { left: 50%; height: 65%; background: linear-gradient(to top, transparent, rgba(227,0,0,0.5), transparent); animation-delay: -1.3s; animation-duration: 3.5s; }
.beam:nth-child(3) { left: 75%; height: 50%; background: linear-gradient(to top, transparent, rgba(255,210,0,0.45), transparent); animation-delay: -2.6s; animation-duration: 5s; }
@keyframes scan { 0% { transform: rotate(-18deg); } 100% { transform: rotate(18deg); } }
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; animation: float linear infinite; }
@keyframes float {
  0% { transform: translateY(110vh) scale(0); opacity: 0; }
  10% { opacity: 1; } 90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent3); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: "Audiowide", sans-serif;
  font-size: clamp(2.2rem, 5.8vw, 5.5rem); line-height: 1; white-space: nowrap;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}
.hero-sub {
  margin-top: 1.4rem; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.65; color: var(--dim); font-size: 1rem;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  margin-top: 2.2rem; display: flex; gap: 1rem; align-items: center; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ── Event ticker ── */
.ticker-wrap {
  overflow: hidden; position: relative; z-index: 2;
  background: var(--deep); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 3;
  pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--deep), transparent); }
.ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--deep), transparent); }
.ticker-track {
  display: flex; gap: 0; width: max-content;
  animation: ticker 35s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0 2.5rem; white-space: nowrap;
  font-family: "Audiowide", sans-serif;
  font-size: 1.4rem; letter-spacing: 0.08em; color: var(--dim);
  transition: color 0.2s;
}
.ticker-item:hover { color: var(--white); }
.ticker-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent);
}
.ticker-item.gold { color: var(--accent3); }
.ticker-item.gold .dot { background: var(--accent3); box-shadow: 0 0 8px var(--accent3); }

/* ── Category cards (Wat wil je huren?) ── */
.categories { padding: 48px 48px 80px; }
.categories .section-title { text-align: center; }
.category-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.category-card {
  position: relative; display: block; text-decoration: none; color: var(--white);
  aspect-ratio: 4/3; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border);
  isolation: isolate;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,106,0,0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.category-card-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.category-card:hover .category-card-bg { transform: scale(1.08); }
.category-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,0,0.92) 0%, rgba(10,8,0,0.35) 55%, rgba(10,8,0,0.05) 100%);
  transition: background 0.35s; z-index: 0;
}
.category-card:hover::before { background: linear-gradient(to top, rgba(10,8,0,0.96) 0%, rgba(10,8,0,0.5) 55%, rgba(10,8,0,0.1) 100%); }
.category-card-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 2rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
}
.category-card-title {
  font-family: "Audiowide", sans-serif; font-size: clamp(1.8rem, 3.1vw, 2.9rem); line-height: 1;
  color: var(--accent); transition: color 0.3s ease;
}
.category-card:hover .category-card-title { color: var(--accent3); }
.category-card-arrow {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, background 0.25s; box-shadow: 0 0 24px var(--glow);
}
.category-card:hover .category-card-arrow { transform: translateX(4px); background: #ff8c00; }
.category-card-arrow svg { width: 20px; height: 20px; }

/* ── Services grid (subproduct overzicht) ── */
.services { padding: 16px 48px 80px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px; background: var(--border); border: 1px solid var(--border); margin-top: 2rem;
}
.service-card {
  background: var(--deep); padding: 2.2rem;
  position: relative; overflow: hidden; transition: background 0.3s, transform 0.35s ease;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent3), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--panel); transform: translateY(-4px); }
.card-num { position: absolute; top: 1.5rem; right: 1.5rem; font-family: "Audiowide", sans-serif; font-size: 3.5rem; color: rgba(255,106,0,0.06); line-height: 1; }
.card-title { font-family: "Audiowide", sans-serif; font-size: 1.5rem; letter-spacing: 0.03em; margin-bottom: 0.7rem; }
.card-text { color: var(--dim); line-height: 1.6; font-size: 0.98rem; flex: 1; }
.card-price { margin-top: 1rem; font-family: "Audiowide", sans-serif; font-size: 1.6rem; color: var(--accent3); }
.card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.2rem; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); text-decoration: none; transition: gap 0.2s;
}
.card-link:hover { gap: 0.8rem; }

/* ── Feature row (rustig blok) ── */
.features {
  padding: 51px 48px; background: var(--deep);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  max-width: 1100px; margin: 0 auto;
}
.feature-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem;
  padding: 0 1rem; position: relative;
}
.feature-item + .feature-item::before {
  content: ""; position: absolute; left: 0; top: 10%; bottom: 10%; width: 1px;
  background: var(--border);
}
.feature-icon { width: 34px; height: 34px; color: var(--accent); }
.feature-title { font-size: 1.05rem; font-weight: 500; color: var(--white); }
.feature-text { font-size: 0.92rem; color: var(--dim); line-height: 1.5; }

/* ── Page hero ── */
.page-hero {
  padding: 144px 48px 64px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 90% 50%, rgba(255,106,0,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 50%, rgba(227,0,0,0.1) 0%, transparent 60%);
  z-index: 2; text-align: center;
}
.page-hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.7s 0.05s forwards;
}
.page-hero-title-row {
  display: flex; align-items: center; justify-content: center; gap: 1.8rem; flex-wrap: wrap;
}
.page-hero h1 {
  font-family: "Audiowide", sans-serif;
  font-size: clamp(2rem, 5.5vw, 5.2rem); line-height: 0.95; letter-spacing: 0.02em;
  opacity: 0; animation: fadeUp 0.8s 0.15s forwards;
}
.page-hero h1 .outline { -webkit-text-stroke: 1px rgba(253,246,236,0.25); color: transparent; }
.page-hero-title-row .price-tag { margin-top: 0; opacity: 0; animation: fadeUp 0.8s 0.25s forwards; }
.page-hero-sub {
  margin-top: 1.2rem; color: var(--dim); max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; font-size: 1.05rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}

/* ── Content layouts ── */
.content-wrap { padding: 64px 48px 112px; position: relative; z-index: 2; }
.content-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: start; }
.content-grid.single { grid-template-columns: 1fr; max-width: 760px; margin-left: auto; margin-right: auto; text-align: center; }
.price-banner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.content-image {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: 1px solid var(--border); border-radius: 6px; filter: brightness(0.92) saturate(1.1); display: block;
}
.price-tag {
  display: inline-block; margin-top: 1rem; margin-right: 0.8rem;
  background: rgba(255,106,0,0.08); border: 1px solid rgba(255,106,0,0.3); padding: 0.9rem 1.4rem;
}
.price-tag span { font-family: "Audiowide", sans-serif; font-size: 2.1rem; color: var(--accent3); }
.price-tag small { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-top: 0.2rem; }
.bullet-list { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.55rem; }
.bullet-list li { color: var(--dim); font-size: 1rem; line-height: 1.55; padding-left: 1.2rem; position: relative; }
.bullet-list li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }
.bullet-list li strong { color: var(--white); font-weight: 500; }
.bullet-list li a { color: var(--white); text-decoration: underline; text-decoration-color: var(--border); text-underline-offset: 2px; transition: color 0.2s; }
.bullet-list li a:hover { color: var(--accent); }
.cta-row { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2.5rem; color: var(--dim); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.05em; transition: color 0.2s; }
.back-link:hover { color: var(--white); }

.feature-table { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.feature-table td {
  padding: 1.4rem; border: 1px solid var(--border);
  vertical-align: top; font-size: 0.97rem; line-height: 1.8; color: var(--dim);
}
.feature-table td a { color: var(--accent); text-decoration: none; font-weight: 500; display: block; font-size: 0.98rem; margin-bottom: 0.4rem; }
.feature-table td a:hover { text-decoration: underline; }

/* ── Contact ── */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; padding: 64px 48px 112px; position: relative; z-index: 2; }
.contact-info p { color: var(--dim); line-height: 1.7; margin-bottom: 1rem; font-size: 1.05rem; }
.contact-email-btn {
  display: inline-flex; align-items: center; gap: 0.8rem; margin-top: 2rem;
  background: var(--accent); color: #000; padding: 1rem 2rem;
  font-family: "DM Sans", sans-serif; font-size: 0.9rem;
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  transition: background 0.2s, box-shadow 0.2s; box-shadow: 0 0 28px var(--glow);
}
.contact-email-btn:hover { background: #ff8c00; box-shadow: 0 0 50px rgba(255,106,0,0.6); }
.contact-info-block { margin-top: 2.5rem; padding: 1.8rem; border: 1px solid var(--border); background: var(--panel); }
.contact-info-block h3 { font-family: "Audiowide", sans-serif; font-size: 1.3rem; letter-spacing: 0.05em; margin-bottom: 1rem; color: var(--accent3); }
.contact-detail { display: flex; gap: 1rem; align-items: baseline; padding: 0.8rem 0; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail .label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--dim); min-width: 80px; }
.contact-detail .value { color: var(--white); font-size: 0.9rem; }
.contact-detail .value a { color: var(--accent); text-decoration: none; }
.contact-panel { padding: 2.5rem; border: 1px solid var(--border); background: var(--panel); }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border); padding: 32px 48px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.2rem; position: relative; z-index: 2;
}
.footer-logo-img { height: 34px; width: auto; opacity: 0.8; }
.footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
footer small.copy { color: rgba(253,246,236,0.2); font-size: 0.7rem; }
.powered-by { font-size: 0.72rem; color: var(--dim); white-space: nowrap; }
.powered-by a {
  background: linear-gradient(135deg, #4169e1, #9370db);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.powered-by a:hover { opacity: 0.8; }
.footer-bottom { display: contents; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 11px 19px; }
  .nav-links { display: none; }
  .ham { display: flex; }
  .logo-img { height: 40px; }

  .hero { padding: 112px 24px 48px; min-height: 60vh; }
  .hero-title { white-space: normal; }

  .ticker-wrap { padding: 0.8rem 0; }
  .ticker-item { font-size: 1.2rem; padding: 0 1.8rem; }

  .categories { padding: 64px 24px; }
  .category-grid { grid-template-columns: 1fr; }

  .features { padding: 40px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 29px; }
  .feature-item + .feature-item::before { display: none; }

  .page-hero { padding: 112px 24px 48px; }
  .content-wrap { padding: 48px 24px 80px; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse-mobile > *:first-child { order: 2; }
  .content-grid.reverse-mobile > *:last-child { order: 1; }

  .contact-split { grid-template-columns: 1fr; gap: 40px; padding: 48px 24px 80px; }
  .contact-email-btn { width: 100%; justify-content: center; }
  .btn-primary { width: 100%; justify-content: center; }
  .btn-ghost { justify-content: center; }

  footer { padding: 29px 24px; flex-direction: column; align-items: stretch; gap: 1rem; }
  footer > a:first-child { align-self: center; justify-content: center; }
  .footer-bottom { display: flex !important; justify-content: space-between; align-items: center; }
  .footer-links { gap: 1.2rem; }

  .feature-table tr { display: flex; flex-direction: column; }
  .feature-table td { border-top: 1px solid var(--border); border-left: none; border-right: none; border-bottom: none; padding: 1.2rem 0; }
}

@media (max-width: 540px) {
  .category-card-body { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
