/* ============================================
   NOVANTIS - Design System
   Dark Premium Theme
   ============================================ */


:root {
  
  --color-bg-base: #0d0f14;
  --color-bg-surface: #13161e;
  --color-bg-elevated: #1a1e28;
  --color-bg-card: #1e2230;
  --color-bg-card-light: #232838;

  --color-accent-primary: #4f8ef7;
  --color-accent-secondary: #7b5ea7;
  --color-accent-glow: rgba(79, 142, 247, 0.15);
  --color-accent-warm: #e8a24a;
  --color-accent-positive: #3ecf8e;
  --color-accent-caution: #f5a623;

  --color-text-primary: #e8eaf0;
  --color-text-secondary: #9aa3b8;
  --color-text-muted: #5e6880;
  --color-text-inverse: #0d0f14;

  --color-border: rgba(255,255,255,0.07);
  --color-border-accent: rgba(79, 142, 247, 0.3);

  --gradient-hero: linear-gradient(135deg, #0d0f14 0%, #131828 50%, #0f1520 100%);
  --gradient-accent: linear-gradient(135deg, rgba(79,142,247,0.08) 0%, rgba(123,94,167,0.08) 100%);
  --gradient-feature: linear-gradient(135deg, #13161e 0%, #1a1e2e 50%, #13161e 100%);
  --gradient-cta: linear-gradient(135deg, #1a1e2e 0%, #0f1520 100%);
  --gradient-card-border: linear-gradient(135deg, rgba(79,142,247,0.4), rgba(123,94,167,0.4));

  
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 2px 4px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.6), 0 4px 8px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.7), 0 8px 16px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 20px rgba(79,142,247,0.2), 0 0 40px rgba(79,142,247,0.1);
  --shadow-nav: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3);

  
  --font-family: 'Sora', sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;

  --line-height-tight: 1.2;
  --line-height-snug: 1.4;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;

  
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-menu: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg-base);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

a {
  color: var(--color-accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-text-primary);
}

ul, ol {
  list-style: none;
}


.skip-to-content {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-accent-primary);
  color: var(--color-text-inverse);
  padding: var(--space-sm) var(--space-md);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-sm);
  z-index: 10000;
  transform: translateY(-100%);
  transition: transform var(--transition-fast);
  border-radius: 0 0 var(--radius-md) 0;
}

.skip-to-content:focus {
  transform: translateY(0);
  color: var(--color-text-inverse);
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: 860px;
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 15, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-nav);
  transition: box-shadow var(--transition-base);
}

.nav--scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--space-xl);
  max-width: 1320px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height: 36px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.01em;
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  border-radius: var(--radius-full);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  position: relative;
  z-index: 1100;
}

.nav__hamburger:hover {
  border-color: var(--color-accent-primary);
  background: var(--color-accent-glow);
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  overflow: hidden;
}

.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 20, 0.98);
  clip-path: circle(0px at calc(100% - 36px) 36px);
  transition: clip-path var(--transition-menu);
}

.mobile-menu--open .mobile-menu__overlay {
  clip-path: circle(150% at calc(100% - 36px) 36px);
}

.mobile-menu--open {
  pointer-events: all;
}

.mobile-menu__nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  opacity: 0;
  transition: opacity 0.3s ease 0.2s;
}

.mobile-menu--open .mobile-menu__nav {
  opacity: 1;
}

.mobile-menu__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 44px;
  height: 44px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--text-xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.mobile-menu__close:hover {
  background: var(--color-bg-card);
  border-color: var(--color-accent-primary);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

.mobile-menu__link {
  color: var(--color-text-primary);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-fast);
  padding: var(--space-sm) var(--space-md);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu__link:hover {
  color: var(--color-accent-primary);
}


.section {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background: var(--color-bg-surface);
}

.section--gradient-accent {
  background: linear-gradient(180deg, var(--color-bg-surface) 0%, rgba(79,142,247,0.04) 50%, var(--color-bg-surface) 100%);
}

.section--gradient-feature {
  background: var(--gradient-feature);
  position: relative;
}

.section--gradient-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(79,142,247,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(123,94,167,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.section--intro {
  background: var(--color-bg-base);
}

.section--map {
  padding-bottom: 0;
}

.section--cta-gradient {
  background: linear-gradient(135deg, #0f1520 0%, #1a1e2e 50%, #0f1520 100%);
  position: relative;
}

.section--cta-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(79,142,247,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.2);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.section__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

.section__subtext {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.section__image-block {
  margin-top: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.section__image-block img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.section__image-block figcaption {
  background: var(--color-bg-elevated);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border);
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 0;
}

.hero__bg-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(79,142,247,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(123,94,167,0.1) 0%, transparent 50%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-primary);
  margin-bottom: var(--space-lg);
}

.hero__heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.hero__heading--accent {
  background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtext {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
}

.hero__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border: 1px solid var(--color-border-accent);
}

.hero__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}


.breadcrumb-steps {
  margin-top: var(--space-xl);
}

.breadcrumb-steps__list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: var(--space-md);
}

.breadcrumb-steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.breadcrumb-steps__dot {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  cursor: pointer;
  color: var(--color-text-muted);
}

.breadcrumb-steps__dot:hover,
.breadcrumb-steps__item--active .breadcrumb-steps__dot {
  background: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.breadcrumb-steps__number {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
}

.breadcrumb-steps__label {
  font-size: 0.65rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  text-align: center;
  white-space: nowrap;
  max-width: 80px;
  line-height: 1.2;
}

.breadcrumb-steps__item--active .breadcrumb-steps__label {
  color: var(--color-accent-primary);
}

.breadcrumb-steps__connector {
  width: 32px;
  height: 2px;
  background: var(--color-border);
  margin-bottom: 20px;
  flex-shrink: 0;
}


.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.grid--asymmetric {
  grid-template-columns: 2fr 1fr 1fr;
}


.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent-primary), var(--color-accent-secondary));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-accent);
}

.card:hover::before {
  opacity: 1;
}

.card--featured {
  grid-column: span 1;
  background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(79,142,247,0.05) 100%);
  border-color: rgba(79,142,247,0.2);
}

.card--featured::before {
  opacity: 1;
}

.card--wide {
  grid-column: span 1;
}

.card--light {
  background: var(--color-bg-card-light);
}

.card--compact {
  padding: var(--space-lg);
}

.card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: rgba(79,142,247,0.12);
  border: 1px solid rgba(79,142,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: var(--text-xl);
  color: var(--color-accent-primary);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.card:hover .card__icon-wrap {
  background: rgba(79,142,247,0.2);
  box-shadow: 0 0 16px rgba(79,142,247,0.2);
}

.card__icon-wrap--small {
  width: 40px;
  height: 40px;
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
}

.card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-snug);
}

.card__title--positive {
  color: var(--color-accent-positive);
}

.card__title--caution {
  color: var(--color-accent-caution);
}

.card__subtitle {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.card__text--small {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.card__dl dt {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-primary);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
}

.card__dl dt:first-child {
  margin-top: 0;
}

.card__dl dd {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}


.highlight-statement {
  background: linear-gradient(135deg, rgba(79,142,247,0.06) 0%, rgba(123,94,167,0.06) 100%);
  border: 1px solid rgba(79,142,247,0.2);
  border-left: 4px solid var(--color-accent-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  margin: var(--space-2xl) 0;
  position: relative;
}

.highlight-statement::before {
  content: '"';
  position: absolute;
  top: var(--space-md);
  left: var(--space-lg);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent-primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.highlight-statement p {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  font-style: italic;
  padding-left: var(--space-lg);
}

.highlight-statement cite {
  display: block;
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: var(--font-weight-medium);
}

.highlight-statement--inline {
  margin: var(--space-xl) 0;
}


.info-banner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: rgba(79,142,247,0.06);
  border: 1px solid rgba(79,142,247,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-2xl);
}

.info-banner i {
  color: var(--color-accent-primary);
  font-size: var(--text-xl);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-banner p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--line-height-normal);
}


.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.two-col-layout__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.two-col-layout__text p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.two-col-layout__text .section__tag {
  align-self: flex-start;
}

.two-col-layout__text .section__heading {
  text-align: left;
  margin-bottom: 0;
}

.two-col-layout__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.two-col-layout__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.two-col-layout__image:hover img {
  transform: scale(1.02);
}

.two-col-layout__image figcaption {
  background: var(--color-bg-elevated);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}


.risk-explainer {
  margin-bottom: var(--space-2xl);
}

.risk-types {
  margin-top: var(--space-2xl);
}

.risk-types__heading {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  text-align: center;
}


.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.faq-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-card:hover {
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-md);
}

.faq-card--full {
  width: 100%;
}

.faq-card__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  min-height: 44px;
}

.faq-card__icon {
  flex-shrink: 0;
  color: var(--color-accent-primary);
  transition: transform var(--transition-base);
  font-size: var(--text-sm);
}

.faq-card[aria-expanded="true"] .faq-card__icon {
  transform: rotate(180deg);
}

.faq-card[aria-expanded="true"] {
  border-color: var(--color-border-accent);
}

.faq-card__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-card__answer p {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
}

.faq-card__answer p + p {
  padding-top: 0;
  margin-top: calc(-1 * var(--space-sm));
}

.faq-card[aria-expanded="true"] .faq-card__answer {
  max-height: 500px;
}

.faq-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.faq-cta p {
  color: var(--color-text-secondary);
}


.cta-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.cta-block__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.cta-block__image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.cta-block__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-md);
}

.cta-block__text p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
}

.cta-block__buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px var(--space-xl);
  border-radius: var(--radius-full);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 2px solid transparent;
  text-decoration: none;
  min-height: 44px;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent-primary);
  color: #fff;
  border-color: var(--color-accent-primary);
  box-shadow: 0 4px 16px rgba(79,142,247,0.3);
}

.btn--primary:hover {
  background: #6ba3ff;
  border-color: #6ba3ff;
  color: #fff;
  box-shadow: 0 6px 24px rgba(79,142,247,0.45);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-accent-primary);
  color: var(--color-accent-primary);
  background: var(--color-accent-glow);
}


.topic-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.topic-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-xl);
  align-items: start;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.topic-card:hover {
  border-color: var(--color-border-accent);
  transform: translateX(4px);
}

.topic-card__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-extrabold);
  color: transparent;
  -webkit-text-stroke: 2px rgba(79,142,247,0.3);
  line-height: 1;
  user-select: none;
}

.topic-card__title {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.topic-card__text {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.topic-card__details dt {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-sm);
}

.topic-card__details dd {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}


.page-hero {
  padding: calc(72px + var(--space-2xl)) 0 var(--space-2xl);
  background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-surface) 100%);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__content {
  max-width: 720px;
}

.page-hero__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-lg);
}

.page-hero__subtext {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}


.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
}

.contact-info__heading {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.contact-info__address {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  font-style: normal;
  margin-bottom: var(--space-xl);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-info__item i {
  color: var(--color-accent-primary);
  font-size: var(--text-base);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.contact-info__item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info__item strong {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  font-weight: var(--font-weight-semibold);
}

.contact-info__item span,
.contact-info__item a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.contact-info__item a:hover {
  color: var(--color-accent-primary);
}

.contact-info__response-note {
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
}

.contact-info__subheading {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-info__subheading i {
  color: var(--color-accent-primary);
}

.contact-info__response-note p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin-bottom: var(--space-sm);
}

.contact-info__response-note p:last-child {
  margin-bottom: 0;
}


.form-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-xl);
}

.form-progress__step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-progress__number {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
}

.form-progress__step--active .form-progress__number {
  background: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
  color: white;
}

.form-progress__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

.form-progress__step--active .form-progress__label {
  color: var(--color-text-primary);
}

.form-progress__line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  margin: 0 var(--space-md);
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-step--hidden {
  display: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
}

.form-label abbr {
  text-decoration: none;
  color: var(--color-accent-primary);
}

.form-label--checkbox {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  cursor: pointer;
}

.form-input,
.form-textarea {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px var(--space-lg);
  font-family: var(--font-family);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  min-height: 44px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 0 3px rgba(79,142,247,0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

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

.form-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--color-accent-primary);
  cursor: pointer;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.form-actions--split {
  justify-content: space-between;
}


.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-lg);
}

.map-wrap iframe {
  display: block;
  filter: invert(90%) hue-rotate(180deg);
}


.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: var(--space-2xl) var(--space-lg);
}

.thanks-block {
  text-align: center;
  max-width: 520px;
}

.thanks-block__icon {
  font-size: 5rem;
  color: var(--color-accent-primary);
  margin-bottom: var(--space-xl);
  display: block;
  filter: drop-shadow(0 0 20px rgba(79,142,247,0.4));
}

.thanks-block__heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.thanks-block__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
}


.legal-main {
  padding-top: 72px;
}

.legal-header {
  padding: var(--space-2xl) 0 var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-2xl);
}

.legal-header__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.legal-header__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.legal-body {
  padding-bottom: var(--space-3xl);
}

.legal-body section {
  margin-bottom: var(--space-2xl);
}

.legal-body h2 {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.legal-body h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: var(--space-lg) 0 var(--space-sm);
}

.legal-body p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-body ul,
.legal-body ol {
  list-style: disc;
  padding-left: var(--space-xl);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.legal-body li {
  margin-bottom: var(--space-sm);
}

.legal-body address {
  font-style: normal;
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-md) 0;
  font-size: var(--text-sm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.legal-table th,
.legal-table td {
  padding: 12px var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.legal-table th[scope="row"] {
  background: var(--color-bg-elevated);
  color: var(--color-text-secondary);
  font-weight: var(--font-weight-semibold);
  width: 35%;
  white-space: nowrap;
}

.legal-table thead th {
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.legal-table td {
  color: var(--color-text-secondary);
}

.legal-table--striped tbody tr:nth-child(even) td {
  background: rgba(255,255,255,0.02);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm) var(--space-xl);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.legal-dl dt {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-dl dd {
  color: var(--color-text-secondary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
}

.legal-dl dt:last-of-type,
.legal-dl dd:last-of-type {
  border-bottom: none;
}

code {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  font-size: 0.85em;
  color: var(--color-accent-primary);
  font-family: 'Courier New', monospace;
}


.link--inline {
  color: var(--color-accent-primary);
  text-decoration: underline;
  text-decoration-color: rgba(79,142,247,0.4);
  text-underline-offset: 3px;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

.link--inline:hover {
  color: #6ba3ff;
  text-decoration-color: #6ba3ff;
}


.footer {
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0 var(--space-xl);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.footer__logo {
  height: 34px;
  width: auto;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer__nav {
  width: 100%;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer__link {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-accent-primary);
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
  font-style: normal;
}

.footer__contact span {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.footer__contact i {
  color: var(--color-accent-primary);
  font-size: var(--text-xs);
}

.footer__contact a {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--color-accent-primary);
}

.footer__legal {
  width: 100%;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.footer__legal small {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.footer__legal-links a {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  transition: color var(--transition-fast);
}

.footer__legal-links a:hover {
  color: var(--color-accent-primary);
}


.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.cookie-backdrop--visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border-accent);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  transform: scale(0.95) translateY(10px);
  transition: transform var(--transition-base);
  position: relative;
}
.cookie-backdrop--visible .cookie-modal {
  transform: scale(1) translateY(0);
}

.cookie-modal__heading {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.cookie-modal__text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
}

.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}

.cookie-category__info {
  flex: 1;
}

.cookie-category__name {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: 2px;
}

.cookie-category__desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--color-bg-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--color-text-muted);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base), background var(--transition-base);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
  background: white;
}

.cookie-toggle input:disabled + .cookie-toggle__slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cookie-modal__actions .btn {
  width: 100%;
  justify-content: center;
}

.cookie-modal__actions .btn--text {
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  cursor: pointer;
  padding: var(--space-sm);
  transition: color var(--transition-fast);
  font-family: var(--font-family);
  text-align: center;
  min-height: 44px;
}

.cookie-modal__actions .btn--text:hover {
  color: var(--color-text-secondary);
}


[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal][data-delay="100"] { transition-delay: 0.1s; }
[data-reveal][data-delay="150"] { transition-delay: 0.15s; }
[data-reveal][data-delay="200"] { transition-delay: 0.2s; }
[data-reveal][data-delay="300"] { transition-delay: 0.3s; }
[data-reveal][data-delay="400"] { transition-delay: 0.4s; }

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1024px) {
  .nav__links {
    gap: var(--space-lg);
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero__image-wrap {
    max-height: 320px;
    overflow: hidden;
  }

  .hero__image {
    height: 320px;
  }

  .grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .card--wide {
    grid-column: span 2;
  }

  .cta-block {
    grid-template-columns: 1fr;
  }

  .cta-block__image-wrap {
    max-height: 280px;
    overflow: hidden;
  }

  .cta-block__image-wrap img {
    height: 280px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 2.5rem;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__inner {
    padding: 0 var(--space-lg);
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: var(--space-2xl);
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero__image-wrap {
    display: none;
  }

  .breadcrumb-steps__list {
    gap: var(--space-xs);
  }

  .breadcrumb-steps__connector {
    width: 16px;
  }

  .breadcrumb-steps__label {
    display: none;
  }

  .grid--3col,
  .grid--2col,
  .grid--asymmetric {
    grid-template-columns: 1fr;
  }

  .grid--4col {
    grid-template-columns: 1fr 1fr;
  }

  .card--wide {
    grid-column: span 1;
  }

  .two-col-layout {
    grid-template-columns: 1fr;
  }

  .two-col-layout__image {
    order: -1;
  }

  .two-col-layout__image img {
    height: 260px;
  }

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

  .cta-block {
    grid-template-columns: 1fr;
  }

  .cta-block__buttons {
    flex-direction: column;
  }

  .cta-block__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .topic-card {
    grid-template-columns: 60px 1fr;
    gap: var(--space-lg);
  }

  .section__image-block img {
    height: 240px;
  }

  .highlight-statement {
    padding: var(--space-lg);
  }

  .highlight-statement p {
    font-size: var(--text-base);
  }

  .footer__contact {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .footer__links {
    gap: var(--space-lg);
  }

  .legal-dl {
    grid-template-columns: 1fr;
  }

  .legal-table th[scope="row"] {
    width: auto;
    white-space: normal;
  }

  .form-actions--split {
    flex-direction: column-reverse;
    gap: var(--space-sm);
  }

  .form-actions--split .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .grid--4col {
    grid-template-columns: 1fr;
  }

  .topic-card {
    grid-template-columns: 1fr;
  }

  .topic-card__number {
    display: none;
  }

  .cookie-modal {
    padding: var(--space-lg);
  }

  .hero__heading {
    font-size: 2rem;
  }

  .legal-table {
    font-size: var(--text-xs);
  }

  .legal-table th,
  .legal-table td {
    padding: var(--space-sm) var(--space-md);
  }
}


abbr {
  text-decoration: underline dotted;
  text-underline-offset: 2px;
  cursor: help;
}

strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

em {
  font-style: italic;
  color: var(--color-accent-warm);
}

small {
  font-size: var(--text-xs);
}